/* ==========================
   ROOT VARIABLES
========================== */

:root{

    --primary:#1B2A6B;
    --secondary:#F5A623;
    --orange:#E05A0C;
    --dark:#121C4A;
    --background:#F7F5EF;
    --text:#6B7280;
    --white:#ffffff;
    --border:#E5E7EB;

}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body{
    min-height:100%;
    overflow-x:hidden;
}

body.no-scroll,
html.no-scroll{
    overflow:hidden !important;
    height:100%;
    width:100%;
    position:relative;
    touch-action:none;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--background);
    animation:none !important;
    transform:none !important;
}

a{
    text-decoration:none;
}

@keyframes pageFadeIn{
    from{
        opacity:0;
        transform:translateY(12px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes sectionFadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

/* ==========================
   CONTAINER
========================== */

.container{

    width:90%;
    max-width:1400px;
    margin:auto;

}

/* ==========================
   NAVBAR
========================== */

.navbar{

    position:fixed !important;
    top:0;
    left:0;
    right:0;
    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(14px);

    border-bottom:1px solid var(--border);

    box-shadow:0 4px 18px rgba(0,0,0,.06);

    transform:translateZ(0);

    transition:.4s;

}

.nav-container{

    display:flex;
    align-items:center;
    justify-content:space-between;

    height:90px;

}

/* ==========================
   LOGO
========================== */

.logo-box{

    display:flex;
    align-items:center;
    gap:14px;

}

.logo-box img{

    width:65px;
    height:65px;

    object-fit:contain;

    transition:.4s;

}

.logo-box:hover img{

    transform:rotate(5deg) scale(1.08);

}

.logo-text h2{

    font-family:'Playfair Display',serif;

    font-size:32px;

    color:var(--primary);

    line-height:1;

    letter-spacing:1px;

}

.mobile-logo h2{

    font-family:'Playfair Display',serif;

    font-size:28px;

    color:var(--primary);

    margin:0;

    letter-spacing:1px;

}

.brand-name{

    color:var(--primary);

    font-weight:700;

    font-size:1.06em;

    background:rgba(245,166,35,0.14);

    border-radius:0.35rem;

    padding:0.05em 0.22em;

    box-decoration-break:clone;

    text-transform:none;

}

.section-tag .brand-name{

    text-transform:none;

}

.logo-text span{

    display:block;

    margin-top:4px;

    font-size:10px;

    font-weight:600;

    color:var(--text);

    letter-spacing:2px;

}

/* ==========================
   NAV LINKS
========================== */

.nav-links{

    display:flex;
    align-items:center;
    gap:35px;

}

.nav-links a{

    position:relative;

    color:var(--dark);

    font-size:14px;

    font-weight:500;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    bottom:-8px;
    left:0;

    width:0;
    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-links a:hover{

    color:var(--secondary);

}

.nav-links a:hover::after{

    width:100%;

}

/* ==========================
   RIGHT SIDE
========================== */

.nav-right{

    display:flex;
    align-items:center;
    gap:20px;

}

.phone{

    color:var(--dark);

    font-size:14px;

    font-weight:500;

}

.phone i{

    color:var(--secondary);

    margin-right:6px;

}

.btn-enroll{

    background:var(--secondary);

    color:var(--white);

    padding:14px 28px;

    border-radius:50px;

    font-weight:700;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(245,166,35,.25);

}

.btn-enroll:hover{

    transform:translateY(-3px);

    background:#d99810;

}

/* ==========================
   MOBILE MENU
========================== */

.menu-btn{

    display:none;

    font-size:28px;

    color:var(--primary);

    cursor:pointer;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1100px){

    .nav-links{

        display:none;

    }

    .phone{

        display:none;

    }

    .menu-btn{

        display:block;

    }

}

@media(max-width:768px){

    .logo-text span{

        display:none;

    }

    .btn-enroll{

        display:none;

        padding:12px 20px;

        font-size:14px;

    }

}

/*==============================
    ENQUIRY BUTTON
==============================*/

.btn-enquiry{

    background:white;

    color:#1B2A6B;

    border:2px solid #F5A623;

    padding:13px 28px;

    border-radius:40px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;
}

.btn-enquiry:hover{

    background:#F5A623;

    color:white;
}

/*==============================
    OVERLAY
==============================*/

.popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.60);

    backdrop-filter:blur(8px);

    display:flex;

    justify-content:center;

    align-items:flex-start;

    padding:20px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;
}

.popup-overlay.active{

    opacity:1;

    visibility:visible;
}

/*==============================
    POPUP
==============================*/

.popup-box{

    width:950px;

    max-width:95%;

    max-height:calc(100vh - 40px);

    background:white;

    border-radius:25px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    position:relative;

    transform:translateY(50px) scale(.9);

    transition:.35s;
}

.popup-box{
    overflow-y:auto;
}

.popup-overlay.active .popup-box{

    transform:translateY(0) scale(1);
}

/*==============================
LEFT SIDE
==============================*/

.popup-left{

    background:linear-gradient(135deg,#1B2A6B,#121C4A);

    color:white;

    padding:60px;
}

.popup-left h2{

    font-size:42px;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;
}

.popup-left p{

    line-height:1.8;

    opacity:.9;

    margin-bottom:35px;
}

.popup-feature{

    margin:18px 0;

    font-size:17px;
}

.popup-feature i{

    color:#F5A623;

    margin-right:12px;
}

/*==============================
RIGHT SIDE
==============================*/

.popup-right{

    padding:55px;
    margin-top: 7%;
}

.input-box{

    position:relative;

    margin-bottom:20px;
}

.input-box i{

    position:absolute;

    left:18px;

    top:18px;

    color:#1B2A6B;
}

.input-box input,
.input-box select{

    width:100%;

    height:55px;

    border:1px solid #ddd;

    padding-left:50px;

    border-radius:10px;

    outline:none;

    transition:.3s;
}

.input-box input:focus,
.input-box select:focus{

    border-color:#F5A623;
}

textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:10px;

    padding:15px;

    resize:none;

    outline:none;

    margin-bottom:25px;
}

textarea:focus{

    border-color:#F5A623;
}

.submit-btn{

    width:100%;

    height:55px;

    border:none;

    background:#F5A623;

    color:white;

    font-size:17px;

    border-radius:50px;

    cursor:pointer;

    transition:.35s;
}

.submit-btn:hover{

    background:#E05A0C;
}

/*==============================
CLOSE
==============================*/

.close-popup{

    position:absolute;

    top:15px;

    right:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:white;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

    font-size:18px;
}

.close-popup:hover{

    transform:rotate(180deg);
}

/*==========================
 MOBILE MENU
==========================*/

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(8px);

    visibility:hidden;

    opacity:0;

    transition:.35s;

    z-index:9999;
}

.mobile-overlay.active{

    visibility:visible;

    opacity:1;
}

/*==========================
 MENU PANEL
==========================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-380px;

    width:340px;

    max-width:90%;

    height:100vh;

    background:#ffffff;

    padding:35px;

    overflow-y:auto;

    transition:.45s ease;

    box-shadow:-15px 0 40px rgba(0,0,0,.18);

    z-index:10000;

}

.mobile-overlay.active .mobile-menu{

    right:0;
}

/*==========================
 CLOSE BUTTON
==========================*/

.close-menu{

    position:absolute;

    top:20px;

    right:20px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#F5A623;

    color:white;

    cursor:pointer;

    font-size:20px;

    transition:.35s;
}

.close-menu:hover{

    transform:rotate(180deg);
}

/*==========================
 LOGO
==========================*/

.mobile-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:45px;
}

