
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8fbff;
    color:#222;
    line-height:1.7;
}

/* ==========================
   HEADER
========================== */

header{
    width:100%;
    background:#0f172a;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

nav{
    display:flex;
    align-items:center;
    gap:35px;
    margin-left:auto;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#2563eb;
}

/* =====================
DROPDOWN
===================== */

.dropdown{
    position:relative;
}

.dropdown-content{
    position:absolute;
    top:100%;
    left:0;
    background:#0f172a;
    min-width:220px;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    border-radius:8px;
    overflow:visible;
}

.dropdown-content a{
    display:block;
    padding:12px 18px;
}

.dropdown-content a:hover{
    background:#2563eb;
    color:#fff;
}

.dropdown:hover .dropdown-content{
    display:block;
}



/* =====================
BUTTONS
===================== */

.btn{
    border:none;
    outline:none;
    padding:13px 28px;
    border-radius:50px;
    cursor:pointer;
    font-size:15px;
    transition:.3s;
}

.primary-btn{
    background:#2563eb;
    color:#fff;
     margin-left: 25px;
}

.primary-btn:hover{
    background:#1d4ed8;
     color:#fff;
    transform:translateY(-3px);
}

.secondary-btn{
    background:#fff;
    border:2px solid #2563eb;
    color:#2563eb;
}

.secondary-btn:hover{
    background:#2563eb;
    color:#fff;
}

button a{
    color:white;
    text-decoration:none;
}


/* ==========================
HERO
========================== */

.hero{
    width:100%;
    min-height:90vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:70px 8%;
    gap:60px;
     background:
        url("bannerimage.png");
    background-size:cover;
    background-position:center;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:47px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-text span{
    color:#2563eb;
}

.hero-text p{
    color:#666;
    font-size:17px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:550px;
    border-radius:20px;
}




/* ==========================
COURSES
========================== */

.courses{
    padding:80px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
}

.section-title p{
    color:#666;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.course-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.course-card:hover{
    transform:translateY(-12px);
}

.course-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.course-content{
    padding:25px;
}

.course-content h3{
    margin-bottom:15px;
    color:#2563eb;
}

.course-content p{
    color:#666;
    margin-bottom:20px;
}

/* ==========================
   COURSE PRICE
========================== */

.price-box{
    border:1px solid #72c4e7;
    border-radius:14px;
    padding:16px;
    margin:22px 0;
    background: #e5f3f9;
}

.price-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.price-left{
    display:flex;
    align-items:flex-end;
    gap:12px;
}

.new-price{
    font-size:22px;
    font-weight:700;
    color:#111827;
    line-height:1;
}

.old-price{
    font-size:15px;
    color:#94a3b8;
    text-decoration:line-through;
    font-weight:500;
}

.save-price{
    color:#f59e0b;
    font-weight:600;
    font-size:15px;
}


/* ===========================
   CAREER PATHWAY SECTION
=========================== */

.career-pathway{
    background:#000;
    padding:100px 20px;
    overflow:hidden;
    position:relative;
}

.career-pathway::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#0f4cff;
    filter:blur(180px);
    opacity:.18;
    top:-180px;
    left:-150px;
}

.career-pathway::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#d4af37;
    filter:blur(180px);
    opacity:.12;
    right:-120px;
    bottom:-150px;
}

.container{
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.subtitle{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
    font-size:14px;
}

.section-title h2{
    font-size:48px;
    color:#fff;
    margin:20px 0;
    line-height:1.3;
}

.gold{
    color:#d4af37;
}

.green{
    color:#22c55e;
}

.section-title p{
    color:#9ca3af;
    font-size:18px;
    letter-spacing:3px;
}

/* ===========================
   PHASES
=========================== */

.pathway-wrapper{
    display:flex;
    align-items:stretch;
    gap:3px;
    overflow-x:auto;
    padding-bottom:20px;
}

.phase-card{
    min-width:150px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    border-radius:22px;
    padding:10px;
    transition:.4s;
    position:relative;
}

.phase-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.6);
}

.phase-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.phase-number{
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.phase-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
}

.phase-card h3{
    color:#fff;
    font-size:20px;
    margin-bottom:8px;
}

.phase-card h4{
    font-size:15px;
    margin-bottom:20px;
    font-weight:600;
}

.phase-card ul{
    list-style:none;
}

.phase-card li{
    color:#c9c9c9;
    padding:4px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:12px;
}

.phase-footer{
    margin-top:30px;
    text-align:center;
    font-style:italic;
    font-weight:600;
}

/* ===========================
   COLORS
=========================== */

.phase-blue{
    border-color:#4f8cff;
}

.phase-blue h4,
.phase-blue .phase-footer{
    color:#4f8cff;
}

.phase-blue .phase-icon{
    background:#4f8cff22;
}

.phase-cyan{
    border-color:#16d6d6;
}

