/* ======================================================
HERO
====================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/* VIDEO */

.hero video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

/* OVERLAY */

.hero::before{

    content:'';

    position:absolute;

    inset:0;

    /*background:
    linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.82) 45%,
    rgba(255,255,255,0.20) 100%
    );*/

    z-index:1;

}

/* CONTENT */

.hero-content{

    position:relative;

    z-index:2;

    width:100%;

    padding-top:120px;

}

.hero-wrapper{
    padding: 16px;
    max-width:760px;
    background: #ffffff94;
    animation:fadeUp 1s ease;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.8);

    border:1px solid rgba(0,0,0,0.06);

    margin-bottom:28px;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    backdrop-filter:blur(10px);

}

.hero h1{

    font-size:clamp(55px,7vw,50px);

    line-height:1.05;

    font-weight:600;

    margin-bottom:25px;

    letter-spacing:-3px;

    color:#0f172a;

}

.hero h1 span{

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    font-size:20px;

    line-height:1.8;

    color:#334155;

    max-width:680px;

    margin-bottom:40px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:55px;

}

.btn-primary{

    padding:20px 38px;

    border-radius:18px;

    background:var(--gradient);

    color:#fff;

    font-weight:700;

    font-size:16px;

    transition:0.4s;

    box-shadow:
    0 20px 45px rgba(37,99,235,0.35);

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    padding:20px 38px;

    border-radius:18px;

    background:#fff;

    border:1px solid rgba(0,0,0,0.08);

    color:#0f172a;

    font-weight:700;

    font-size:16px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

}

/* STATS */

.hero-stats{

    display:flex;

    gap:55px;

    flex-wrap:wrap;

}

.hero-stats h3{

    font-size:30px;

    margin-bottom:8px;

    color:#0f172a;

}

.hero-stats p{

    margin:0;

    font-size:15px;

    color:#475569;

}

/* ======================================================
RIGHT SLIDER
====================================================== */

.hero-slider{

    position:absolute;

    right:30px;

    bottom:40px;

    width:700px;

    z-index:5;

    animation:fadeRight 1s ease;
}

.awardSwiper{

    overflow:hidden;
    padding-bottom:10px;

}

.swiper-wrapper{
    align-items:stretch;
}

.swiper-slide{
    height:auto;
}

.award-card{

    background:rgba(255,255,255,0.88);

    border:1px solid rgba(0,0,0,0.06);

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:28px 24px;

    height:100%;

    min-height:290px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    transition:0.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

}

.award-card:hover{

    transform:translateY(-10px);

    background:#fff;

}

.award-card img{

    width:130px;

    height:80px;

    object-fit:contain;

    margin-bottom:22px;

    background:#fff;

    border-radius:14px;

    padding:10px;

}

.award-card h4{

    font-size:20px;

    line-height:1.5;

    margin-bottom:14px;

    font-weight:700;

    color:#0f172a;

    min-height:64px;

}

.award-card p{

    font-size:15px;

    color:#475569;

    line-height:1.8;

    flex:1;

}

/* PAGINATION */

.swiper-pagination{

    margin-top:25px;
    position:relative;

}

.swiper-pagination-bullet{

    background:#94a3b8;
    opacity:1;

}

.swiper-pagination-bullet-active{

    background:#2563eb;

}

/* ======================================================
SERVICES SECTION
====================================================== */

.services{

    padding:75px 0;

    background:#fff;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:50px;

    line-height:1.2;

    font-weight:600;

    color:#0f172a;

    letter-spacing:-2px;

}

.section-title span{

    color:#2563eb;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:32px;

    padding:45px 35px;

    transition:0.4s;

    position:relative;

    overflow:hidden;

    min-height:420px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);

    opacity:0;

    transform:translateY(60px);

}

.service-card.show{

    opacity:1;

    transform:translateY(0);

    transition:1s ease;
}

.service-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:var(--gradient);

    transform:scaleX(0);

    transition:0.5s;

}

