:root{
    --blue:#234C8C;
    --blue-dark:#102B56;
    --gold:#F5B23A;
    --gold-soft:#FFF4D8;
    --dark:#0F172A;
    --text:#475569;
    --muted:#64748B;
    --light:#F8FAFC;
    --white:#FFFFFF;
    --border:#E2E8F0;
    --shadow:0 24px 70px rgba(15,23,42,.12);
    --radius:26px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html,
body{
    max-width:100%;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Alexandria',sans-serif;
    direction:rtl;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:min(1240px,92%);
    margin:auto;
}

.section{
    padding:110px 0;
    position:relative;
}

.section-light{
    background:var(--light);
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.section-title .tag{
    display:inline-flex;
    padding:8px 18px;
    border-radius:50px;
    background:var(--gold-soft);
    color:var(--blue);
    font-weight:800;
    margin-bottom:16px;
}

.section-title h2{
    font-size:35px;
    line-height:1.6;
    color:var(--dark);
    margin-bottom:16px;
    font-weight:900;
}

.section-title p{
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 30px;
    border-radius:60px;
    font-weight:800;
    transition:.3s ease;
    border:0;
    cursor:pointer;
    font-family:inherit;
}

.btn-primary{
    background:var(--gold);
    color:var(--blue-dark);
    box-shadow:0 16px 35px rgba(245,178,58,.28);
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(245,178,58,.36);
}

.btn-outline{
    color:#fff;
    border:1px solid rgba(255,255,255,.35);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
}

.btn-outline:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.16);
}

/* HEADER */
.site-header{
    position:fixed;
    inset:0 0 auto 0;
    z-index:1000;
    padding:18px 0;
    transition:.3s ease;
}

.site-header.scrolled{
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(18px);
    box-shadow:0 12px 40px rgba(15,23,42,.08);
    padding:10px 0;
}

.header-inner{
    display:grid;
    grid-template-columns:170px 1fr auto;
    align-items:center;
    gap:34px;
}

.logo{
    display:inline-flex;
    align-items:center;
    justify-content:flex-start;
    padding:8px 20px;
    border-radius:18px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
    margin: auto;
}

.logo img{
    height:88px;
    width:auto;
    transition:.3s ease;
}

.site-header.scrolled .logo{
    background:transparent;
    padding:0;
}

.site-header.scrolled .logo img{
    height:70px;
}

.main-nav{
    justify-self:center;
}

.main-nav ul{
    display:flex;
    align-items:center;
    gap:42px;
}

.main-nav a{
    color:#fff;
    font-weight:600;
    font-size:15px;
    transition:.3s ease;
    white-space:nowrap;
}



.site-header.scrolled .main-nav a{
    color:var(--dark);
}

.main-nav a:hover{
    color:var(--gold);
}

.header-cta{
    background:#fff;
    color:var(--blue);
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    transition:.3s ease;
}

.site-header.scrolled .header-cta{
    background:var(--blue);
    color:#fff;
}

.header-cta:hover{
    transform:translateY(-3px);
}

.mobile-toggle{
    display:none;
    width:46px;
    height:46px;
    border-radius:14px;
    border:0;
    background:var(--blue);
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.mobile-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    border-radius:10px;
}

/* HERO */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:url('images/hero.jpg') center/cover no-repeat;
    padding-bottom:95px;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 88% 8%, rgba(255,255,255,.22), transparent 18%),
        linear-gradient(
            90deg,
            rgba(16,43,86,.30) 0%,
            rgba(35,76,140,.42) 34%,
            rgba(16,43,86,.78) 62%,
            rgba(15,23,42,.90) 100%
        );
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,.18) 0%,
            rgba(15,23,42,.05) 38%,
            rgba(15,23,42,.25) 100%
        );
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
    padding-top:150px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:50px;
    color:#fff;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.28);
    backdrop-filter:blur(12px);
    font-weight:800;
    margin-bottom:26px;
    font-size: 13px;
}

.hero h1{
    color:#fff;
    font-size:54px;
    line-height:1.45;
    font-weight:900;
    margin-bottom:22px;
    letter-spacing:-1px;
}

