/* ==================================================
   VARIABLES
================================================== */

:root{

    --primary:#003B8E;
    --secondary:#00BFA6;
    --dark:#0f172a;
    --text:#64748b;
    --light:#f8fafc;
    --white:#ffffff;

}

/* ==================================================
   HERO INSTITUTIONNEL PREMIUM
================================================== */

.hero{
    position:relative;
    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            120deg,
            rgba(4,18,38,.96) 0%,
            rgba(4,18,38,.92) 30%,
            rgba(4,18,38,.75) 55%,
            rgba(4,18,38,.45) 75%,
            rgba(4,18,38,.20) 100%
        ),
        url("../images/arriere_plan.png");

    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

/* ==================================================
   OVERLAYS
================================================== */

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.08),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(0,174,239,.12),
            transparent 45%
        );

    pointer-events:none;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,.15) 100%
        );

    pointer-events:none;
}

.hero .container{
    position:relative;
    z-index:5;
}

/* ==================================================
   HERO CONTENT
================================================== */

.hero-content{
    max-width:850px;
    color:#fff;
}

/* ==================================================
   BADGE
================================================== */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 28px;

    margin-bottom:35px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    color:#dbe7ff;

    font-size:.85rem;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:1px;
}

.hero-badge::before{
    content:"";

    width:10px;
    height:10px;

    border-radius:50%;

    background:#00d4ff;

    box-shadow:
        0 0 15px rgba(0,212,255,.8);
}

/* ==================================================
   TITRE
================================================== */

.hero h1{
    font-size:5.2rem;
    font-weight:900;

    line-height:1.05;
    letter-spacing:-2px;

    color:#fff;

    margin-bottom:30px;
}

.hero h1 span{
    color:#9fd7ff;
}

/* ==================================================
   SOUS TITRE
================================================== */

.hero p{
    font-size:1.2rem;
    line-height:2;

    color:rgba(255,255,255,.82);

    max-width:720px;

    margin-bottom:50px;
}

/* ==================================================
   BOUTONS
================================================== */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;

    margin-bottom:60px;
}

.btn-primary-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:60px;

    padding:0 40px;

    border-radius:12px;

    background:#ffffff;

    color:#07111f;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);
}

.btn-primary-custom:hover{
    color:#07111f;

    transform:translateY(-4px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.35);
}

.btn-outline-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:60px;

    padding:0 40px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.20);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;
}

.btn-outline-custom:hover{
    background:rgba(255,255,255,.12);

    color:#fff;

    transform:translateY(-4px);
}

/* ==================================================
   DM HEALTH TECHNOLOGY
   FOUNDER SECTION ULTIMATE PREMIUM 2026
================================================== */

.founder-section{
    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,
        rgba(13,110,253,.06),
        transparent 40%),
        radial-gradient(circle at bottom right,
        rgba(25,135,84,.06),
        transparent 40%),
        linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%);
}

/* BACKGROUND */

.founder-bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    z-index:0;
    pointer-events:none;
}

.circle-1{
    width:420px;
    height:420px;
    background:rgba(13,110,253,.10);
    top:-120px;
    left:-120px;
    animation:floatCircle 10s ease-in-out infinite;
}

.circle-2{
    width:350px;
    height:350px;
    background:rgba(25,135,84,.10);
    bottom:-100px;
    right:-100px;
    animation:floatCircle 12s ease-in-out infinite;
}

@keyframes floatCircle{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-25px);
    }
}

/* ==================================================
   IMAGE FONDATEUR
================================================== */

.founder-image-wrapper{
    position:relative;
    z-index:2;
}

.founder-glow{
    position:absolute;
    inset:0;
    border-radius:40px;
    background:
    radial-gradient(circle,
    rgba(13,110,253,.25),
    transparent 70%);
    filter:blur(45px);
    animation:pulseGlow 5s ease infinite;
}

@keyframes pulseGlow{
    0%,100%{
        opacity:.7;
        transform:scale(1);
    }
    50%{
        opacity:1;
        transform:scale(1.05);
    }
}

.founder-image-card{
    position:relative;
    overflow:hidden;
    border-radius:36px;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.6);
    box-shadow:
    0 25px 60px rgba(0,0,0,.08),
    0 10px 30px rgba(13,110,253,.10);
    transition:.5s ease;
}