.service-card:hover::before{

    transform:scaleX(1);
}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(37,99,235,0.15);

}

.service-icon{

    width:80px;
    height:80px;

    border-radius:22px;

    background:#eff6ff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

    font-size:36px;

    color:#2563eb;

}

.service-card h3{

    font-size:34px;

    line-height:1.4;

    margin-bottom:20px;

    font-weight:700;

    color:#0f172a;

}

.service-card p{

    font-size:17px;

    line-height:1.9;

    color:#475569;

    margin-bottom:35px;

}

.service-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 26px;

    border-radius:50px;

    border:1px solid #dbeafe;

    color:#0f172a;

    font-weight:700;

    transition:0.4s;

    width:max-content;

}

.service-btn:hover{

    background:var(--gradient);

    color:#fff;

}

/* ======================================================
ANIMATION
====================================================== */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes fadeRight{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:1400px){

    .hero-slider{

        position:relative;

        width:100%;

        right:auto;
        bottom:auto;

        margin-top:60px;

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:992px){

    .nav-links{
        display:none;
    }

    .hero{

        text-align:center;
    }

    .hero-wrapper{
        margin:auto;
    }

    .hero-buttons,
    .hero-stats{

        justify-content:center;
    }

    .section-title h2{

        font-size:50px;
    }

}

@media(max-width:768px){

    .container{
        padding:0 20px;
    }

    .hero{

        padding:160px 0 120px;
    }

    .hero h1{

        font-size:46px;

        letter-spacing:-2px;
    }

    .hero p{

        font-size:17px;
    }

    .hero-slider{

        margin-top:40px;
    }

    .services-grid{

        grid-template-columns:1fr;
    }

    .section-title h2{

        font-size:40px;
    }

    .service-card{

        min-height:auto;
    }

}
/* ======================================================
LIGHT THEME - INVENTIV AI SECTION
====================================================== */

.ai-ecosystem{

    position:relative;

    padding:75px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f8fc 100%
    );

    overflow:hidden;
}

/* BACKGROUND GLOW */

.ai-ecosystem::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(
    circle,
    rgba(37,99,235,0.12),
    transparent 70%
    );

    top:-200px;
    right:-120px;

    border-radius:50%;

    animation:floatGlow 10s linear infinite;
}

.ai-wrapper{

    display:grid;

    grid-template-columns:1.1fr 1fr;

    gap:70px;

    align-items:center;

    position:relative;

    z-index:2;
}

/* ======================================================
LEFT SIDE IMAGE
====================================================== */

.ai-image{

    position:relative;

    border-radius:50px;

    overflow:hidden;

    min-height:760px;

    box-shadow:
    0 40px 80px rgba(37,99,235,0.12);

    animation:floatCard 6s ease-in-out infinite;
}

.ai-image img{

    width:100%;
    height:793px;

    object-fit:cover;

    transform:scale(1.05);

    transition:1s;
}

.ai-image:hover img{

    transform:scale(1.1);
}

/* FLOATING SHAPE */

.ai-shape{

    position:absolute;

    width:240px;
    height:240px;

    border-radius:40px;

    background:
    linear-gradient(
    135deg,
    rgba(37,99,235,0.15),
    rgba(124,58,237,0.15)
    );

    backdrop-filter:blur(15px);

    top:-60px;
    left:-60px;

    transform:rotate(25deg);

    animation:rotateShape 10s linear infinite;
}

/* ======================================================
RIGHT CONTENT
====================================================== */

.ai-content{

    position:relative;
}

.ai-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 24px;

    border-radius:50px;

    background:#eff6ff;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    margin-bottom:28px;

    letter-spacing:1px;
}

.ai-content h2{

    font-size:clamp(48px,5vw,50px);

    line-height:1.08;

    font-weight:600;

    color:#0f172a;

    margin-bottom:15px;

    letter-spacing:-2px;
}