.hero h1 span{
    color:var(--gold);
}

.hero p{
    color:#F1F5F9;
    font-size:20px;
    line-height:2;
    max-width:710px;
    margin-bottom:30px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:30px;
}

.hero-mini{
    display:flex;
    flex-wrap:nowrap;
    gap:12px;
    max-width:100%;
}

.hero-mini-item{
    display:flex;
    align-items:center;
    gap:9px;
    color:#fff;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.20);
    padding:11px 14px;
    border-radius:16px;
    backdrop-filter:blur(12px);
    font-weight:700;
    font-size:14px;
    white-space:nowrap;
}

.hero-mini-item i{
    min-width:30px;
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--gold);
    color:var(--blue-dark);
    font-style:normal;
}


/* STATS */

.stats-wrap{
    margin-top:-45px;
    position:relative;
    z-index:10;
}

.stats-grid{
    background:#fff;
    border-radius:30px;
    box-shadow:
        0 25px 60px rgba(15,23,42,.10),
        0 8px 20px rgba(15,23,42,.05);

    display:grid;
    grid-template-columns:repeat(4,1fr);

    padding:15px;
    gap:15px;
}

.stat-card{
    position:relative;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    border-radius:24px;

    padding:28px 20px;

    text-align:center;

    transition:.35s ease;

    overflow:hidden;
}

.stat-card::before{
    content:"";

    position:absolute;

    top:0;
    right:0;
    left:0;

    height:4px;

    background:
    linear-gradient(
        90deg,
        var(--gold),
        var(--blue)
    );

    opacity:0;

    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(35,76,140,.10);
}

.stat-card:hover::before{
    opacity:1;
}

.stat-icon{
    width:72px;
    height:72px;

    margin:0 auto 18px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        rgba(245,178,58,.18),
        rgba(35,76,140,.10)
    );

    font-size:30px;
}

.stat-card strong{
    display:block;

    font-size:42px;

    line-height:1;

    color:var(--blue);

    font-weight:900;

    margin-bottom:12px;
}

.stat-card span{
    display:block;

    color:var(--muted);

    font-size:15px;

    line-height:1.8;

    font-weight:700;
}


.stat-icon svg{
    width:34px;
    height:34px;
    fill:none;
    stroke:var(--blue);
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* ABOUT */

.about-section{
    background:
        radial-gradient(circle at 15% 18%, rgba(245,178,58,.08), transparent 32%),
        linear-gradient(180deg,#fff,#fbfdff);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1.05fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(245,178,58,.18);
    left:-38px;
    top:-34px;
    z-index:0;
}

.about-image::after{
    content:"";
    position:absolute;
    width:110px;
    height:110px;
    border-radius:32px;
    border:2px solid rgba(35,76,140,.14);
    right:-22px;
    bottom:48px;
    z-index:0;
}

.about-image-frame{
    position:relative;
    z-index:1;
    border-radius:34px;
    padding:10px;
    background:linear-gradient(135deg, rgba(35,76,140,.12), rgba(245,178,58,.18));
    box-shadow:var(--shadow);
}

.about-image img{
    width:100%;
    height:520px;
    border-radius:26px;
    object-fit:cover;
}

.about-card{
    position:absolute;
    bottom:32px;
    right:-34px;
    z-index:3;

    display:flex;
    align-items:center;
    gap:16px;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.75);
    border-radius:24px;
    box-shadow:0 22px 60px rgba(15,23,42,.16);

    padding:20px 22px;
    max-width:330px;
}

.about-card-icon{
    min-width:58px;
    width:58px;
    height:58px;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,var(--blue),var(--blue-dark));
}

