.about-overview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overview .hero-slide {
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overview .container {
    position: relative;
    z-index: 2;
}

.about-overview .section-header {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.about-overview .overview-content {
    position: relative;
    z-index: 2;
}

.about-overview .overview-text {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.about-overview .overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222222;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 920px) {
    .about-overview {
        min-height: 500px;
    }

    .about-overview .overview-text {
        padding: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .about-overview {
        min-height: 500px;
    }

    .about-overview .overview-text {
        padding: 1.5rem;
    }

    .about-overview .overview-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media screen and (max-width: 450px) {
    .about-overview {
        width: 100%;
        min-height: 600px;
    }

    .about-overview .overview-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.ai-section {
    position: relative;
    top: var(--relative-top);
    background: #ffffff;
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.ai-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.ai-section .ai-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ai-section .section-heading {
    font-size: clamp(2.20rem, 4vw, 2.50rem);
    font-weight: 700;
    color: var(--primary-color-1);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.ai-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 3px;
    background: var(--primary-color-2);
    border-radius: 2px;
}

.ai-section .ai-icon {
    flex-shrink: 0;
}

.ai-section .icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color-2-hover) 0%, var(--primary-color-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(43, 92, 184, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.ai-section .ai-svg {
    width: 60px;
    height: 60px;
    color: white;
}

.ai-section .ai-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #222222;
    margin: 0;
}

@media screen and (max-width: 920px) {
    .ai-section .ai-content {
        gap: 2rem;
    }

    .ai-section .ai-text p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .ai-section .icon-circle {
        width: 100px;
        height: 100px;
    }

    .ai-section .ai-svg {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 600px) {
    .ai-section .ai-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .ai-section .ai-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ai-section .icon-circle {
        width: 90px;
        height: 90px;
    }

    .ai-section .ai-svg {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 400px) {
    .ai-section {
        padding: 3rem 1rem;
    }

    .ai-section .ai-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .ai-section .icon-circle {
        width: 75px;
        height: 75px;
    }

    .ai-section .ai-svg {
        width: 40px;
        height: 40px;
    }
}

.why-choose-us {
    position: relative;
    top: var(--relative-top);
    padding: 75px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.why-choose-us .section-header {
    position: relative;
    z-index: 99;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.why-choose-us .feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.why-choose-us .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #1e40af, #3730a3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-us .feature-card:hover::before {
    transform: scaleX(1);
}

.why-choose-us .feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(30, 64, 175, 0.15);
}

.why-choose-us .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1e40af, #3730a3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.why-choose-us .feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: iconShine 3s ease-in-out infinite;
}

@keyframes iconShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

.why-choose-us .feature-content {
    position: relative;
}

.why-choose-us .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color-2);
    line-height: 1.3;
    height: 90px;
}

.why-choose-us .feature-card p {
    color: #121212;
    line-height: 1.6;
    font-weight: 400;
}

@media screen and (max-width: 400px) {
    .why-choose-us .features-grid {
        margin: -8px;
    }
}

.expertise {
    position: relative;
    top: var(--relative-top);
    padding: 75px 0;
    background: white;
}

.expertise p {
    color: #222222;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    border-left: 4px solid transparent;
}

.expertise-item:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: translateX(15px);
    border-left-color: var(--primary-color-2);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #1e40af, #3730a3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.expertise-content-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color-2);
}

.expertise-content-text p {
    color: #3a3838;
    font-weight: 400;
}

.expertise-bullet {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color-2-hover);
    opacity: 0.3;
}

.rotating-circle {
    position: relative;
    width: 450px;
    height: 450px;
    animation: rotate 15s linear infinite;
}

.circle-segment {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: counterRotate 20s linear infinite;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.segment-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.segment-2 {
    bottom: 31%;
    right: -4%;
    transform: translateX(-50%);
}

.segment-3 {
    top: 35%;
    left: 0%;
    transform: translateX(-50%);
}

.segment-4 {
    bottom: 0;
    right: 50%;
    transform: translateY(-50%);
}

.segment-5 {
    top: 2%;
    left: 14%;
    transform: translateX(-50%);
}

.segment-6 {
    bottom: 1%;
    left: 51%;
    transform: translateY(-50%);
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color-2-hover), var(--primary-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.circle-center .center-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.segment-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

@media screen and (max-width: 1024px) {
    .rotating-circle {
        width: 350px;
        height: 350px;
    }

    .circle-segment {
        width: 110px;
        height: 110px;
        font-size: 0.85rem;
    }

    .circle-center {
        width: 90px;
        height: 90px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .expertise-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .rotating-circle {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .circle-segment {
        width: 90px;
        height: 90px;
        font-size: 0.75rem;
    }

    .circle-center {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }

    .expertise-list {
        gap: 1.5rem;
    }

    .expertise-item {
        padding: 1.2rem;
        gap: 1rem;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .expertise-bullet {
        display: none;
    }

    .circle-center .center-image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

}

@media (max-width: 480px) {
    .rotating-circle {
        width: 220px;
        height: 220px;
    }

    .circle-segment {
        width: 70px;
        height: 70px;
        font-size: 10px;
        padding: 5px;
    }

    .circle-center {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .expertise-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .expertise-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .expertise-content-text h4 {
        font-size: 1.1rem;
    }

    .expertise-content-text p {
        font-size: 0.95rem;
    }

    .circle-center .center-image img {
        width: 75px;
        height: 75px;
        border-radius: 50%;
    }
}

.clients {
    position: relative;
    top: var(--relative-top);
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-color-2-hover) 0%, var(--primary-color-2) 100%);
    color: white;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.world-map {
    margin: 0;
    position: relative;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 500"><path d="M150,200 Q300,150 450,180 Q600,140 750,170 Q850,130 950,160" stroke="%23ffffff20" stroke-width="3" fill="none"/><path d="M100,300 Q250,280 400,290 Q550,270 700,285 Q800,265 900,275" stroke="%23ffffff15" stroke-width="2" fill="none"/></svg>') center/80% no-repeat;
}

.region {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.region:hover {
    transform: scale(1.2);
}

.region-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    animation: regionGlow 2s ease-in-out infinite;
}

@keyframes regionGlow {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    }

    50% {
        box-shadow: 0 0 35px rgba(59, 130, 246, 0.8);
    }
}

.region-pulse {
    position: absolute;
    top: 69%;
    left: 25%;
    width: 50px;
    height: 50px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.region.usa::before {
    content: "USA";
    position: relative;
    bottom: 10px;
    font-size: 18px;
}

.region.eu::before {
    content: "Europe";
    position: relative;
    bottom: 10px;
    font-size: 18px;
}

.region.mena::before {
    content: "MENA";
    position: relative;
    bottom: 10px;
    font-size: 18px;
}

.region.apac::before {
    content: "Asia";
    position: relative;
    bottom: 10px;
    font-size: 18px;
}

.usa {
    top: 35%;
    left: 20%;
}

.eu {
    top: 25%;
    left: 48%;
}

.mena {
    top: 40%;
    left: 58%;
}

.apac {
    top: 45%;
    left: 78%;
}

.client-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    position: relative;
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    height: 100px;
    margin-bottom: 0.8rem;
    color: white;
}

.category-card p {
    opacity: 0.9;
    font-weight: 400;
}

@media (max-width: 400px) {

    .category-card h3 {
        height: 70px;
    }

    .category-card p {
        margin-bottom: 0.8rem;
    }
}

.footer {
    position: relative;
    top: 200px;
}