.mobile-logo img{

    width:70px;
}

.mobile-logo h2{

    color:#1B2A6B;

    font-size:26px;

    margin-bottom:4px;

    font-family:'Playfair Display',serif;
}

.mobile-logo p{

    font-size:11px;

    color:#777;

    line-height:1.5;
}

/*==========================
 NAVIGATION
==========================*/

.mobile-nav{

    list-style:none;

    margin-bottom:45px;
}

.mobile-nav li{

    margin-bottom:18px;
}

.mobile-nav a{

    display:block;

    padding:15px 20px;

    border-radius:12px;

    color:#1B2A6B;

    font-size:17px;

    font-weight:600;

    transition:.35s;
}

.mobile-nav a:hover{

    background:#F5A623;

    color:white;

    padding-left:30px;
}

/*==========================
 CONTACT
==========================*/

.mobile-contact{

    background:#F7F5EF;

    border-radius:18px;

    padding:25px;

    margin-bottom:35px;
}

.mobile-contact h3{

    color:#1B2A6B;

    margin-bottom:18px;
}

.mobile-contact a{

    display:flex;

    align-items:center;

    gap:12px;

    margin:16px 0;

    color:#555;

    text-decoration:none;

    transition:.3s;
}

.mobile-contact a:hover{

    color:#F5A623;
}