.about-card-icon svg{
    width:30px;
    height:30px;
    fill:none;
    stroke:var(--gold);
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.about-card strong{
    display:block;
    color:var(--blue);
    font-size:23px;
    font-weight:900;
    margin-bottom:4px;
}

.about-card span{
    display:block;
    color:var(--muted);
    font-weight:700;
    line-height:1.8;
    font-size:14px;
}

.about-text .tag{
    display:inline-flex;
    background:var(--gold-soft);
    color:var(--blue);
    padding:8px 18px;
    border-radius:50px;
    font-weight:800;
    margin-bottom:18px;
}

.about-text h2{
    font-size:40px;
    line-height:1.55;
    font-weight:900;
    margin-bottom:22px;
    color:var(--dark);
}

.about-text p{
    color:var(--text);
    font-size:17px;
    line-height:2.15;
    margin-bottom:30px;
    max-width:680px;
}

.about-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.about-feature{
    display:flex;
    align-items:flex-start;
    gap:14px;

    background:#fff;
    border:1px solid rgba(226,232,240,.9);
    border-radius:20px;

    padding:18px;

    box-shadow:0 12px 34px rgba(15,23,42,.055);
    transition:.35s ease;
}

.about-feature:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(35,76,140,.10);
    border-color:rgba(245,178,58,.45);
}

.about-feature-icon{
    min-width:48px;
    width:48px;
    height:48px;
    border-radius:16px;

    display:grid;
    place-items:center;

    background:linear-gradient(135deg, rgba(35,76,140,.10), rgba(245,178,58,.16));
}

.about-feature-icon svg{
    width:26px;
    height:26px;
    fill:none;
    stroke:var(--blue);
    stroke-width:1.85;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.about-feature h3{
    font-size:16px;
    line-height:1.5;
    color:var(--blue-dark);
    font-weight:900;
    margin-bottom:3px;
}

.about-feature span{
    display:block;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
    font-weight:600;
}

/* WHY */

.why-section{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 90% 12%, rgba(245,178,58,.16), transparent 26%),
        radial-gradient(circle at 8% 85%, rgba(35,76,140,.12), transparent 30%),
        linear-gradient(180deg,#F8FAFC 0%,#EEF5FF 100%);
}

.why-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(35,76,140,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35,76,140,.045) 1px, transparent 1px);
    background-size:42px 42px;
    mask-image:linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
    pointer-events:none;
}

.why-bg-shape{
    position:absolute;
    z-index:0;
    border-radius:50%;
    filter:blur(2px);
    opacity:.55;
    animation:whyFloat 7s ease-in-out infinite;
}

.why-bg-shape.shape-one{
    width:170px;
    height:170px;
    background:rgba(245,178,58,.18);
    top:85px;
    right:7%;
}

.why-bg-shape.shape-two{
    width:230px;
    height:230px;
    background:rgba(35,76,140,.11);
    left:5%;
    bottom:80px;
    animation-delay:1.5s;
}

.why-section .container{
    position:relative;
    z-index:2;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.why-card{
    position:relative;
    isolation:isolate;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(14px);
    border-radius:26px;
    padding:34px 30px;
    border:1px solid rgba(255,255,255,.9);
    box-shadow:0 18px 45px rgba(15,23,42,.065);
    transition:.35s ease;
    overflow:hidden;
}

.why-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(245,178,58,.13), transparent 35%),
        linear-gradient(315deg, rgba(35,76,140,.10), transparent 38%);
    opacity:0;
    transition:.35s ease;
    z-index:-1;
}

.why-card::after{
    content:"";
    position:absolute;
    width:95px;
    height:95px;
    border-radius:50%;
    background:rgba(245,178,58,.12);
    top:-45px;
    left:-35px;
    transition:.35s ease;
}

.why-card:hover{
    transform:translateY(-9px);
    box-shadow:0 26px 65px rgba(35,76,140,.14);
    border-color:rgba(245,178,58,.42);
}

.why-card:hover::before{
    opacity:1;
}

.why-card:hover::after{
    transform:scale(1.25);
    background:rgba(245,178,58,.18);
}

.why-icon{
    width:66px;
    height:66px;
    display:grid;
    place-items:center;
    border-radius:22px;
    margin-bottom:24px;
    background:linear-gradient(135deg,var(--blue),var(--blue-dark));
    box-shadow:0 14px 30px rgba(35,76,140,.18);
    transition:.35s ease;
}