.ai-content h2 span{

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.ai-content p{

    font-size:19px;

    line-height:1.9;

    color:#475569;

    margin-bottom:25px;
}

/* ======================================================
FEATURE CARDS
====================================================== */

.ai-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    margin-bottom:45px;
}

.ai-card{

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:30px;

    padding:17px 18px;

    transition:0.4s;

    position:relative;

    overflow:hidden;

    min-height:300px;

    box-shadow:
    0 20px 40px rgba(15,23,42,0.05);
}

.ai-card::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(37,99,235,0.03),
    rgba(124,58,237,0.03)
    );

    opacity:0;

    transition:0.4s;
}

.ai-card:hover::before{

    opacity:1;
}

.ai-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 60px rgba(37,99,235,0.15);
}

.ai-icon{

    width:74px;
    height:74px;

    border-radius:24px;

    background:#eff6ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#2563eb;

    margin-bottom:28px;
}

.ai-card h3{

    font-size:18px;

    line-height:1.4;

    color:#0f172a;

    margin-bottom:25px;
}

.ai-list{

    display:flex;

    flex-direction:column;

    gap:18px;
}

.ai-list div{

    display:flex;

    align-items:flex-start;

    gap:12px;

    font-size:16px;

    line-height:1.8;

    color:#475569;
}

.ai-list i{

    color:#2563eb;

    margin-top:5px;
}

/* ======================================================
BUTTONS
====================================================== */

.ai-buttons{

    display:flex;

    gap:22px;

    flex-wrap:wrap;
}

.ai-btn-primary{

    padding:20px 38px;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );

    color:#fff;

    font-weight:700;

    font-size:16px;

    transition:0.4s;

    box-shadow:
    0 18px 40px rgba(37,99,235,0.25);
}

.ai-btn-primary:hover{

    transform:translateY(-4px);
}

.ai-btn-secondary{

    padding:20px 38px;

    border-radius:18px;

    background:#fff;

    border:1px solid #dbeafe;

    color:#0f172a;

    font-weight:700;

    font-size:16px;

    transition:0.4s;
}

.ai-btn-secondary:hover{

    background:#eff6ff;
}

/* ======================================================
ANIMATION
====================================================== */

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes rotateShape{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes floatGlow{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(30px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .ai-wrapper{

        grid-template-columns:1fr;
    }

    .ai-grid{

        grid-template-columns:1fr;
    }

    .ai-image{

        min-height:500px;
    }

    .ai-image img{

        height:500px;
    }
}

@media(max-width:768px){

    .ai-ecosystem{

        padding:90px 0;
    }

    .ai-content h2{

        font-size:42px;
    }

    .ai-content p{

        font-size:17px;
    }

    .ai-buttons{

        flex-direction:column;
    }

    .ai-btn-primary,
    .ai-btn-secondary{

        width:100%;

        text-align:center;
    }
}
/* ======================================================
PREMIUM CLIENT SHOWCASE - LIGHT THEME
====================================================== */

.client-showcase{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 45%,
    #f1f5f9 100%
    );

    overflow:hidden;
}

/* PREMIUM GLOW */

.client-showcase::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(37,99,235,0.12),
    transparent 70%
    );

    top:-280px;
    right:-150px;

    animation:premiumGlow 10s ease infinite;
}

.client-showcase::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(124,58,237,0.08),
    transparent 70%
    );

    bottom:-180px;
    left:-100px;
}

/* ======================================================
TITLE
====================================================== */

.client-title{

    position:relative;

    z-index:5;

    text-align:center;

    font-size:clamp(44px,5vw,52px);

    line-height:1.1;

    font-weight:600;

    color:#0f172a;

    margin-bottom:24px;

    letter-spacing:-3px;
}