.mobile-contact i{

    color:#F5A623;

    width:22px;
}

/*==========================
 BUTTON
==========================*/

.mobile-enroll{

    display:block;

    text-align:center;

    background:linear-gradient(135deg,#F5A623,#E05A0C);

    color:white;

    padding:18px;

    border-radius:50px;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 15px 30px rgba(245,166,35,.3);
}

.mobile-enroll:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(245,166,35,.45);
}
/*==============================
RESPONSIVE
==============================*/

@media(max-width:900px){

.popup-box{

    grid-template-columns:1fr;

    width:100%;

    max-width:100%;

    margin:0 auto;

    border-radius:20px;

}

.popup-left{

    display:none;

}

.popup-right{

    padding:30px 18px;

}

}
/* =========================
   HERO SECTION
========================= */

.hero{

    position:relative;

    min-height:100vh;
    padding-top:140px;

    display:flex;
    align-items:center;

    background:url("./images/herobanner.png")
    center center/cover no-repeat;

    overflow:hidden;

    opacity:0;
    transform:translateY(20px);
    animation:sectionFadeIn .9s ease both;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(27,42,107,.45);
}

.about,
.why-us,
.courses,
.corporate-banner,
.placements,
.testimonials,
.gallery,
.final-cta,
.footer{

    opacity:0;
    transform:translateY(20px);
    animation:sectionFadeIn .9s ease both;
    animation-delay:.1s;
}

.hero-content{

    position:relative;
    z-index:2;

    max-width:900px;

    color:#fff;
}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border:1px solid rgba(245,166,35,.4);

    color:#F5A623;

    border-radius:50px;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:25px;
}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

    animation:fadeUp 1s ease;
}

.hero h1 span{

    color:#F5A623;
}

.hero p{

    font-size:20px;

    line-height:1.8;

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:40px;
}

.btn-primary{

    background:#F5A623;

    color:white;

    padding:18px 35px;

    border-radius:50px;

    font-weight:700;

    transition:.4s;
}

.btn-primary:hover{

    transform:translateY(-5px);
}

.btn-secondary{

    border:2px solid #F5A623;

    background:#F5A623;

    color:#fff;

    padding:18px 35px;

    border-radius:50px;

    font-weight:700;

    transition:.4s;
}

.btn-secondary:hover{

    background:#E05A0C;
    color:#fff;
}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    color:white;

    font-weight:500;
}
/* =========================
   TRUST BANNER
========================= */

.trust-banner{

    background:#1B2A6B;

    border-top:1px solid rgba(255,255,255,.1);

    border-bottom:1px solid rgba(255,255,255,.1);

    padding:25px 0;
}

.trust-wrapper{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;
}

.trust-item{

    color:white;

    font-size:16px;

    font-weight:600;

    letter-spacing:1px;

    transition:.3s;
}

.trust-item:hover{

    color:#F5A623;

    transform:translateY(-3px);
}


/*==========================
TRUST LOGO SLIDER
==========================*/

.trust-banner{

    background:#ffffff;

    padding:22px 0;

    border-top:1px solid #E5E7EB;

    border-bottom:1px solid #E5E7EB;

    overflow:hidden;

}

.trust-slider{

    width:100%;

    overflow:hidden;

}

.trust-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:logoScroll 25s linear infinite;

}

.logo-item{

    width:180px;

    height:100px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 35px;

    flex-shrink:0;

}

.logo-item img{

    max-width:130px;

    max-height:60px;

    object-fit:contain;


    opacity:.75;

    transition:.35s;

}

.logo-item img:hover{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}

@keyframes logoScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

.trust-slider:hover .trust-track{

    animation-play-state:paused;

}

@media(max-width:768px){

.logo-item{

width:120px;

margin:0 20px;

}

.logo-item img{

max-width:90px;

max-height:45px;

}

}
/* =========================
   ABOUT SECTION
========================= */