.why-card:hover .why-icon{
    transform:translateY(-4px) rotate(-3deg);
    box-shadow:0 18px 38px rgba(35,76,140,.24);
}

.why-icon svg{
    width:34px;
    height:34px;
    fill:none;
    stroke:var(--gold);
    stroke-width:1.85;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.why-card h3{
    font-size:21px;
    margin-bottom:12px;
    font-weight:900;
    color:var(--dark);
    line-height:1.5;
}

.why-card p{
    color:var(--muted);
    line-height:1.95;
    font-weight:600;
    font-size:15px;
}

@keyframes whyFloat{
    0%,100%{
        transform:translateY(0) translateX(0);
    }
    50%{
        transform:translateY(-18px) translateX(10px);
    }
}


/* JOURNEY */

.journey{
    position:relative;
    overflow:hidden;
    color:#fff;

    background:
    radial-gradient(
    circle at top right,
    rgba(245,178,58,.18),
    transparent 25%
    ),
    radial-gradient(
    circle at bottom left,
    rgba(255,255,255,.08),
    transparent 30%
    ),
    linear-gradient(
    135deg,
    #102B56,
    #234C8C
    );

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.journey::before{
    content:"";

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at 15% 20%,
        rgba(245,178,58,.15),
        transparent 30%
    ),
    radial-gradient(
        circle at 85% 80%,
        rgba(255,255,255,.08),
        transparent 25%
    );
}

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

.journey .section-title h2,
.journey .section-title p{
    color:#fff;
}

.journey .section-title .tag{
    background:rgba(255,255,255,.10);
    color:var(--gold);
}

.journey-grid{
    position:relative;

    display:grid;
    grid-template-columns:repeat(5,1fr);

    gap:24px;
}

.journey-grid::before{
    content:"";

    position:absolute;

    top:38px;
    right:10%;
    left:10%;

    height:4px;

    background:
    linear-gradient(
        90deg,
        var(--gold),
        #FFE7AA,
        var(--gold)
    );

    border-radius:20px;

    box-shadow:
    0 0 20px rgba(245,178,58,.5);
}

.journey-step{
    position:relative;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:28px;

    padding:80px 22px 28px;

    text-align:center;

    transition:.35s ease;
}

.journey-step:hover{
    transform:translateY(-10px);

    background:rgba(255,255,255,.12);

    border-color:rgba(245,178,58,.45);

    box-shadow:
    0 25px 60px rgba(0,0,0,.20);
}

.journey-step .num{
    position:absolute;

    top:12px;
    right:50%;

    transform:translateX(50%);

    width:54px;
    height:54px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--gold);

    color:var(--blue-dark);

    font-size:22px;
    font-weight:900;

    z-index:5;

    box-shadow:
    0 0 25px rgba(245,178,58,.5);
}

.journey-icon{
    width:68px;
    height:68px;

    margin:0 auto 20px;

    border-radius:20px;

    display:grid;
    place-items:center;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.15)
    );
}

.journey-icon svg{
    width:34px;
    height:34px;

    fill:none;
    stroke:var(--gold);

    stroke-width:1.8;

    stroke-linecap:round;
    stroke-linejoin:round;
}

.journey-step h3{
    font-size:19px;
    font-weight:800;
    margin-bottom:12px;
}

.journey-step p{
    color:#D8E3F3;
    line-height:1.9;
    font-size:14px;
}

/* PROGRAMS */

.programs-section{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(35,76,140,.08), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(245,178,58,.12), transparent 30%),
        linear-gradient(180deg,#fff 0%,#F8FAFC 100%);
}

.programs-section .container{
    position:relative;
    z-index:2;
}

.programs-shape{
    position:absolute;
    border-radius:50%;
    opacity:.55;
    filter:blur(1px);
    animation:whyFloat 8s ease-in-out infinite;
}

.programs-shape.shape-a{
    width:180px;
    height:180px;
    background:rgba(245,178,58,.14);
    top:120px;
    right:6%;
}