.client-title span{

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.client-subtitle{

    text-align:center;

    max-width:850px;

    margin:auto;

    font-size:20px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:70px;

    position:relative;

    z-index:5;
}

/* ======================================================
TOP NAVIGATION
====================================================== */

.client-tabs{

    position:relative;

    z-index:10;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:16px;

    flex-wrap:wrap;

    margin-bottom:70px;
}

.client-tab{

    padding:16px 28px;

    border-radius:18px;

    background:rgba(255,255,255,0.8);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.8);

    color:#334155;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    transition:0.45s;

    box-shadow:
    0 10px 25px rgba(15,23,42,0.05);
}

.client-tab:hover{

    transform:translateY(-4px);

    border-color:#bfdbfe;

    color:#2563eb;
}

.client-tab.active{

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );

    color:#fff;

    box-shadow:
    0 20px 40px rgba(37,99,235,0.25);
}

/* ======================================================
ARROWS
====================================================== */

.client-arrow{

    width:64px;
    height:64px;

    border-radius:50%;

    background:#fff;

    border:1px solid #e2e8f0;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:0.4s;

    color:#2563eb;

    box-shadow:
    0 15px 35px rgba(15,23,42,0.06);
}

.client-arrow:hover{

    transform:translateY(-5px) scale(1.05);

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );

    color:#fff;
}

/* ======================================================
SWIPER
====================================================== */

.clientSwiper{

    overflow:visible;

    padding-bottom:40px;

    position:relative;

    z-index:5;
}

/* ======================================================
CARD
====================================================== */

.client-card{

    position:relative;

    border-radius:40px;

    overflow:hidden;

    height:547px;

    background:#fff;

    transition:
    transform .8s ease,
    opacity .8s ease,
    box-shadow .8s ease;

    transform:scale(.82);

    opacity:.45;

    filter:blur(1px);

    box-shadow:
    0 25px 70px rgba(15,23,42,0.08);
}

/* ACTIVE CARD */

.swiper-slide-active .client-card{

    transform:scale(1);

    opacity:1;

    filter:blur(0);

    z-index:20;

    box-shadow:
    0 45px 100px rgba(37,99,235,0.20);
}

/* SIDE CARDS */

.swiper-slide-prev .client-card,
.swiper-slide-next .client-card{

    transform:scale(.90);

    opacity:.7;
}

.client-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1.2s ease;
}

.client-card:hover img{

    transform:scale(1.08);
}

/* ======================================================
OVERLAY
====================================================== */

.client-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:55px;

    background:
    linear-gradient(
    180deg,
    rgba(15,23,42,0.05) 10%,
    rgba(15,23,42,0.82) 65%,
    rgba(15,23,42,0.96) 100%
    );
}

/* ======================================================
CONTENT
====================================================== */

.client-info{

    color:#fff;

    transform:translateY(20px);

    transition:0.8s ease;
}

.swiper-slide-active .client-info{

    transform:translateY(0);
}

.client-info h3{

    font-size:54px;

    line-height:1.1;

    margin-bottom:20px;

    font-weight:600;

    letter-spacing:-2px;
}

.client-info p{

    font-size:18px;

    line-height:1.9;

    color:#cbd5e1;

    max-width:620px;

    margin-bottom:35px;
}

/* ======================================================
STATS
====================================================== */

.client-stats{

    display:flex;

    gap:70px;

    flex-wrap:wrap;

    margin-bottom:40px;
}

.client-stats h4{

    font-size:27px;

    font-weight:600;

    margin-bottom:8px;
}

.client-stats span{

    color:#cbd5e1;

    font-size:15px;

    line-height:1.7;
}

/* ======================================================
BUTTON
====================================================== */

.client-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:20px 34px;

    border-radius:18px;

    background:#fff;

    color:#0f172a;

    font-weight:700;

    transition:0.4s;

    box-shadow:
    0 15px 35px rgba(255,255,255,0.12);
}

.client-btn:hover{

    transform:translateY(-4px);

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );

    color:#fff;
}

/* ======================================================
PAGINATION
====================================================== */

.client-pagination{

    margin-top:40px;

    text-align:center;
}