.about{

    background:#F7F5EF;

    padding:120px 0;
}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.section-tag{

    color:#F5A623;

    font-weight:700;

    letter-spacing:2px;


    display:block;

    margin-bottom:20px;
}

.about-content h2{

    font-family:'Playfair Display',serif;

    font-size:48px;

    color:#1B2A6B;

    margin-bottom:25px;
}

.about-content p{

    color:#6B7280;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;
}

.about-checklist{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;
}

.about-checklist div{

    color:#121C4A;

    font-weight:500;
}
.why-us{

    background:#ffffff;

    padding:120px 0;
}

.section-title{

    font-family:'Playfair Display',serif;

    font-size:48px;

    color:#1B2A6B;

    margin-bottom:60px;

    text-align:center;
}

.section-tag{

    display:block;

    text-align:center;

    color:#F5A623;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.why-card{

    background:#fff;

    padding:40px 30px;

    border:1px solid #e5e7eb;

    border-radius:20px;

    transition:.4s;

    text-align:center;
}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.1);
}

.why-icon{

    font-size:50px;

    margin-bottom:20px;
}

.why-card h3{

    color:#1B2A6B;

    margin-bottom:15px;
}

.why-card p{

    color:#6B7280;

    line-height:1.8;
}

.courses{

    background:#F7F5EF;

    padding:120px 0;

}

.course-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.course-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    border:1px solid #E5E7EB;

    position:relative;

    overflow:hidden;

    transition:.4s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.course-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#F5A623;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.course-card:hover::before{

    transform:scaleX(1);

}

.course-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.course-card h3{

    color:#1B2A6B;

    font-size:26px;

    line-height:1.35;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;

}

.course-info{

    background:#F8FAFC;

    border-left:4px solid #F5A623;

    padding:15px;

    border-radius:10px;

    margin-bottom:20px;

}

.course-info p{

    margin:8px 0;

    color:#374151;

    font-size:15px;

}

.course-card>p{

    color:#6B7280;

    line-height:1.8;

    flex:1;

    margin-bottom:25px;

}

.course-card a{

    color:#E05A0C;

    font-weight:700;

    transition:.3s;

}

.course-card a:hover{

    color:#1B2A6B;

}

@media(max-width:992px){

    .course-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .course-grid{

        grid-template-columns:1fr;

    }

    .course-card{

        padding:28px;

    }

    .course-card h3{

        font-size:22px;

    }

}

.courses-footer{

    display:flex;

    justify-content:center;

    margin-top:40px;

}

.courses-footer .btn-secondary{

    padding:16px 40px;

}

.corporate-banner{

    position:relative;

    padding:140px 0;

    background:url("images/cpbanner2.png")
    center center/cover no-repeat;

    text-align:center;
}

.corporate-banner .overlay{

    position:absolute;

    inset:0;

    background:rgba(27,42,107,.90);
}

.corporate-content{

    position:relative;

    z-index:2;
}

.award-icon{

    font-size:70px;

    margin-bottom:20px;
}

.section-badge{

    display:inline-block;

    padding:10px 22px;

    margin-bottom:25px;

    border:1px solid rgba(245,166,35,.35);

    border-radius:50px;

    color:#F5A623;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.training-list{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    margin:45px 0;

}

.training-item{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    padding:14px 22px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.training-item:hover{

    background:#F5A623;

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(245,166,35,.35);

}

.corporate-content h2{

    color:white;

    font-family:'Playfair Display',serif;

    font-size:52px;

    margin-bottom:20px;
}

.corporate-content p{

    color:rgba(255,255,255,.85);

    max-width:800px;

    margin:auto;

    line-height:1.8;

    font-size:20px;

    margin-bottom:40px;
}

.corporate-btn{

    background:#F5A623;

    color:white;

    padding:18px 40px;

    border-radius:50px;

    font-weight:700;

    transition:.4s;
}

.corporate-btn:hover{

    background:#d99810;

    transform:translateY(-4px);
}
.placements{

    padding:120px 0;

    background:#ffffff;
}

.section-description{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

    color:#6B7280;

    line-height:1.8;
}

.placement-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-bottom:80px;
}

.stat-box{

    background:#F7F5EF;

    padding:35px;

    border-left:5px solid #F5A623;

    border-radius:15px;

    text-align:center;
}

.stat-box h3{

    font-size:42px;

    color:#1B2A6B;

    margin-bottom:10px;

    font-family:'Playfair Display',serif;
}