.programs-shape.shape-b{
    width:220px;
    height:220px;
    background:rgba(35,76,140,.10);
    left:4%;
    bottom:90px;
    animation-delay:1.5s;
}

.programs-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.program-card{
    position:relative;
    display:grid;
    grid-template-columns:45% 55%;
    background:rgba(255,255,255,.9);
    border-radius:32px;
    overflow:hidden;
    border:1px solid rgba(226,232,240,.85);
    box-shadow:0 18px 45px rgba(15,23,42,.075);
    transition:.4s ease;
}

.program-card:hover{
    transform:translateY(-9px);
    box-shadow:0 28px 70px rgba(35,76,140,.14);
    border-color:rgba(245,178,58,.45);
}

.program-image{
    position:relative;
    overflow:hidden;
    min-height:100%;
}

.program-image::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(180deg, transparent 40%, rgba(15,23,42,.55)),
        linear-gradient(135deg, rgba(35,76,140,.18), rgba(245,178,58,.10));
    opacity:.85;
    transition:.35s ease;
}

.program-card:hover .program-image::before{
    opacity:.55;
}

.program-image img{
    width:100%;
    height:100%;
    min-height:330px;
    object-fit:cover;
    transition:.55s ease;
}

.program-card:hover .program-image img{
    transform:scale(1.08);
}

.program-icon{
    position:absolute;
    bottom:22px;
    right:22px;
    z-index:2;

    width:62px;
    height:62px;
    border-radius:20px;

    display:grid;
    place-items:center;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    box-shadow:0 16px 35px rgba(15,23,42,.16);
}

.program-icon svg{
    width:32px;
    height:32px;
    fill:none;
    stroke:var(--blue);
    stroke-width:1.85;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.program-content{
    padding:34px 32px;
}

.program-label{
    display:inline-flex;
    padding:7px 15px;
    border-radius:50px;
    background:var(--gold-soft);
    color:var(--blue);
    font-size:13px;
    font-weight:900;
    margin-bottom:14px;
}

.program-content h3{
    font-size:22px;
    line-height:1.45;
    font-weight:700;
    color:var(--blue-dark);
    margin-bottom:12px;
}

.program-content p{
    color:var(--muted);
    line-height:1.95;
    margin-bottom:18px;
    font-weight:600;
    font-size:15px;
}

.program-content ul{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-bottom:22px;
}

.program-content li{
    background:#fff;
    border:1px solid rgba(226,232,240,.95);
    color:var(--blue-dark);
    padding:8px 13px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    box-shadow:0 8px 18px rgba(15,23,42,.04);
}

.program-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--blue);
    font-weight:900;
    transition:.3s ease;
}

.program-link::after{
    content:"←";
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--blue);
    color:#fff;
    transition:.3s ease;
}

.program-link:hover{
    color:var(--gold);
}

.program-link:hover::after{
    background:var(--gold);
    color:var(--blue-dark);
    transform:translateX(-4px);
}



/* SERVICES */

.services-section{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(245,178,58,.16), transparent 28%),
        radial-gradient(circle at 85% 75%, rgba(35,76,140,.20), transparent 30%),
        linear-gradient(135deg,#071A35 0%,#102B56 48%,#234C8C 100%);
}

.services-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image:linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
    pointer-events:none;
}

.services-section .container{
    position:relative;
    z-index:2;
}

.services-section .section-title h2,
.services-section .section-title p{
    color:#fff;
}

.services-section .section-title .tag{
    background:rgba(255,255,255,.12);
    color:var(--gold);
    border:1px solid rgba(255,255,255,.14);
}

.services-shape{
    position:absolute;
    border-radius:50%;
    opacity:.55;
    filter:blur(3px);
    animation:whyFloat 8s ease-in-out infinite;
}

.services-shape-1{
    width:210px;
    height:210px;
    background:rgba(245,178,58,.16);
    top:90px;
    right:5%;
}