.client-pagination .swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#cbd5e1;

    opacity:1;

    transition:.4s;
}

.client-pagination .swiper-pagination-bullet-active{

    width:40px;

    border-radius:20px;

    background:#2563eb;
}

/* ======================================================
ANIMATION
====================================================== */

@keyframes premiumGlow{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(40px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:768px){

    .client-showcase{

        padding:90px 0;
    }

    .client-title{

        font-size:40px;
    }

    .client-subtitle{

        font-size:16px;

        margin-bottom:50px;
    }

    .client-card{

        height:507px;

        border-radius:28px;
    }

    .client-overlay{

        padding:30px;
    }

    .client-info h3{

        font-size:32px;
    }

    .client-info p{

        font-size:15px;
    }

    .client-stats{

        gap:30px;
    }

    .client-stats h4{

        font-size:34px;
    }

    .client-arrow{

        width:52px;
        height:52px;
    }
}

/* =====================================================
SECTION
===================================================== */

.faq-section{
    padding:110px 0;
    position:relative;
}

.container{
    width:92%;
    max-width:1500px;
    margin:auto;
}

/* =====================================================
TITLE
===================================================== */

.section-title{
    text-align:center;
    font-size:52px;
    font-weight:600;
    line-height:1.1;
    margin-bottom:20px;
    color:#0f172a;
}

.section-title span{
    background:linear-gradient(90deg,var(--primary),#60a5fa);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-subtitle{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
    font-size:20px;
    color:var(--text);
    line-height:1.9;
}

/* =====================================================
GRID
===================================================== */

.faq-grid{
    display:grid;
    grid-template-columns:673px 1fr;
    gap:40px;
    align-items:start;
}

/* =====================================================
LEFT FORM
===================================================== */

.contact-card{

    position:sticky;
    top:40px;

    background:
    linear-gradient(135deg,#2563eb,#1e40af);

    border-radius:35px;

    padding:45px;

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(37,99,235,0.18);

    color:#fff;
}

.contact-card::before{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    background:rgba(255,255,255,0.08);

    border-radius:50%;

    top:-180px;
    right:-160px;

}

.contact-card::after{

    content:'';

    position:absolute;

    width:280px;
    height:280px;

    background:rgba(255,255,255,0.05);

    border-radius:50%;

    bottom:-130px;
    left:-100px;

}

.contact-card > *{
    position:relative;
    z-index:2;
}

.contact-card h2{

    font-size:30px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:600;

}

.contact-card p{

    color:rgba(255,255,255,0.82);
    line-height:1.9;
    margin-bottom:45px;
    font-size:16px;

}

/* FORM */

.form-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;

}

.form-group{
    margin-bottom:20px;
}

.form-group.full{
    grid-column:1/-1;
}

.form-group label{

    display:block;
    margin-bottom:12px;
    font-size:14px;
    font-weight:600;
    color:rgba(255,255,255,0.92);

}

.form-control{

    width:100%;

    border:none;
    outline:none;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.1);

    border-radius:16px;

    padding:16px 18px;

    font-size:15px;

    color:#fff;

    transition:0.35s;

    backdrop-filter:blur(8px);

}

.form-control:focus{

    border-color:#fff;
    background:rgba(255,255,255,0.15);

}

.form-control::placeholder{
    color:rgba(255,255,255,0.65);
}

textarea.form-control{
    height:120px;
    resize:none;
}

.notice{

    display:flex;
    align-items:center;
    gap:12px;

    background:rgba(255,255,255,0.15);

    padding:18px 20px;

    border-radius:18px;

    margin-top:15px;

    font-size:15px;

    backdrop-filter:blur(10px);

}

.notice i{

    width:38px;
    height:38px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    color:var(--primary);

}

.form-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.captcha{

    display:flex;
    align-items:center;
    gap:12px;

    font-size:32px;
    font-weight:800;

}

.captcha-box{

    width:75px;
    height:55px;

    border-radius:14px;

    border:2px solid rgba(255,255,255,0.3);

    background:rgba(255,255,255,0.1);

}

.submit-btn{

    border:none;
    outline:none;

    background:#fff;
    color:#111827;

    padding:18px 55px;

    border-radius:70px;

    font-size:17px;
    font-weight:700;

    cursor:pointer;

    transition:0.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.15);

}