.founder-image-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 35px 80px rgba(0,0,0,.12);
}

.founder-image{
    width:100%;
    display:block;
    transition:1s ease;
}

.founder-image-card:hover .founder-image{
    transform:scale(1.04);
}

/* BADGE */

.founder-badge{
    position:absolute;
    top:25px;
    left:-10px;
    padding:12px 22px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        #0d6efd,
        #198754
    );
    color:#fff;
    font-weight:700;
    font-size:.9rem;
    box-shadow:
    0 15px 35px rgba(13,110,253,.30);
    z-index:3;
    animation:badgeFloat 4s ease infinite;
}

.founder-badge i{
    margin-right:8px;
}

@keyframes badgeFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

/* EXECUTIVE CARD */

.founder-executive-card{
    position:absolute;
    bottom:25px;
    right:-15px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(20px);
    padding:22px;
    border-radius:22px;
    min-width:250px;
    border:1px solid rgba(255,255,255,.7);
    box-shadow:
    0 20px 45px rgba(0,0,0,.08);
}

.founder-executive-card h4{
    margin-bottom:5px;
    font-size:1.3rem;
    font-weight:800;
    color:#0f172a;
}

.founder-executive-card span{
    color:#0d6efd;
    font-weight:600;
}

/* ==================================================
   CONTENU
================================================== */

.founder-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(13,110,253,.08);
    color:#0d6efd;
    font-weight:700;
    margin-bottom:25px;
}

.founder-title{
    font-size:3rem;
    font-weight:900;
    line-height:1.15;
    color:#0f172a;
    margin-bottom:25px;
}

.founder-title{
    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #198754);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.founder-lead{
    font-size:1.2rem;
    line-height:1.9;
    color:#334155;
    font-weight:500;
    margin-bottom:20px;
}

.founder-text{
    color:#64748b;
    line-height:1.95;
    margin-bottom:20px;
    font-size:1.05rem;
}

/* ==================================================
   VISION CARD
================================================== */

.founder-highlight-card{
    display:flex;
    gap:20px;
    margin-top:40px;
    padding:30px;
    border-radius:28px;
    background:#fff;
    border:1px solid rgba(13,110,253,.08);
    box-shadow:
    0 20px 50px rgba(0,0,0,.05);
    transition:.4s ease;
}

.founder-highlight-card:hover{
    transform:translateY(-8px);
}

.highlight-icon{
    width:75px;
    height:75px;
    flex-shrink:0;
    border-radius:22px;
    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #198754);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:1.8rem;
    box-shadow:
    0 15px 35px rgba(13,110,253,.25);
}

.founder-highlight-card h4{
    font-weight:800;
    margin-bottom:10px;
    color:#0f172a;
}

.founder-highlight-card p{
    margin:0;
    color:#64748b;
    line-height:1.8;
}

/* ==================================================
   CITATION
================================================== */

.founder-quote{
    margin-top:35px;
    padding:35px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #198754);
    color:white;
    box-shadow:
    0 25px 60px rgba(13,110,253,.25);
}

.founder-quote::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-80px;
    right:-60px;
}

.founder-quote i{
    font-size:3rem;
    opacity:.8;
    margin-bottom:15px;
    display:block;
}

.founder-quote p{
    margin:0;
    line-height:2;
    font-size:1.05rem;
}

/* ==================================================
   SIGNATURE
================================================== */

.founder-signature{
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid rgba(0,0,0,.08);
}

.founder-signature h4{
    font-weight:900;
    margin-bottom:5px;
    color:#0f172a;
}

.founder-signature span{
    display:block;
    color:#0d6efd;
    font-weight:700;
}

.founder-signature small{
    color:#64748b;
}

/* ==================================================
   EXECUTIVE CARD
================================================== */

.founder-executive-card{
    margin-top:30px;
    background:#ffffff;
    border-radius:24px;
    padding:28px;
    text-align:center;
    box-shadow:
        0 20px 60px rgba(15,23,42,.08);
    box-sizing:border-box;
}

.founder-executive-card h4{
    font-size:1.5rem;
    color:#003b8e;
    margin-bottom:5px;
}

.founder-executive-card span{
    display:block;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.founder-executive-card small{
    color:#64748b;
    line-height:1.6;
}

/* ==================================================
   SERVICES PREMIUM
================================================== */

.services-home{
    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 50%,
        #f5f9ff 100%
    );
}