.services-shape-2{
    width:260px;
    height:260px;
    background:rgba(255,255,255,.08);
    left:4%;
    bottom:70px;
    animation-delay:1.5s;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.service-card{
    position:relative;
    isolation:isolate;

    background:rgba(255,255,255,.09);
    backdrop-filter:blur(16px);

    padding:34px 24px 30px;
    border-radius:28px;

    text-align:right;

    border:1px solid rgba(255,255,255,.16);

    box-shadow:0 18px 45px rgba(0,0,0,.16);

    transition:.38s ease;

    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:
        linear-gradient(135deg, rgba(245,178,58,.18), transparent 35%),
        linear-gradient(315deg, rgba(255,255,255,.10), transparent 40%);
    opacity:0;
    transition:.38s ease;
}

.service-card::after{
    content:"";
    position:absolute;
    width:115px;
    height:115px;
    border-radius:50%;
    background:rgba(245,178,58,.12);
    left:-45px;
    top:-45px;
    transition:.38s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(245,178,58,.50);
    box-shadow:0 28px 70px rgba(0,0,0,.26);
}

.service-card:hover::before{
    opacity:1;
}

.service-card:hover::after{
    transform:scale(1.25);
}

.service-icon{
    width:68px;
    height:68px;
    border-radius:22px;

    display:grid;
    place-items:center;

    margin-bottom:24px;

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);

    box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);

    transition:.38s ease;
}

.service-card:hover .service-icon{
    background:var(--gold);
    transform:translateY(-4px) rotate(-3deg);
}

.service-icon svg{
    width:34px;
    height:34px;
    fill:none;
    stroke:var(--gold);
    stroke-width:1.85;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition:.38s ease;
}

.service-card:hover .service-icon svg{
    stroke:var(--blue-dark);
}

.service-number{
    position:absolute;
    top:26px;
    left:26px;

    font-size:34px;
    line-height:1;
    font-weight:900;

    color:rgba(255,255,255,.10);
    letter-spacing:-1px;
}

.service-card h3{
    font-size:20px;
    font-weight:900;
    margin-bottom:12px;
    color:#fff;
    line-height:1.5;
}

.service-card p{
    color:#D8E3F3;
    line-height:1.9;
    font-weight:600;
    font-size:14px;
}


/* GALLERY */
.gallery-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr .8fr;
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:290px;
    object-fit:cover;
    border-radius:26px;
    box-shadow:0 16px 40px rgba(15,23,42,.08);
}

.gallery-grid img:first-child{
    height:600px;
}

/* FAQ */

.faq-wrap{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    margin-bottom:14px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
    transition:.3s ease;
}

.faq-item.faq-open{
    border-color:rgba(245,178,58,.55);
    box-shadow:0 18px 45px rgba(35,76,140,.10);
}

.faq-question{
    width:100%;
    border:0;
    background:#fff;
    padding:22px 26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    cursor:pointer;
    font-family:inherit;
    font-size:18px;
    font-weight:900;
    color:var(--dark);
    text-align:right;
}

.faq-question .faq-plus{
    min-width:34px;
    width:34px;
    height:34px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:var(--gold-soft);
    color:var(--blue);
    font-size:24px;
    line-height:1;
    transition:.3s ease;
}

.faq-item.faq-open .faq-question .faq-plus{
    background:var(--blue);
    color:#fff;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 26px 24px;
    color:var(--muted);
    line-height:1.9;
    font-weight:600;
}


/* CONTACT */

.contact-section{
    position:relative;
    overflow:hidden;
    color:#fff;
    background:
        radial-gradient(circle at 85% 18%, rgba(245,178,58,.22), transparent 28%),
        radial-gradient(circle at 12% 85%, rgba(255,255,255,.10), transparent 30%),
        linear-gradient(135deg,#071A35 0%,#102B56 45%,#234C8C 100%);
}

.contact-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size:46px 46px;
    mask-image:linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
    pointer-events:none;
}

.contact-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(3px);
    opacity:.55;
    animation:whyFloat 8s ease-in-out infinite;
}

.contact-shape-1{
    width:220px;
    height:220px;
    background:rgba(245,178,58,.16);
    top:80px;
    right:5%;
}