.submit-btn:hover{

    transform:translateY(-3px);

    background:#0f172a;
    color:#fff;

}

/* =====================================================
FAQ RIGHT
===================================================== */

.faq-wrapper{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.faq-item{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    border:1px solid #edf2f7;

    transition:0.45s;

    box-shadow:
    0 15px 40px rgba(15,23,42,0.04);

}

.faq-item.active{

    border-color:#bfdbfe;

    box-shadow:
    0 25px 60px rgba(37,99,235,0.08);

}

.faq-question{

    width:100%;

    border:none;
    background:#fff;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:30px;

    padding:38px 40px;

    cursor:pointer;

    text-align:left;

}

.faq-left{

    display:flex;
    gap:28px;

}

.faq-number{

    min-width:58px;

    height:58px;

    border-radius:18px;

    background:#eff6ff;

    color:var(--primary);

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;

    font-size:18px;

}

.faq-title{

    font-size:26px;
    line-height:1.45;
    font-weight:600;

    color:#111827;

}

.faq-icon{

    min-width:58px;
    height:58px;

    border-radius:18px;

    background:#f8fafc;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    color:#111827;

    transition:0.4s;

}

.faq-item.active .faq-icon{

    background:var(--primary);
    color:#fff;

    transform:rotate(180deg);

}

.faq-answer{

    max-height:0;
    overflow:hidden;

    transition:max-height 0.5s ease;

}

.faq-answer-content{

    padding:
    0 45px 40px 126px;

    color:#64748b;

    font-size:18px;

    line-height:2;

}

.faq-item.active .faq-answer{
    max-height:400px;
}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:1200px){

    .faq-grid{
        grid-template-columns:1fr;
    }

    .contact-card{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .faq-section{
        padding:80px 0;
    }

    .section-title{
        font-size:44px;
    }

    .section-subtitle{
        font-size:16px;
        margin-bottom:50px;
    }

    .contact-card{
        padding:30px;
    }

    .contact-card h2{
        font-size:32px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .faq-question{
        padding:25px;
    }

    .faq-left{
        gap:18px;
    }

    .faq-title{
        font-size:22px;
    }

    .faq-number,
    .faq-icon{

        width:48px;
        height:48px;
        min-width:48px;

    }

    .faq-answer-content{

        padding:
        0 25px 30px 90px;

        font-size:16px;

    }

}

/* =====================================================
SECTION
===================================================== */

.achievement-section{

    padding:120px 0;

    background:
    linear-gradient(to bottom,
    #f8fbff,
    #edf4ff);

    overflow:hidden;

}

.container{
    width:92%;
    margin:auto;
}

/* =====================================================
HEADING
===================================================== */

.achievement-heading{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;

}

.achievement-badge{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:#dbeafe;

    color:#2563eb;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.achievement-heading h2{

    font-size:40px;

    line-height:1.15;

    font-weight:600;

    color:#0f172a;

    margin-bottom:24px;

}

.achievement-heading h2 span{

    color:#2563eb;

}

.achievement-heading p{

    font-size:19px;

    line-height:1.9;

    color:#64748b;

}

/* =====================================================
SLIDER
===================================================== */

.achievement-slider{

    overflow:hidden;

    position:relative;

}

.achievement-track{

    display:flex;

    gap:28px;

    width:max-content;

    animation:scrollCards 35s linear infinite;

}

.achievement-slider:hover .achievement-track{

    animation-play-state:paused;

}

/* =====================================================
CARD
===================================================== */

.achievement-card{

    width:420px;

    flex-shrink:0;

    background:#fff;

    border-radius:34px;

    overflow:hidden;

    border:1px solid #e8eef7;

    transition:0.45s ease;

    position:relative;

    box-shadow:
    0 18px 40px rgba(15,23,42,0.05);

}

.achievement-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(37,99,235,0.15);

}

.active-card{

    border-color:#bfdbfe;

    box-shadow:
    0 35px 80px rgba(37,99,235,0.18);

}

/* =====================================================
CONTENT
===================================================== */

.achievement-content{

    padding:36px 32px 26px;

    min-height:230px;

}

.achievement-top{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.achievement-top h2{

    font-size:48px;

    line-height:1;

    font-weight:600;

    color:#0f172a;

    letter-spacing:-3px;

}

.achievement-top h4{

    font-size:28px;

    line-height:1.3;

    font-weight:800;

    color:#111827;

    margin-bottom:14px;

}

.achievement-top p{

    font-size:17px;

    line-height:1.8;

    color:#64748b;

}

/* =====================================================
IMAGE
===================================================== */

.achievement-image{

    height:300px;

    overflow:hidden;

    position:relative;

}

.achievement-image::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(15,23,42,0.15),
    transparent);

    z-index:2;

}

.achievement-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s ease;

}