/* ==================================================
   BACKGROUND SHAPES
================================================== */

.services-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    pointer-events:none;
    z-index:1;
}

.shape-1{
    width:400px;
    height:400px;
    background:rgba(0,102,255,.08);
    top:-120px;
    left:-120px;
}

.shape-2{
    width:500px;
    height:500px;
    background:rgba(0,180,255,.06);
    bottom:-200px;
    right:-150px;
}

.services-home .container{
    position:relative;
    z-index:5;
}

/* ==================================================
   SECTION TITLE
================================================== */

.section-title{
    max-width:900px;
    margin:0 auto;
}

.section-tag{
    display:inline-block;
    padding:10px 25px;
    border-radius:50px;
    background:rgba(0,87,255,.08);
    color:#0057ff;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:.5px;
}

.section-title h2{
    margin-top:20px;
    margin-bottom:25px;
    font-size:3rem;
    font-weight:800;
    line-height:1.2;
    color:#071a34;
}

.section-title p{
    font-size:1.15rem;
    line-height:1.9;
    color:#6b7280;
}

/* ==================================================
   SERVICE CARD
================================================== */

.service-card{
    position:relative;
    display:flex;
    flex-direction:column;
    height:100%;

    padding:45px 35px;

    background:rgba(255,255,255,.88);

    -webkit-backdrop-filter:blur(18px);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.9);
    border-radius:30px;

    overflow:hidden;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;

    box-shadow:
        0 15px 40px rgba(15,23,42,.06);

    will-change:transform;
}

/* TOP BORDER EFFECT */

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #0066ff,
        #00d4ff
    );

    transform:scaleX(0);
    transform-origin:left;
    transition:.4s ease;
}

.service-card:hover::before{
    transform:scaleX(1);
}

/* GLOW EFFECT */

.service-card::after{
    content:"";
    position:absolute;
    inset:0;

    background:radial-gradient(
        circle at top right,
        rgba(0,180,255,.12),
        transparent 60%
    );

    opacity:0;
    transition:.45s ease;
    pointer-events:none;
}

.service-card:hover::after{
    opacity:1;
}

/* ==================================================
   SERVICE NUMBER
================================================== */

.service-number{
    position:absolute;
    top:15px;
    right:25px;

    font-size:5rem;
    font-weight:900;
    line-height:1;

    color:rgba(0,87,255,.05);

    user-select:none;
}

/* ==================================================
   SERVICE ICON
================================================== */

.service-icon{
    width:75px;
    height:75px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        #0066ff,
        #00b4ff
    );

    color:#fff;
    font-size:2rem;

    box-shadow:
        0 15px 35px rgba(0,102,255,.25);
}

/* ==================================================
   TITLE
================================================== */

.service-card h4{
    margin-bottom:20px;

    font-size:1.45rem;
    font-weight:800;
    line-height:1.4;

    color:#071a34;
}

/* ==================================================
   TEXT
================================================== */

.service-card p{
    margin-bottom:35px;

    color:#667085;
    line-height:1.9;

    flex-grow:1;
}

/* ==================================================
   FOOTER
================================================== */

.service-footer{
    margin-top:auto;
}

.service-footer a{
    display:inline-flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    color:#0057ff;
    font-weight:700;

    transition:.3s ease;
}

.service-footer a:hover{
    color:#003fc7;
}

.service-footer a i{
    transition:.3s ease;
}

.service-footer a:hover i{
    transform:translateX(6px);
}

/* ==================================================
   HOVER
================================================== */

.service-card:hover{
    transform:translateY(-12px);

    border-color:rgba(0,102,255,.15);

    box-shadow:
        0 30px 60px rgba(15,23,42,.15);
}

/* ==================================================
   CTA SECTION ULTIMATE PREMIUM 2026
   MBAYE HEALTH TECH
================================================== */

.cta-section{
    position:relative;
    overflow:hidden;
    padding:130px 0;
    text-align:center;
    color:#fff;

    background:
    linear-gradient(
        135deg,
        #001f4d 0%,
        #003b8e 35%,
        #005fd1 70%,
        #00bfa6 100%
    );

    isolation:isolate;
}

/* ==================================================
   BACKGROUND EFFECTS
================================================== */