.contact-shape-2{
    width:270px;
    height:270px;
    background:rgba(255,255,255,.08);
    left:4%;
    bottom:70px;
    animation-delay:1.4s;
}

.contact-section .container{
    position:relative;
    z-index:2;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:55px;
    align-items:center;
}

.contact-tag{
    display:inline-flex;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    color:var(--gold);
    border:1px solid rgba(255,255,255,.16);
    font-weight:900;
    margin-bottom:18px;
}

.contact-info h2{
    font-size:42px;
    line-height:1.45;
    font-weight:900;
    margin-bottom:18px;
    color:#fff;
}

.contact-info p{
    color:#DCE8F8;
    line-height:2.05;
    font-size:18px;
    margin-bottom:30px;
    max-width:620px;
}

.contact-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.btn-contact-outline{
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
}

.btn-contact-outline:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.14);
}

.contact-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.contact-card{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:16px;

    min-height:150px;

    padding:24px;

    border-radius:26px;

    background:rgba(255,255,255,.10);
    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.16);

    box-shadow:0 18px 45px rgba(0,0,0,.16);

    transition:.35s ease;

    overflow:hidden;
}

.contact-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(245,178,58,.17), transparent 38%),
        linear-gradient(315deg, rgba(255,255,255,.10), transparent 42%);
    opacity:0;
    transition:.35s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:rgba(245,178,58,.5);
    box-shadow:0 28px 70px rgba(0,0,0,.25);
}

.contact-card:hover::before{
    opacity:1;
}

.contact-icon{
    position:relative;
    z-index:2;

    min-width:58px;
    width:58px;
    height:58px;

    border-radius:20px;

    display:grid;
    place-items:center;

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);

    transition:.35s ease;
}

.contact-card:hover .contact-icon{
    background:var(--gold);
    transform:translateY(-3px) rotate(-3deg);
}

.contact-icon svg{
    width:30px;
    height:30px;
    fill:none;
    stroke:var(--gold);
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition:.35s ease;
}

.contact-card:hover .contact-icon svg{
    stroke:var(--blue-dark);
}

.contact-card div:last-child{
    position:relative;
    z-index:2;
}

.contact-card span{
    display:block;
    color:#C7D7EA;
    font-size:14px;
    font-weight:700;
    margin-bottom:7px;
}

.contact-card strong{
    display:block;
    color:#fff;
    font-size:13px;
    line-height:1.7;
    font-weight:500;
    word-break:break-word;
}



/* FOOTER */

.footer{
    background:
        radial-gradient(circle at 12% 18%, rgba(245,178,58,.10), transparent 26%),
        linear-gradient(180deg,#FFFFFF 0%,#F8FAFC 100%);
    border-top:1px solid rgba(15,23,42,.08);
    padding:42px 0 20px;
}

.footer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:38px;
    flex-wrap:wrap;
}

.footer-brand{
    max-width:390px;
}

.footer-brand img{
    height:74px;
    width:auto;
    margin-bottom:14px;
}

.footer-brand p{
    color:var(--muted);
    line-height:1.9;
    font-size:15px;
    font-weight:600;
}

.footer-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;
}

.footer-nav a{
    color:var(--dark);
    font-weight:800;
    transition:.3s ease;
}

.footer-nav a:hover{
    color:var(--gold);
}

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-social a{
    width:46px;
    height:46px;

    display:grid;
    place-items:center;

    border-radius:16px;

    background:#fff;

    border:1px solid rgba(226,232,240,.95);

    color:var(--blue);

    box-shadow:0 10px 25px rgba(15,23,42,.06);

    transition:.3s ease;
}