.achievement-card:hover img{

    transform:scale(1.08);

}

/* =====================================================
AUTO SCROLL
===================================================== */

@keyframes scrollCards{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:768px){

    .achievement-section{
        padding:80px 0;
    }

    .achievement-heading h2{
        font-size:40px;
    }

    .achievement-heading p{
        font-size:16px;
    }

    .achievement-card{
        width:320px;
    }

    .achievement-top h2{
        font-size:64px;
    }

    .achievement-top h4{
        font-size:22px;
    }

    .achievement-top p{
        font-size:15px;
    }

    .achievement-image{
        height:220px;
    }

}

/*----------------------*/
/* ====================================
   AWARDS SECTION
==================================== */

.awards-section{
    padding:100px 0;
    background:#fff;
}

.awards-header{
    margin-bottom:70px;
}

.award-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#eff6ff;
    color:#2563eb;
    font-weight:600;
    margin-bottom:20px;
}

.awards-header h2{
    font-size:58px;
    font-weight:800;
    color:#0f172a;
    line-height:1.2;
}

.awards-header p{
    max-width:750px;
    margin:20px auto 0;
    color:#64748b;
    font-size:18px;
}

/* Award Row */

.award-item{
    display:flex;
    align-items:center;
    gap:25px;
    padding:30px;
    margin-bottom:15px;
    border:1px solid #e2e8f0;
    border-radius:20px;
    background:#fff;
    transition:.4s ease;
    overflow:hidden;
    position:relative;
}

.award-item:hover{
    background:#f8fafc;
    transform:translateX(10px);
    box-shadow:0 15px 40px rgba(37,99,235,.08);
}

/* Trophy Animation */

.award-year{
    width:30%;
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    position:relative;
    padding-left:0;
    transition:.4s;
}

.award-year::before{
    content:"🏆";
    position:absolute;
    left:-35px;
    top:50%;
    transform:translateY(-50%) scale(.5);
    opacity:0;
    transition:.4s;
}

.award-item:hover .award-year{
    padding-left:40px;
}

.award-item:hover .award-year::before{
    left:0;
    opacity:1;
    transform:translateY(-50%) scale(1);
}

/* Title */

.award-title{
    flex:1;
    color:#64748b;
    font-size:18px;
    line-height:1.7;
    transition:.4s;
}

.award-item:hover .award-title{
    color:#0f172a;
}

/* Arrow */

.award-arrow{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.4s;
}

.award-item:hover .award-arrow{
    transform:rotate(-45deg);
}

/* Hover Image */

.award-hover-image{
    width:0;
    opacity:0;
    overflow:hidden;
    transition:all .5s ease;
}