.cta-section::before{
    content:"";
    position:absolute;
    width:850px;
    height:850px;
    top:-420px;
    right:-280px;
    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,.15),
        transparent 70%
    );

    animation:floatGlow 12s ease-in-out infinite;
    pointer-events:none;
}

.cta-section::after{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    bottom:-350px;
    left:-250px;
    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(0,255,221,.18),
        transparent 70%
    );

    animation:floatGlow2 15s ease-in-out infinite;
    pointer-events:none;
}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes floatGlow{

    0%{
        transform:translateY(0px) rotate(0deg);
    }

    50%{
        transform:translateY(30px) rotate(8deg);
    }

    100%{
        transform:translateY(0px) rotate(0deg);
    }
}

@keyframes floatGlow2{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-35px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulseGlow{

    0%{
        box-shadow:
        0 0 0 rgba(255,255,255,0);
    }

    50%{
        box-shadow:
        0 0 40px rgba(255,255,255,.15);
    }

    100%{
        box-shadow:
        0 0 0 rgba(255,255,255,0);
    }
}

/* ==================================================
   PARTICLES
================================================== */

.cta-section .particle{
    position:absolute;
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    animation:particleMove 18s linear infinite;
}

@keyframes particleMove{

    from{
        transform:translateY(120px);
        opacity:0;
    }

    20%{
        opacity:1;
    }

    80%{
        opacity:1;
    }

    to{
        transform:translateY(-900px);
        opacity:0;
    }
}

/* ==================================================
   CONTENT
================================================== */

.cta-content{
    position:relative;
    z-index:10;
    max-width:950px;
    margin:auto;
    animation:fadeUp .9s ease;
}

/* ==================================================
   BADGE
================================================== */

.cta-badge{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 28px;

    border-radius:60px;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.18);

    color:#fff;

    font-size:.85rem;
    font-weight:800;

    letter-spacing:.12em;
    text-transform:uppercase;

    margin-bottom:35px;

    animation:pulseGlow 4s infinite;
}

/* ==================================================
   TITLE
================================================== */

.cta-section h2{

    color:#fff;

    font-size:clamp(2.4rem,5vw,4rem);

    line-height:1.15;

    font-weight:800;

    margin-bottom:30px;

    letter-spacing:-1px;

    max-width:950px;

    margin-left:auto;
    margin-right:auto;

    text-shadow:
    0 8px 35px rgba(0,0,0,.25);
}

/* ==================================================
   DESCRIPTION
================================================== */

.cta-section p{

    max-width:760px;

    margin:0 auto 50px;

    font-size:1.12rem;

    line-height:1.9;

    color:rgba(255,255,255,.92);
}

/* ==================================================
   BUTTONS WRAPPER
================================================== */

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;
}

/* ==================================================
   PREMIUM BUTTON BASE
================================================== */

.cta-section .btn-primary-custom,
.cta-section .btn-outline-custom{

    position:relative;

    overflow:hidden;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-width:260px;

    padding:20px 36px;

    border-radius:70px;

    font-weight:700;

    text-decoration:none;

    transition:
    all .45s cubic-bezier(.4,0,.2,1);

    z-index:1;
}

/* ==================================================
   SHINE EFFECT
================================================== */

.cta-section .btn-primary-custom::before,
.cta-section .btn-outline-custom::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    transition:.9s;
}

.cta-section .btn-primary-custom:hover::before,
.cta-section .btn-outline-custom:hover::before{

    left:150%;
}

/* ==================================================
   PRIMARY BUTTON
================================================== */

.cta-section .btn-primary-custom{

    background:#ffffff;

    color:#003b8e;

    border:none;

    box-shadow:
    0 20px 60px rgba(255,255,255,.18),
    0 10px 30px rgba(0,0,0,.15);
}

.cta-section .btn-primary-custom:hover{

    transform:
    translateY(-6px)
    scale(1.03);

    color:#003b8e;

    box-shadow:
    0 30px 80px rgba(255,255,255,.25),
    0 15px 40px rgba(0,0,0,.20);
}

/* ==================================================
   OUTLINE BUTTON
================================================== */