.footer-social a svg{
    width:22px;
    height:22px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.9;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.footer-social a:hover{
    transform:translateY(-4px);
    background:var(--blue);
    color:#fff;
    border-color:var(--blue);
    box-shadow:0 16px 35px rgba(35,76,140,.22);
}

.footer-bottom{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(15,23,42,.08);
    text-align:center;
}

.footer-bottom span{
    color:var(--muted);
    font-size:14px;
    font-weight:700;
}

@media(max-width:800px){
    .footer-top{
        flex-direction:column;
        text-align:center;
    }

    .footer-brand img{
        margin-right:auto;
        margin-left:auto;
    }

    .footer-nav{
        gap:18px;
    }
}

.whatsapp-float i{
    font-size:34px;
}

.whatsapp-float{
    position:fixed;
    left:24px;
    bottom:24px;
    z-index:999;

    width:62px;
    height:62px;

    border-radius:50%;

    display:grid;
    place-items:center;

    background:#25D366;
    color:#fff;

    box-shadow:
        0 18px 38px rgba(37,211,102,.35),
        0 0 0 8px rgba(37,211,102,.10);

    transition:.3s ease;
}

.whatsapp-float svg{
    width:32px;
    height:32px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.9;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.whatsapp-float:hover{
    transform:translateY(-5px) scale(1.06);
    box-shadow:
        0 22px 45px rgba(37,211,102,.45),
        0 0 0 10px rgba(37,211,102,.12);
}

@media(max-width:1100px){
    .hero h1{
        font-size:54px;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .journey-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
    .services-grid{
       grid-template-columns:repeat(2,1fr);
   }
}

@media(max-width:900px){
    .mobile-toggle{
        display:flex;
    }

    .main-nav{
        position:fixed;
        top:86px;
        right:4%;
        left:4%;
        background:#fff;
        border-radius:24px;
        box-shadow:var(--shadow);
        padding:22px;
        opacity:0;
        visibility:hidden;
        transform:translateY(-15px);
        transition:.3s ease;
        width: 100%
    }

    .main-nav.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .main-nav ul{
        flex-direction:column;
        align-items:stretch;
        gap:0;
    }

    .main-nav a{
        color:var(--dark);
        display:block;
        padding:14px 0;
        border-bottom:1px solid var(--border);
    }

    .header-cta{
        display:none;
    }

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .about-card{
        right:20px;
    }

    .programs-grid,
    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid img,
    .gallery-grid img:first-child{
        height:320px;
    }

    .contact-wrapper{
      grid-template-columns:1fr;
   }
   .hero-content {
    padding-top: 40px;
}
}

@media(max-width:600px){
    .section{
        padding:75px 0;
    }

    .hero{
        min-height:auto;
        padding:140px 0 90px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

    .section-title h2,
    .about-text h2,
    .contact-info h2{
        font-size:31px;
    }

    .stats-grid,
    .why-grid,
    .programs-grid,
    .services-grid,
    .journey-grid,
    .footer-grid,
    .form-row,
    .about-list{
        grid-template-columns:1fr;
    }

    .stat-card{
        border-left:0;
        border-bottom:1px solid var(--border);
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .logo img{
        height:58px;
    }

    .program-card{
        grid-template-columns:1fr;
    }

    .program-image img{
        min-height:280px;
    }
    .services-grid{
           grid-template-columns:1fr;
    }

    .contact-cards{
        grid-template-columns:1fr;
    }

    .contact-info h2{
        font-size:32px;
    }
    .hero-mini{
      display: block;
    }
    .hero-mini-item{
      margin-bottom: 10px;
    }
    .about-image::after{
      display: none;
    }
    .about-image::before{
      display: none;
    }
}

@media(max-width:900px){

    .container{
        width:92%;
        max-width:100%;
    }

    .header-inner{
        width:100%;
        max-width:100%;
        overflow:hidden;
    }

    .logo{
        max-width:170px;
        padding:6px 10px;
    }

    .logo img{
        max-width:145px;
        height:auto;
    }

    .mobile-toggle{
        min-width:46px;
    }

    .journey-grid{
        grid-template-columns:1fr;
        gap:26px;
    }

    .journey-grid::before{
        display:none;
    }

    .journey-step{
        width:100%;
        max-width:100%;
    }

    .whatsapp-float{
        left:16px;
        bottom:16px;
        width:56px;
        height:56px;
    }
}