.award-hover-image img{
    width:180px;
    height:120px;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.award-item:hover .award-hover-image{
    width:180px;
    opacity:1;
}

/* Shining Effect */

.award-item::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(37,99,235,.08),
        transparent
    );
    transition:.8s;
}

.award-item:hover::after{
    left:100%;
}

/* Entrance Animation */

.award-item{
    opacity:0;
    transform:translateY(40px);
    animation:awardFade .8s forwards;
}

.award-item:nth-child(1){animation-delay:.1s;}
.award-item:nth-child(2){animation-delay:.2s;}
.award-item:nth-child(3){animation-delay:.3s;}
.award-item:nth-child(4){animation-delay:.4s;}
.award-item:nth-child(5){animation-delay:.5s;}
.award-item:nth-child(6){animation-delay:.6s;}

@keyframes awardFade{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Mobile */

@media(max-width:991px){

    .awards-header h2{
        font-size:38px;
    }

    .award-item{
        flex-direction:column;
        align-items:flex-start;
        padding:25px;
    }

    .award-year,
    .award-title{
        width:100%;
    }

    .award-year{
        font-size:22px;
    }

    .award-hover-image{
        width:100% !important;
        opacity:1 !important;
    }

    .award-hover-image img{
        width:100%;
        height:200px;
    }
}

/* ===========================
   Strategic Alliances - Light Theme
=========================== */

.alliances-section{
    background:#f8fafc;
    padding:100px 0;
    overflow:hidden;
}

.section-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:#dbeafe;
    color:#2563eb;
    font-weight:600;
    margin-bottom:20px;
}

.section-header h2{
    color:#0f172a;
    font-size:60px;
    font-weight:800;
    line-height:1.2;
}

.section-header p{
    color:#64748b;
    max-width:700px;
    margin:20px auto 60px;
    font-size:18px;
}

/* Slider */

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-bottom:25px;
}

.logo-track{
    display:flex;
    gap:25px;
    width:max-content;
}

/* Animations */

.left-slide{
    animation:leftMove 35s linear infinite;
}

.right-slide{
    animation:rightMove 35s linear infinite;
}

.logo-slider:hover .logo-track{
    animation-play-state:running;
}

/* Cards */

.partner-card{
    width:260px;
    min-width:260px;
    height:250px;

    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    transition:.4s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}



/* Logos */

.partner-card img{
    max-width:130px;
    max-height:65px;
    object-fit:contain;
}

.partner-card h5{
    color:#0f172a;
    margin-top:30px;
    font-weight:700;
    font-size:18px;
}

/* Hover Glow */

.partner-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:24px;
    background:linear-gradient(
        135deg,
        rgba(37,99,235,.05),
        rgba(59,130,246,.02)
    );
    opacity:0;
    transition:.4s;
}


/* Animation */

@keyframes leftMove{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}

@keyframes rightMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Mobile */

@media(max-width:768px){

    .alliances-section{
        padding:70px 0;
    }

    .section-header h2{
        font-size:38px;
    }

    .partner-card{
        width:220px;
        min-width:220px;
        height:200px;
    }

    .partner-card img{
        max-width:90px;
    }

    .partner-card h5{
        font-size:16px;
    }
}
.partner-card{
    position:relative;
    overflow:hidden;
}

.partner-card::after{
    content:"";
    position:absolute;
    top:-100%;
    left:-100%;
    width:200%;
    height:200%;
    background:linear-gradient(
        45deg,
        transparent,
        rgba(37,99,235,.08),
        transparent
    );
    transform:rotate(25deg);
    transition:.8s;
}
.partner-card img{
    width:120px;
    height:60px;
    object-fit:contain;
    transition:all .4s ease;
}

.partner-card:hover img{
    transform:scale(1.08);
}

.partner-card h5{
    margin-top:20px;
    font-size:18px;
    font-weight:700;
    color:#0f172a;
}