.cta-section .btn-outline-custom{

    background:
    rgba(255,255,255,.08);

    border:
    2px solid rgba(255,255,255,.25);

    color:#ffffff;

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.cta-section .btn-outline-custom:hover{

    background:
    rgba(255,255,255,.15);

    border-color:#ffffff;

    color:#ffffff;

    transform:
    translateY(-6px)
    scale(1.03);

    box-shadow:
    0 20px 50px rgba(255,255,255,.12);
}

/* ==================================================
   ICON ANIMATION
================================================== */

.cta-buttons i{

    transition:.4s ease;
}

.cta-buttons a:hover i{

    transform:
    translateX(5px);
}

/* ==================================================
   TABLET
================================================== */

@media(max-width:992px){

    .cta-section{
        padding:110px 0;
    }

    .cta-section h2{
        font-size:3rem;
    }

    .cta-section p{
        font-size:1rem;
    }
}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:768px){

    .cta-section{
        padding:90px 0;
    }

    .cta-section h2{
        font-size:2.2rem;
    }

    .cta-section p{
        font-size:.96rem;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-section .btn-primary-custom,
    .cta-section .btn-outline-custom{

        width:100%;
        max-width:360px;
    }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media(max-width:576px){

    .cta-section{
        padding:80px 0;
    }

    .cta-section h2{

        font-size:1.85rem;
        line-height:1.3;
    }

    .cta-badge{

        font-size:.72rem;

        padding:10px 20px;
    }

    .cta-section .btn-primary-custom,
    .cta-section .btn-outline-custom{

        min-width:auto;
        padding:18px 28px;
    }
}

/* ==================================================
STATS SECTION
================================================== */

.stats-section{
    padding:120px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );
}

.stat-card{
    position:relative;
    padding:45px 25px;
    text-align:center;
    background:#ffffff;
    border-radius:30px;
    border:1px solid rgba(0,0,0,.04);
    box-shadow:
        0 15px 40px rgba(15,23,42,.05);
    transition:.4s ease;
}

.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 30px 60px rgba(15,23,42,.12);
}

.stat-icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:22px;
    background:
        linear-gradient(
            135deg,
            #003b8e,
            #00bfa6
        );
    color:#fff;
    font-size:2rem;
}

.stat-card h3{
    font-size:3rem;
    font-weight:900;
    color:#003b8e;
    margin-bottom:10px;
}

.stat-card p{
    margin:0;
    color:#64748b;
    font-weight:600;
}

/* ==================================================
WHY US
================================================== */

.why-us{
    position:relative;
    padding:130px 0;
    background:#ffffff;
}

.why-card{
    height:100%;
    padding:40px 30px;
    background:#ffffff;
    border-radius:30px;
    border:1px solid rgba(0,0,0,.05);
    text-align:center;
    transition:.4s ease;
    box-shadow:
        0 10px 35px rgba(15,23,42,.05);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 60px rgba(15,23,42,.10);
}

.why-card i{
    font-size:3rem;
    color:#00bfa6;
    margin-bottom:20px;
    display:block;
}

.why-card h4{
    font-size:1.4rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.why-card p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

/* ==================================================
PARTNERS
================================================== */

.partners-section{
    padding:120px 0;
    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

.partner-card{
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:24px;
    background:#ffffff;
    border:1px solid rgba(0,0,0,.05);
    font-weight:800;
    color:#003b8e;
    letter-spacing:1px;
    transition:.4s ease;
    box-shadow:
        0 10px 30px rgba(15,23,42,.04);
}

.partner-card:hover{
    transform:translateY(-8px);
    background:
        linear-gradient(
            135deg,
            #003b8e,
            #00bfa6
        );
    color:#ffffff;
    box-shadow:
        0 20px 50px rgba(0,59,142,.20);
}

/* ==================================================
TESTIMONIALS
================================================== */

.testimonials-section{
    padding:130px 0;
    background:#ffffff;
}

.testimonial-card{
    padding:40px;
    border-radius:30px;
    background:#ffffff;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:
        0 15px 40px rgba(15,23,42,.05);
    transition:.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card i{
    font-size:3rem;
    color:#00bfa6;
}

.testimonial-card p{
    margin:20px 0;
    line-height:1.9;
    color:#64748b;
}

.testimonial-card h5{
    margin:0;
    font-weight:800;
    color:#0f172a;
}

.testimonial-card span{
    color:#003b8e;
    font-size:.9rem;
}

/* ==================================================
RESPONSIVE
================================================== */

@media(max-width:991px){

    .stats-section,
    .why-us,
    .partners-section,
    .testimonials-section{
        padding:90px 0;
    }

    .stat-card h3{
        font-size:2.5rem;
    }

}

@media(max-width:768px){

    .stats-section,
    .why-us,
    .partners-section,
    .testimonials-section{
        padding:70px 0;
    }

    .why-card,
    .testimonial-card{
        padding:30px;
    }

    .partner-card{
        height:90px;
    }

}

/* ==================================================
SECTIONS PREMIUM
================================================== */

.stats-section,
.why-us,
.partners-section{
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:
    radial-gradient(circle at top right,
    rgba(13,110,253,.05),
    transparent 35%),
    radial-gradient(circle at bottom left,
    rgba(25,135,84,.05),
    transparent 35%),
    #ffffff;
}

/* ==================================================
BACKGROUND PREMIUM
================================================== */

.stats-section::before,
.why-us::before,
.partners-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.1),
        rgba(255,255,255,0)
    );
    pointer-events:none;
}

