
:root{
    --blue:#1685D8;
    --blue-dark:#0873BF;
    --blue-soft:#EAF6FF;
    --sky:#F1F9FF;
    --text:#17242b;
    --muted:#6e7c82;
    --border:#e4edef;
    --white:#fff;
    --container:1180px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:"Tajawal",sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.7;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input{
    font-family:inherit;
}

.container{
    width:min(var(--container),calc(100% - 48px));
    margin-inline:auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header{
    height:70px;
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,.97);
    border-bottom:1px solid #edf1f2;
    backdrop-filter:blur(12px);
}

.header-inner{
    height:100%;
    display:flex;
    align-items:center;
    gap:35px;
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.brand-mark{
    width:37px;
    height:37px;
    display:grid;
    place-items:center;
    border-radius:7px;
    background:var(--blue);
    color:#fff;
    font-size:19px;
    font-weight:800;
}

.brand-copy{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.brand-copy strong{
    font-size:14px;
    font-weight:800;
}

.brand-copy small{
    margin-top:3px;
    color:#9aa5aa;
    font-size:10px;
}

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

.main-nav a{
    color:#59666b;
    font-size:13px;
    font-weight:600;
    transition:.2s;
}

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

.header-actions{
    display:flex;
    align-items:center;
    gap:16px;
    margin-inline-start:auto;
}

.login-link{
    color:#59666b;
    font-size:12px;
    font-weight:600;
}

.register-button{
    padding:9px 17px;
    border-radius:5px;
    background:var(--blue);
    color:#fff;
    font-size:12px;
    font-weight:700;
}


/* =========================================================
   HERO
========================================================= */

.hero{
    position:relative;
    min-height:570px;
    overflow:hidden;
    background:
        linear-gradient(180deg,#fff 0%,#fff 62%,#edf9fb 100%);
}

.hero-wave{
    position:absolute;
    width:115%;
    height:190px;
    right:-7%;
    bottom:-125px;
    border-radius:50% 50% 0 0;
    background:#EAF6FF;
}

.hero-inner{
    min-height:570px;
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 470px;
    align-items:center;
    gap:60px;
}

.hero-copy{
    max-width:620px;
}

.eyebrow{
    display:inline-block;
    margin-bottom:15px;
    color:var(--blue-dark);
    font-size:13px;
    font-weight:700;
}

.hero h1{
    margin:0;
    font-size:clamp(45px,5vw,65px);
    line-height:1.16;
    letter-spacing:-.04em;
    font-weight:800;
}

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

.hero-copy>p{
    max-width:560px;
    margin:20px 0 25px;
    color:var(--muted);
    font-size:18px;
    line-height:2;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.primary-button,
.secondary-button{
    min-height:43px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:0 19px;
    border-radius:5px;
    font-size:12px;
    font-weight:700;
    transition:.2s;
}

.primary-button{
    color:#fff;
    background:var(--blue);
    box-shadow:0 8px 22px rgba(17,155,155,.15);
}

.primary-button:hover{
    background:var(--blue-dark);
    transform:translateY(-2px);
}

.primary-button.small{
    min-height:40px;
}

.secondary-button{
    color:var(--blue-dark);
    border:1px solid #bfe3e4;
    background:#fff;
}

.secondary-button:hover{
    background:var(--blue-soft);
}


/* HERO VISUAL */

.hero-visual{
    position:relative;
    width:450px;
    height:450px;
    justify-self:end;
}

.hero-person{
    position:absolute;
    right:55px;
    top:15px;
    width:350px;
    height:405px;
    overflow:hidden;
    border-radius:20px 20px 55px 55px;
    background:
        radial-gradient(circle at 50% 35%,rgba(17,155,155,.15),transparent 28%),
        linear-gradient(150deg,#f4fbfc,#dff3f5);
    border:1px solid #D8EBF7;
    box-shadow:0 25px 60px rgba(30,110,120,.11);
}

.person-placeholder{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.person-placeholder span{
    color:var(--blue);
    font-size:150px;
    line-height:1;
    font-weight:800;
}

.person-placeholder small{
    margin-top:5px;
    color:#78A4C2;
    font-size:9px;
    line-height:1.5;
    text-align:center;
    letter-spacing:.15em;
}

.hero-person-label{
    position:absolute;
    right:16px;
    left:16px;
    bottom:16px;
    padding:12px 15px;
    border:1px solid #DCEEF8;
    border-radius:8px;
    background:rgba(255,255,255,.94);
}

.hero-person-label strong,
.hero-person-label span{
    display:block;
}

.hero-person-label strong{
    font-size:12px;
}

.hero-person-label span{
    margin-top:2px;
    color:#89999e;
    font-size:10px;
}

.hero-orbit{
    position:absolute;
    border-radius:50%;
    background:#d8f1f3;
}

.orbit-one{
    width:180px;
    height:180px;
    top:20px;
    right:5px;
}

.orbit-two{
    width:105px;
    height:105px;
    left:5px;
    bottom:30px;
    background:#edf9fa;
}


/* =========================================================
   TRUST
========================================================= */

.trust-section{
    position:relative;
    z-index:4;
    padding:25px 0 30px;
    background:#EAF6FF;
}

.trust-section p{
    margin:0 0 18px;
    text-align:center;
    color:#53696d;
    font-size:13px;
    font-weight:600;
}

.trust-items{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.trust-items span{
    min-width:125px;
    padding:10px 16px;
    text-align:center;
    border:1px solid #D8EBF7;
    border-radius:6px;
    background:#fff;
    color:#8a999d;
    font-size:9px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section{
    padding:78px 0;
    background:#fff;
}

.section-heading{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:32px;
}

.section-heading.centered{
    display:block;
    max-width:680px;
    margin-inline:auto;
    margin-bottom:35px;
    text-align:center;
}

.section-kicker{
    display:block;
    margin-bottom:6px;
    color:var(--blue);
    font-size:11px;
    font-weight:800;
}

.section-heading h2{
    margin:0;
    font-size:36px;
    line-height:1.4;
    letter-spacing:-.025em;
}

.section-heading h2 strong{
    color:var(--blue);
}

.section-heading p{
    max-width:600px;
    margin:11px auto 0;
    color:var(--muted);
    font-size:13px;
    line-height:1.9;
}

.heading-link{
    color:var(--blue);
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
}

.section-button{
    display:flex;
    justify-content:center;
    margin-top:30px;
}


/* =========================================================
   COURSES
========================================================= */

.courses-section{
    background:#fff;
}

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

.course-card{
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:7px;
    background:#fff;
    box-shadow:0 5px 18px rgba(35,80,90,.035);
    transition:.25s;
}

.course-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(35,100,110,.08);
}

.course-cover{
    position:relative;
    height:185px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:16px;
    overflow:hidden;
    background:linear-gradient(135deg,#DFF2FC,#A9DDF7);
}

.course-cover:after{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    left:-45px;
    bottom:-65px;
    border-radius:50%;
    background:rgba(255,255,255,.45);
}

.course-cover-02{
    background:linear-gradient(135deg,#DCEFFF,#B9DFF7);
}

.course-cover-03{
    background:linear-gradient(135deg,#f0f7e9,#d7eac2);
}

.course-number{
    position:relative;
    z-index:2;
    color:rgba(28,104,108,.48);
    font-size:43px;
    line-height:1;
    font-weight:800;
}

.course-label{
    position:relative;
    z-index:2;
    align-self:flex-start;
    padding:5px 9px;
    border-radius:4px;
    color:#2479B8;
    background:rgba(255,255,255,.8);
    font-size:10px;
    font-weight:700;
}

.course-content{
    padding:18px;
}

.course-category{
    color:var(--blue);
    font-size:10px;
    font-weight:800;
}

.course-content h3{
    margin:6px 0 7px;
    font-size:19px;
    line-height:1.5;
}

.course-content p{
    min-height:47px;
    margin:0;
    color:var(--muted);
    font-size:12px;
    line-height:1.85;
}

.course-meta{
    display:flex;
    gap:15px;
    margin-top:13px;
    padding-top:11px;
    border-top:1px solid #edf2f3;
    color:#95a1a5;
    font-size:10px;
}

.course-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:13px;
    padding:8px 11px;
    border:1px solid #a9d8da;
    border-radius:4px;
    color:var(--blue-dark);
    font-size:9px;
    font-weight:700;
}

.compact .course-cover{
    height:155px;
}

.compact .course-content p{
    display:none;
}


/* =========================================================
   PATHS
========================================================= */

.paths-section{
    background:#F1F9FF;
    background-image:
        linear-gradient(135deg,rgba(255,255,255,.65) 25%,transparent 25%),
        linear-gradient(315deg,rgba(255,255,255,.45) 25%,transparent 25%);
    background-size:80px 80px;
}

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

.path-card{
    position:relative;
    min-height:300px;
    overflow:hidden;
    border:1px solid #DCEEF8;
    border-radius:7px;
    background:#fff;
}

.path-number{
    position:absolute;
    top:15px;
    right:17px;
    color:#9bcfd2;
    font-size:11px;
    font-weight:800;
}

.path-illustration{
    height:125px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#D9F1FC,#A9DDF5);
}

.path-illustration span{
    width:65px;
    height:65px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff;
    color:var(--blue);
    font-size:23px;
    box-shadow:0 8px 20px rgba(30,100,110,.08);
}

.path-content{
    padding:18px;
}

.path-content h3{
    margin:0 0 7px;
    font-size:18px;
}

.path-content p{
    min-height:50px;
    margin:0;
    color:var(--muted);
    font-size:12px;
    line-height:1.85;
}

.path-content a{
    display:flex;
    justify-content:space-between;
    margin-top:13px;
    padding-top:11px;
    border-top:1px solid #edf2f3;
    color:var(--blue-dark);
    font-size:9px;
    font-weight:700;
}


/* =========================================================
   SEARCH
========================================================= */

.search-section{
    padding:75px 0;
    background:#fff;
}

.search-heading{
    max-width:600px;
    margin:0 auto 23px;
    text-align:center;
}

.search-heading h2{
    margin:0;
    font-size:36px;
    line-height:1.4;
}

.search-heading h2 strong{
    color:var(--blue);
}

.big-search{
    width:min(760px,100%);
    height:55px;
    display:flex;
    align-items:center;
    margin:auto;
    overflow:hidden;
    border:1px solid #d7e5e8;
    border-radius:5px;
    background:#fff;
    box-shadow:0 8px 28px rgba(30,90,100,.05);
}

.big-search>span{
    padding:0 15px;
    color:#9aa8ad;
    font-size:20px;
}

.big-search input{
    min-width:0;
    flex:1;
    height:100%;
    padding:0 5px;
    outline:none;
    border:0;
    color:var(--text);
    font-size:11px;
}

.big-search button{
    width:82px;
    height:100%;
    border:0;
    color:#fff;
    background:var(--blue);
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section{
    background:#fff;
}

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

.testimonial{
    min-height:220px;
    padding:25px;
    border:1px solid var(--border);
    border-radius:7px;
    background:#fff;
    box-shadow:0 7px 25px rgba(30,80,90,.04);
}

.quote-mark{
    color:#b7dfe1;
    font-family:Georgia,serif;
    font-size:38px;
    line-height:1;
}

.testimonial p{
    min-height:73px;
    margin:6px 0 20px;
    color:#59686d;
    font-size:13px;
    line-height:1.9;
}

.testimonial-person{
    display:flex;
    align-items:center;
    gap:10px;
    padding-top:13px;
    border-top:1px solid #edf2f3;
}

.avatar{
    width:32px;
    height:32px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:var(--blue-dark);
    background:#E3F2FC;
    font-size:11px;
    font-weight:800;
}

.testimonial-person strong,
.testimonial-person small{
    display:block;
}

.testimonial-person strong{
    font-size:10px;
}

.testimonial-person small{
    color:#9aa5a9;
    font-size:10px;
}


/* =========================================================
   TRAINING BANNER
========================================================= */

.training-banner{
    padding:20px 0 75px;
}

.training-inner{
    min-height:245px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    gap:45px;
    padding:35px 50px;
    border-radius:8px;
    background:
        radial-gradient(circle at 10% 100%,#168c9a 0 100px,transparent 101px),
        linear-gradient(135deg,#3c5fe7,#147fa9);
    color:#fff;
}

.training-inner:before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    left:-120px;
    bottom:-170px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.3);
}

.training-illustration{
    width:190px;
    height:175px;
    display:grid;
    place-items:center;
    flex-shrink:0;
}

.training-illustration span{
    color:#fff;
    font-size:125px;
    font-weight:800;
    opacity:.85;
}

.training-copy{
    position:relative;
    z-index:2;
}

.training-copy>span{
    color:#CDEBFF;
    font-size:9px;
    font-weight:700;
}

.training-copy h2{
    margin:5px 0 8px;
    font-size:34px;
}

.training-copy p{
    max-width:500px;
    margin:0;
    color:rgba(255,255,255,.8);
    font-size:11px;
}

.training-copy a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:17px;
    padding:9px 14px;
    border-radius:4px;
    background:#fff;
    color:#176d82;
    font-size:9px;
    font-weight:700;
}


/* =========================================================
   ARTICLES
========================================================= */

.articles-section{
    background:#fff;
}

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

.article-card{
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:7px;
    background:#fff;
}

.article-cover{
    height:155px;
    display:flex;
    align-items:end;
    padding:16px;
    background:
        linear-gradient(135deg,#dfeff1,#b9d8dc);
}

.article-cover span{
    padding:5px 9px;
    border-radius:4px;
    background:rgba(255,255,255,.9);
    color:#2479B8;
    font-size:10px;
    font-weight:700;
}

.article-content{
    padding:18px;
}

.article-content small{
    color:var(--blue);
    font-size:10px;
    font-weight:800;
}

.article-content h3{
    margin:6px 0 8px;
    font-size:18px;
    line-height:1.5;
}

.article-content p{
    min-height:43px;
    margin:0;
    color:var(--muted);
    font-size:12px;
    line-height:1.85;
}

.article-content a{
    display:flex;
    justify-content:space-between;
    margin-top:13px;
    padding-top:11px;
    border-top:1px solid #edf2f3;
    color:var(--blue-dark);
    font-size:9px;
    font-weight:700;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section{
    padding:75px 0;
    background:#F1F9FF;
}

.about-inner{
    display:grid;
    grid-template-columns:350px 1fr;
    align-items:center;
    gap:85px;
}

.about-photo{
    height:380px;
    padding:10px;
    border-radius:8px;
    background:#fff;
    border:1px solid #DCEEF8;
}

.about-placeholder{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    border-radius:5px;
    background:linear-gradient(145deg,#e8f7f8,#d2edf0);
}

.about-placeholder span{
    color:var(--blue);
    font-size:125px;
    font-weight:800;
}

.about-copy{
    max-width:600px;
}

.about-copy h2{
    margin:0;
    font-size:42px;
    line-height:1.35;
}

.about-copy h2 strong{
    display:block;
    color:var(--blue);
}

.about-copy p{
    margin:17px 0 22px;
    color:var(--muted);
    font-size:15px;
    line-height:2;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta{
    padding:25px 0 75px;
}

.final-cta-inner{
    min-height:210px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:35px 48px;
    border-radius:8px;
    background:linear-gradient(135deg,#0e999c,#36b4b4);
    color:#fff;
}

.final-cta-inner>div>span{
    color:#CDEBFF;
    font-size:9px;
    font-weight:700;
}

.final-cta h2{
    margin:6px 0;
    font-size:36px;
}

.final-cta p{
    margin:0;
    color:rgba(255,255,255,.8);
    font-size:11px;
}

.final-cta-inner>a{
    flex-shrink:0;
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:12px 20px;
    border-radius:5px;
    color:var(--blue-dark);
    background:#fff;
    font-size:12px;
    font-weight:700;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    padding-top:50px;
    background:#101c24;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:55px;
    padding-bottom:40px;
}

.footer-brand-logo .brand-copy strong{
    color:#fff;
}

.footer-brand p{
    max-width:260px;
    margin:17px 0 0;
    color:#839198;
    font-size:9px;
}

.footer-column{
    display:flex;
    flex-direction:column;
    gap:9px;
}

.footer-column h4{
    margin:0 0 6px;
    color:#28b8b5;
    font-size:10px;
}

.footer-column a{
    color:#8d999f;
    font-size:9px;
}

.footer-column a:hover{
    color:#fff;
}

.footer-bottom{
    min-height:55px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.08);
    color:#68767d;
    font-size:10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .main-nav{
        display:none;
    }

    .hero-inner{
        grid-template-columns:1fr 380px;
        gap:30px;
    }

    .hero-visual{
        transform:scale(.9);
        transform-origin:center;
    }

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

    .about-inner{
        grid-template-columns:300px 1fr;
        gap:50px;
    }

    .footer-grid{
        grid-template-columns:2fr 1fr 1fr;
    }

}

@media(max-width:760px){

    .container{
        width:calc(100% - 30px);
    }

    .site-header{
        height:64px;
    }

    .login-link{
        display:none;
    }

    .hero{
        min-height:auto;
    }

    .hero-inner{
        min-height:auto;
        grid-template-columns:1fr;
        padding:55px 0 60px;
        text-align:center;
    }

    .hero-copy{
        margin:auto;
    }

    .hero-copy>p{
        margin-inline:auto;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-visual{
        width:330px;
        max-width:100%;
        height:380px;
        margin:auto;
        transform:none;
    }

    .hero-person{
        right:15px;
        width:300px;
        height:360px;
    }

    .section{
        padding:60px 0;
    }

    .section-heading{
        display:block;
    }

    .heading-link{
        display:inline-block;
        margin-top:10px;
    }

    .course-grid,
    .paths-grid,
    .testimonial-grid,
    .article-grid{
        grid-template-columns:1fr;
    }

    .training-inner{
        display:block;
        padding:30px;
    }

    .training-illustration{
        display:none;
    }

    .about-inner{
        grid-template-columns:1fr;
        gap:35px;
    }

    .about-photo{
        width:300px;
        max-width:100%;
        margin:auto;
    }

    .about-copy{
        text-align:center;
        margin:auto;
    }

    .about-copy .secondary-button{
        margin:auto;
    }

    .final-cta-inner{
        display:block;
        padding:30px;
    }

    .final-cta-inner>a{
        display:inline-flex;
        margin-top:20px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:35px;
    }

}

@media(max-width:480px){

    .brand-copy small{
        display:none;
    }

    .register-button{
        padding:8px 12px;
    }

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

    .hero-copy>p{
        font-size:12px;
    }

    .hero-visual{
        height:350px;
    }

    .hero-person{
        width:275px;
        height:335px;
        right:27px;
    }

    .person-placeholder span{
        font-size:115px;
    }

    .section-heading h2,
    .search-heading h2{
        font-size:30px;
    }

    .trust-items span{
        min-width:105px;
    }

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

    .footer-bottom{
        flex-direction:column;
        justify-content:center;
        gap:4px;
        padding:14px 0;
    }

}

/* COURSE CARD — START LEARNING BUTTON */
.course-link{
    font-size:13px !important;
    font-weight:700;
    min-height:40px;
    padding:9px 13px;
}

.course-link span{
    font-size:16px;
    line-height:1;
}