.company-slider{

    overflow:hidden;
}

.company-track{

    display:flex;

    gap:40px;

    animation:slide 20s linear infinite;
}

.company{

    min-width:180px;

    padding:25px;

    background:white;

    border:1px solid #e5e7eb;

    border-radius:12px;

    text-align:center;

    font-weight:700;

    color:#1B2A6B;
}

@keyframes slide{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}
.testimonials{

    background:#F7F5EF;

    padding:120px 0;
}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.testimonial-card{

    background:white;

    padding:40px;

    border-radius:20px;

    transition:.4s;

    border:1px solid #e5e7eb;
}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.stars{

    color:#F5A623;

    font-size:20px;

    margin-bottom:20px;
}

.testimonial-card p{

    color:#6B7280;

    line-height:1.9;

    margin-bottom:25px;
}

.testimonial-card h4{

    color:#1B2A6B;

    margin-bottom:5px;
}

.testimonial-card span{

    color:#6B7280;
}
.gallery{

    padding:120px 0;

    background:#ffffff;
}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.gallery-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:20px;

    transition:.5s;

    cursor:pointer;
}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 20px 50px rgba(0,0,0,.15);
}
.final-cta{

    background:linear-gradient(
    135deg,
    #1B2A6B,
    #121C4A);

    padding:120px 0;

}

.final-cta .brand-name,
.footer .brand-name{

    color:var(--white);

}

.cta-content{

    position:relative;
    z-index:2;

    text-align:center;

    position:relative;

    overflow:hidden;
}

.final-cta::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(245,166,35,.08);

    border-radius:50%;

    top:-200px;
    right:-150px;
}

.cta-content{

    position:relative;
    z-index:2;
}

.cta-badge{

    color:#F5A623;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;
}

.cta-content h2{

    color:white;

    font-size:60px;

    margin:25px 0;

    font-family:'Playfair Display',serif;
}

.cta-content p{

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin:auto;

    line-height:1.8;

    margin-bottom:40px;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;
}

.cta-btn-primary{

    background:#F5A623;

    color:white;

    padding:18px 40px;

    border-radius:50px;

    font-weight:700;
}

.cta-btn-secondary{

    border:2px solid white;

    color:white;

    padding:18px 40px;

    border-radius:50px;
}
.footer{

    background:#0c153d;

    color:white;

    padding-top:80px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:50px;
}

.footer-logo{

    width:90px;

    margin-bottom:20px;
}

.footer-col h3{

    margin-bottom:15px;
}

.footer-col h4{

    margin-bottom:20px;

    color:#F5A623;
}

.footer-col p{

    color:#c8d0e7;

    line-height:1.8;

    margin-bottom:10px;
}

.footer-col ul{

    list-style:none;
}

.footer-col ul li{

    margin-bottom:12px;
}

.footer-col ul li a{

    color:#c8d0e7;

    transition:.3s;
}

.footer-col ul li a:hover{

    color:#F5A623;
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    padding:25px 0;

    color:#c8d0e7;
}




#topBtn{

    position:fixed;

    bottom:30px;
    right:30px;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:#F5A623;

    color:white;

    font-size:22px;

    cursor:pointer;

    z-index:999;

    display:none;

    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

@media(max-width:992px){

    .why-grid,
    .course-grid,
    .testimonial-grid,
    .placement-stats,
    .gallery-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .about-wrapper{

        grid-template-columns:1fr;
    }

    .footer-grid{

        grid-template-columns:1fr 1fr;
    }

    .hero h1{

        font-size:55px;
    }

}

@media(max-width:768px){

    .why-grid,
    .course-grid,
    .testimonial-grid,
    .placement-stats,
    .gallery-grid,
    .footer-grid{

        grid-template-columns:1fr;
    }

    .hero{

        text-align:center;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .hero h1{

        font-size:42px;
    }

    .section-title{

        font-size:36px;
    }

    .cta-content h2{

        font-size:42px;
    }
}
/*==================================
PLACEMENT CELL
==================================*/

.placement-cell{

    padding:120px 0;

    background:#ffffff;

}

.placement-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.placement-card{

    background:#F7F5EF;

    padding:40px;

    border-radius:22px;

    transition:.35s;

    border:1px solid #E5E7EB;

}

.placement-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    border-color:#F5A623;

}