.phase-cyan h4,
.phase-cyan .phase-footer{
    color:#16d6d6;
}

.phase-cyan .phase-icon{
    background:#16d6d622;
}

.phase-orange{
    border-color:#ff914d;
}

.phase-orange h4,
.phase-orange .phase-footer{
    color:#ff914d;
}

.phase-orange .phase-icon{
    background:#ff914d22;
}

.phase-gold{
    border-color:#d4af37;
}

.phase-gold h4,
.phase-gold .phase-footer{
    color:#d4af37;
}

.phase-gold .phase-icon{
    background:#d4af3722;
}

.phase-sky{
    border-color:#38bdf8;
}

.phase-sky h4,
.phase-sky .phase-footer{
    color:#38bdf8;
}

.phase-sky .phase-icon{
    background:#38bdf822;
}

.phase-darkblue{
    border-color:#2563eb;
}

.phase-darkblue h4,
.phase-darkblue .phase-footer{
    color:#2563eb;
}

.phase-darkblue .phase-icon{
    background:#2563eb22;
}

/* ===========================
   ARROWS
=========================== */

.arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    font-size:15px;
    font-weight:bold;
}

/* ===========================
   FEATURES
=========================== */

.bottom-features{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.feature{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.35s;
}

.feature:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.feature span{
    font-size:35px;
}

.feature p{
    color:#fff;
    margin-top:15px;
    font-size:16px;
}

/* ===========================
   CTA
=========================== */

.career-cta{
    margin-top:70px;
    text-align:center;
    background:linear-gradient(135deg,#0b1f5d,#0a2d90);
    border-radius:25px;
    padding:60px 30px;
}

.career-cta h3{
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
}

.career-btn{
    display:inline-block;
    padding:18px 45px;
    background:#72c4e7;
    color:#000;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:.35s;
}

.career-btn:hover{
    background:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(212,175,55,.45);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.bottom-features{
grid-template-columns:repeat(2,1fr);
}

.section-title h2{
font-size:36px;
}

}

@media(max-width:768px){

.pathway-wrapper{
flex-direction:column;
}

.arrow{
display:none;
}

.phase-card{
min-width:100%;
}

.bottom-features{
grid-template-columns:1fr;
}

.section-title h2{
font-size:30px;
}

.career-cta h3{
font-size:24px;
}

}

@media(max-width:480px){

.career-pathway{
padding:70px 15px;
}

.phase-card{
padding:22px;
}

.phase-card h3{
font-size:24px;
}

.phase-card li{
font-size:14px;
}

.career-btn{
width:100%;
padding:16px;
}

}

/* ==========================
FOOTER
========================== */

footer{
    background:#0f172a;
    color:#fff;
    margin-top:80px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding:60px 8%;
}

.footer-col h3{
    margin-bottom:20px;
    color:white;
}

.footer-col a{
    display:block;
    text-decoration:none;
    color:#ddd;
    margin-bottom:12px;
    transition:.3s;
}

.footer-col a:hover{
    color:#60a5fa;
}

.footer-col p{
    color:#ccc;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:20px 8%;
    color:#aaa;
}


.her{
    display:flex;
    justify-content:center;
    align-items:center;

}

.typing{

    font-size:clamp(1.1rem,4.8vw,2.3rem);
    font-weight:420;
    color:#f69909;
   font-family: Helvetica, sans-serif;

    white-space:nowrap;
    overflow:hidden;

    border-right:1px solid #ffffff;

    width:0;
   

    animation:
        typing 3s steps(15,end) infinite,
        blink .8s step-end infinite;

}

/* Typing */

@keyframes typing{

    0%{
        width:0;
    }

    40%{
        width:15ch;
    }

    70%{
        width:15ch;
    }

    100%{
        width:0;
    }

}

/* Cursor */

@keyframes blink{

    50%{
        border-color:transparent;
    }

}

html,
body{
    overflow-x: hidden;
}


/* ==========================
WHATSAPP
========================== */

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:999;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}

/* ==========================
MENU
========================== */

.menu-icon{
    display:none;
    font-size:32px;
    cursor:pointer;
    color: white;
}

#menu-toggle{
    display:none;
}


/* ==========================
RESPONSIVE
========================== */

@media(max-width:991px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-text h1{
    font-size:42px;
}

header{
    padding:18px 5%;
}

nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#0f172a;
    flex-direction:column;
    display:none;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.menu-icon{
    display:block;
}

#menu-toggle:checked~nav{
    display:flex;
}

.dropdown-content,
.sub-dropdown-content{
    position:static;
    display:none;
    box-shadow:none;
}

.dropdown:hover .dropdown-content,
.sub-dropdown:hover .sub-dropdown-content{
    display:block;
}

header .btn{
    display:inline-block;
}

}

@media(max-width:768px){

.hero-text h1{
    font-size:34px;
}

.section-title h2{
    font-size:32px;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:10px;
}

}