/* ==================================================
TITLE
================================================== */

.section-title{
    position:relative;
    z-index:2;
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        rgba(13,110,253,.12),
        rgba(25,135,84,.12)
    );

    color:#0d6efd;
    font-weight:700;
    font-size:.85rem;
    letter-spacing:.8px;
    text-transform:uppercase;

    border:1px solid rgba(13,110,253,.15);

    backdrop-filter:blur(10px);
}

.section-title h2{
    margin-top:20px;
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
    color:#132238;
    line-height:1.2;
}

/* ==================================================
STAT CARD PREMIUM
================================================== */

.stat-card{
    position:relative;

    height:100%;
    padding:40px 25px;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(16px);

    border-radius:28px;

    border:1px solid rgba(255,255,255,.8);

    box-shadow:
    0 10px 30px rgba(0,0,0,.05),
    0 1px 0 rgba(255,255,255,.7) inset;

    text-align:center;

    transition:.45s ease;

    overflow:hidden;
}

.stat-card::before{
    content:"";

    position:absolute;

    top:-120px;
    left:-120px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(13,110,253,.15),
    transparent 70%);

    transition:.6s ease;
}

.stat-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(13,110,253,.12);
}

.stat-card:hover::before{
    transform:scale(1.3);
}

.stat-icon{
    width:85px;
    height:85px;

    margin:auto auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:24px;

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #0dcaf0);

    color:white;

    font-size:2rem;

    box-shadow:
    0 12px 30px rgba(13,110,253,.25);
}

.stat-card h3{
    font-size:3rem;
    font-weight:800;
    color:#0d6efd;
    margin-bottom:10px;
}

.stat-card p{
    color:#64748b;
    font-size:1rem;
    margin:0;
}

/* ==================================================
WHY CARD PREMIUM
================================================== */

.why-card{
    position:relative;

    height:100%;

    padding:40px 30px;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    transition:.45s ease;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);
}

.why-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
    90deg,
    #0d6efd,
    #20c997);
}

.why-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(13,110,253,.12);
}

.why-card i{
    font-size:3rem;

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #20c997);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    display:block;

    margin-bottom:20px;
}

.why-card h4{
    font-weight:700;
    margin-bottom:15px;
    color:#132238;
}

.why-card p{
    color:#6c757d;
    line-height:1.8;
}

/* ==================================================
PARTNERS
================================================== */

.partner-card{
    position:relative;

    padding:35px 15px;

    border-radius:24px;

    background:
    rgba(255,255,255,.9);

    backdrop-filter:blur(14px);

    text-align:center;

    font-weight:700;

    letter-spacing:1px;

    color:#132238;

    border:1px solid rgba(255,255,255,.8);

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.4s ease;
}

.partner-card:hover{
    transform:translateY(-8px);

    color:#0d6efd;

    box-shadow:
    0 18px 45px rgba(13,110,253,.12);
}

/* ==================================================
SOFT FLOATING ANIMATION
================================================== */

@keyframes floating {

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}

.stat-icon{
    animation:floating 4s ease-in-out infinite;
}

/* ==================================================
SCROLL ANIMATION
================================================== */

.stat-card,
.why-card,
.partner-card{
    animation:fadeUp .8s ease both;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