.placement-icon{

    width:80px;

    height:80px;

    background:#F5A623;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:36px;

    margin-bottom:25px;

}

.placement-card h3{

    color:#1B2A6B;

    font-size:24px;

    margin-bottom:18px;

    font-family:'Playfair Display',serif;

}

.placement-card p{

    color:#6B7280;

    line-height:1.9;

}

/*==================================
PLACEMENT PROCESS
==================================*/

.placement-process{

    padding:120px 0;

    background:#F7F5EF;

}

.process-wrapper{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:70px;

}

.process-step{

    background:white;

    padding:35px 20px;

    text-align:center;

    border-radius:20px;

    position:relative;

    transition:.35s;

}

.process-step:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.process-step span{

    display:flex;

    justify-content:center;

    align-items:center;

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:#1B2A6B;

    color:white;

    font-size:28px;

    font-weight:700;

}

.process-step h4{

    color:#1B2A6B;

    line-height:1.5;

    font-size:20px;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

.placement-grid{

grid-template-columns:repeat(2,1fr);

}

.process-wrapper{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.placement-grid{

grid-template-columns:1fr;

}

.process-wrapper{

grid-template-columns:1fr;

}

.placement-card{

padding:30px;

}

.process-step{

padding:30px;

}

.process-step span{

width:60px;

height:60px;

font-size:24px;

}

}

/*==================================
CERTIFICATE VERIFICATION
==================================*/

.certificate-verification{

    padding:100px 0;

    background:linear-gradient(
    135deg,
    #1B2A6B,
    #121C4A);

}

.verify-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.verify-content{

    flex:1;

}

.verify-content h2{

    color:white;

    font-size:50px;

    margin:20px 0;

    font-family:'Playfair Display',serif;

}

.verify-content p{

    color:rgba(255,255,255,.88);

    line-height:1.9;

    max-width:600px;

}

.verify-form{

    flex:1;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.verify-form form{

    background:white;

    padding:35px;

    border-radius:20px;

    display:flex;

    gap:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.verify-status,
.verify-result-card,
.verify-invalid-card{

    background:white;

    border-radius:20px;

    padding:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.verify-status{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    color:#1B2A6B;

    font-weight:600;

}

.spinner{

    width:24px;

    height:24px;

    border:3px solid rgba(27,42,107,.2);

    border-top-color:#F5A623;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{transform:rotate(360deg);}

}

.verify-result-card .status{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 14px;

    border-radius:999px;

    background:#E8F9EF;

    color:#1f8f52;

    font-weight:700;

}

.result-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:16px;

    margin-top:16px;

}

.result-grid label{

    display:block;

    color:#6b7280;

    font-size:14px;

    font-weight:600;

    margin-bottom:6px;

}

.result-grid p{

    margin:0;

    color:#111827;

    font-weight:600;

}

.result-grid .valid{

    color:#1f8f52;

}

.button-group{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:18px;

}

.view-btn,
.download-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 16px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.view-btn{

    background:#1B2A6B;

    color:white;

}

.download-btn{

    background:#F5A623;

    color:white;

}

.view-btn:hover,
.download-btn:hover{

    transform:translateY(-2px);

}

.verify-invalid-card{

    color:#b42318;

    text-align:center;

}

.verify-invalid-card i{

    font-size:28px;

    margin-bottom:10px;

}

.verify-invalid-card h3{

    margin:0 0 8px;

    color:#b42318;

}

.verify-invalid-card p{

    margin:0;

    color:#7a2b24;

}

.verify-form input{

    flex:1;

    height:60px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 20px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.verify-form input:focus{

    border-color:#F5A623;

}

.verify-form button{

    border:none;

    background:#F5A623;

    color:white;

    padding:0 30px;

    border-radius:12px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    white-space:nowrap;

}

.verify-form button:hover{

    background:#E05A0C;

    transform:translateY(-3px);

}

.verify-form i{

    margin-right:10px;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

.verify-wrapper{

flex-direction:column;

text-align:center;

}

.verify-content p{

margin:auto;

}

.verify-form{

width:100%;

}

.verify-form form{

flex-direction:column;

}

.verify-form button{

height:60px;

}

}

@media(max-width:768px){

.certificate-verification{

padding:80px 0;

}

.verify-content h2{

font-size:38px;

}

.verify-form form{

padding:25px;

}

}