/* =====================================================
   GLOBAL CSS
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1e293b;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

img{
    max-width:100%;
}

/* =====================================================
   COLORS
===================================================== */

:root{
    --primary:#0f172a;
    --secondary:#1e3a8a;
    --accent:#f59e0b;
    --white:#ffffff;
    --light:#f8fafc;
    --gray:#64748b;
    --dark:#111827;
}

/* =====================================================
   TOP HEADER
===================================================== */

/* =====================================================
   PREMIUM TOP HEADER
===================================================== */

.top-header{
    background:#020617;
    border-bottom:1px solid rgba(255,255,255,0.06);
    padding:12px 0;
}

.top-header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* LEFT */

.top-left{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.top-left a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#cbd5e1;
    font-size:14px;
    font-weight:500;
    transition:.3s ease;
}

.top-left a:hover{
    color:#f59e0b;
}

.top-left i{
    color:#f59e0b;
    font-size:14px;
}

/* DIVIDER */

.top-divider{
    width:1px;
    height:18px;
    background:rgba(255,255,255,0.12);
}

/* RIGHT */

.top-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.follow-text{
    color:#94a3b8;
    font-size:14px;
    font-weight:500;
}

/* SOCIAL */

.top-social{
    display:flex;
    align-items:center;
    gap:10px;
}

.top-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    color:white;
    font-size:14px;
    transition:.3s ease;
}

.top-social a:hover{
    background:#f59e0b;
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

    .top-header{
        display:none;
    }

}
/* =====================================================
   NAVBAR
===================================================== */
/*
.custom-navbar{
    background:rgba(15,23,42,0.95);
    backdrop-filter:blur(10px);
    padding:15px 0;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.logo{
    width:60px;
    margin-right:12px;
}

.navbar-brand{
    display:flex;
    align-items:center;
}

.logo-text h4{
    color:white;
    font-size:22px;
    margin-bottom:0;
    font-weight:700;
}

.logo-text span{
    color:#cbd5e1;
    font-size:13px;
}

.nav-link{
    color:white !important;
    font-weight:500;
    margin-left:18px;
    position:relative;
    transition:0.3s;
}

.nav-link:hover{
    color:var(--accent) !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:var(--accent);
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}

.apply-btn{
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;
    transition:0.3s;
}

.apply-btn:hover{
    transform:translateY(-3px);
}
*/


/* =====================================================
   PREMIUM NAVBAR
===================================================== */

.custom-navbar{
    background: rgba(15,23,42,0.88);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.logo-text h4{
    font-size:18px;
    margin:0;
    color:#fff;
    font-weight:700;
}

.logo-text span{
    color:#cbd5e1;
    font-size:12px;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    margin:0 10px;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#f59e0b;
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.apply-btn{
    background:#f59e0b;
    color:#fff;
    border-radius:50px;
    padding:12px 24px;
    font-weight:600;
    transition:.3s;
}

.apply-btn:hover{
    transform:translateY(-3px);
    background:#d97706;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero-section{
    background:
    linear-gradient(rgba(15,23,42,.88), rgba(15,23,42,.92)),
    url('../images/banners/hero-bg.jpg');

    background-size:cover;
    background-position:center;
    min-height:100vh;
    padding:120px 0;
    color:#fff;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-title{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-title span{
    color:#f59e0b;
}

.hero-text{
    font-size:18px;
    color:#cbd5e1;
    line-height:1.8;
    max-width:620px;
}

.hero-image{
    animation:float 4s ease-in-out infinite;
    max-width:90%;
}
.hero-buttons .btn{
    min-width:190px;
}

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
}
/* HERO STATS */

.hero-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    padding:20px 30px;
    border-radius:20px;
    text-align:center;
    min-width:140px;
}

.stat-box h3{
    color:var(--accent);
    font-size:32px;
    font-weight:700;
}

.stat-box p{
    margin:0;
    color:#e2e8f0;
}

/* =====================================================
   SECTION TITLES
===================================================== */
/*
.section-subtitle{
    color:var(--accent);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}
*/


.section-subtitle{
    display:inline-block;
    background:#fff3cd;
    color:#b8860b;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}
.section-heading{
    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin-top:10px;
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section{
    background:white;
}

.feature-card{
    background:white;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:rgba(245,158,11,0.1);
    color:var(--accent);
    font-size:28px;
    margin-bottom:20px;
}

/* =====================================================
   COURSES
===================================================== */

.courses-section{
    background:#f5f7fb;
}

.course-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    position:relative;
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.course-card img{
    height:260px;
    width:100%;
    object-fit:cover;
}

.course-content{
    padding:30px;
}

.course-duration{
    background:rgba(245,158,11,0.1);
    color:var(--accent);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.course-content h3{
    margin-top:20px;
    font-weight:700;
    color:var(--primary);
}

.course-content p{
    color:var(--gray);
    line-height:1.8;
    margin:20px 0;
}


/* =====================================================
   PREMIUM COURSE CARDS
===================================================== */

.course-card{
    background:white;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:.4s ease;
    height:100%;
}

.course-card:hover{
    transform:translateY(-10px);
}

.course-image{
    position:relative;
    overflow:hidden;
}

.course-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.4s ease;
}

.course-card:hover .course-image img{
    transform:scale(1.08);
}


.course-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#ffc107;
    color:#111;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.course-content{
    padding:28px;
}

.course-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#fff8e1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#ff9800;
    margin-bottom:20px;
}
.course-content h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.course-content p{
    font-size:15px;
    line-height:1.8;
    color:#666;
}

.course-features{
    padding:0;
    margin:25px 0;
    list-style:none;
}

.course-features li{
    margin-bottom:12px;
    font-size:15px;
    color:#444;
}

.course-features i{
    color:#28a745;
    margin-right:10px;
}

.course-info{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.info-box{
    flex:1;
    background:#f8f9fa;
    padding:18px;
    border-radius:16px;
}

.info-box span{
    font-size:13px;
    color:#888;
}

.info-box h6{
    margin-top:8px;
    font-weight:700;
    color:#111;
}

.course-card .btn{
    width:100%;
    border-radius:14px;
    padding:14px;
    font-weight:600;
    background:#111;
    border:none;
    transition:0.3s;
}

.course-card .btn:hover{
    background:#ff9800;
}



/* =====================================================
   RECRUITERS
===================================================== */

.recruiters-section{
    background:#ddc6c6;
}

.recruiter-box{
    background:#23a92d;
    border-radius:24px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:.4s ease;
}

.recruiter-box:hover{
    transform:translateY(-8px);
}

.recruiter-box img{
    max-height:60px;
    object-fit:contain;
    filter:grayscale(10%);
    opacity:.8;
    transition:.4s ease;
}

.recruiter-box:hover img{
    filter:none;
    opacity:1;
}






/* =====================================================
   VIDEO SECTION
===================================================== */

.video-section{
    background:#f8fafc;
}

.video-box{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.video-box iframe{
    width:100%;
    height:600px;
    border:none;
}

@media(max-width:768px){

    .video-box iframe{
        height:250px;
    }

}

/* =====================================================
   PLACEMENT SECTION
===================================================== */

.placement-section{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
}

.placement-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.placement-box{
    background:rgba(255,255,255,0.1);
    padding:25px;
    border-radius:20px;
    text-align:center;
    min-width:160px;
}

.placement-box h3{
    color:var(--accent);
    font-size:36px;
    font-weight:700;
}

.placement-box p{
    color:white;
    margin-top:10px;
}

.placement-image{
    max-height:500px;
}

/* =====================================================
   GALLERY
===================================================== */

.gallery-img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:25px;
    transition:0.4s;
}

.gallery-img:hover{
    transform:scale(1.05);
}

/* =====================================================
   TESTIMONIAL
===================================================== */

.testimonial-section{
    background:white;
}

.testimonial-card{
    background:#f8fafc;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    height:100%;
}

.testimonial-top{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.testimonial-top img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
}

/* =====================================================
   CTA SECTION
===================================================== */

.cta-section{
    background:linear-gradient(135deg,#1e3a8a,#0f172a);
}

.cta-box{
    background:rgba(255,255,255,0.08);
    padding:70px 40px;
    border-radius:30px;
    backdrop-filter:blur(12px);
}

.cta-box h2{
    color:white;
    font-size:48px;
    font-weight:700;
}

.cta-box p{
    color:#e2e8f0;
    margin:25px 0;
    font-size:18px;
}

/* =====================================================
   FOOTER
===================================================== */

.footer-section{
    background:#020617;
    color:white;
    padding-top:80px;
}

.footer-logo{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

.footer-logo img{
    width:70px;
    margin-right:15px;
}

.footer-text{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-social{
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    line-height:42px;
    text-align:center;
    display:inline-block;
    background:rgba(255,255,255,0.08);
    color:white;
    border-radius:50%;
    margin-right:10px;
    transition:0.3s;
}

.footer-social a:hover{
    background:var(--accent);
}

.footer-title{
    font-size:22px;
    font-weight:600;
    margin-bottom:30px;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#cbd5e1;
    transition:0.3s;
}

.footer-links a:hover{
    color:var(--accent);
    padding-left:5px;
}

.footer-contact p{
    color:#cbd5e1;
    margin-bottom:18px;
}

.footer-contact i{
    color:var(--accent);
    margin-right:10px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:50px;
    padding:25px 0;
}

.copyright-text,
.developer-text{
    color:#94a3b8;
    margin:0;
}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:white;
    border-radius:50%;
    text-align:center;
    line-height:60px;
    font-size:30px;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* =====================================================
   BACK TO TOP
===================================================== */

#backToTop{
    position:fixed;
    bottom:100px;
    right:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--accent);
    color:white;
    font-size:20px;
    cursor:pointer;
    display:none;
    z-index:999;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn-primary{
    background:var(--secondary);
    border:none;
    padding:12px 28px;
    border-radius:50px;
}

.btn-primary:hover{
    background:var(--primary);
}

.btn-warning{
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .hero-section{
        text-align:center;
        padding:100px 0 80px;
    }

    .hero-title{
        font-size:40px;
        line-height:1.3;
    }

    .hero-text{
        font-size:16px;
        margin:auto;
        max-width:100%;
    }

    .section-heading{
        font-size:34px;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
        margin-top:30px;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
        margin-top:35px;
    }

    .navbar-collapse{
        background:#0f172a;
        padding:25px;
        border-radius:24px;
        margin-top:15px;
        box-shadow:0 15px 40px rgba(0,0,0,0.2);
    }

    .navbar-nav{
        margin-top:10px;
    }

    .nav-link{
        margin:0;
        margin-bottom:6px;
    }

    .logo{
        width:50px;
        height:50px;
    }

    .logo-text h4{
        font-size:16px;
    }

    .logo-text span{
        font-size:11px;
    }

}

@media(max-width:768px){

    .hero-image{
        margin-top:40px;
    }

    .hero-buttons .btn{
        padding:14px 20px;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:34px;
    }

    .section-heading{
        font-size:28px;
    }

    .cta-box h2{
        font-size:32px;
    }

    .stat-box{
        width:100%;
    }

    .placement-box{
        width:100%;
    }

}

.page-banner{
    background:linear-gradient(rgba(15,23,42,0.85),rgba(15,23,42,0.85)), url('../images/banners/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    color:white;
}

.page-banner h1{
    font-size:56px;
    font-weight:700;
}

.contact-form-box{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #dbeafe;
}

textarea.form-control{
    height:auto;
}

.login-section{
    min-height:100vh;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
}

.login-card{
    background:white;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.error-section{
    min-height:80vh;
}

.admission-step{
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* =====================================================
   PREMIUM PLACEMENT SECTION
===================================================== */

.placement-section{
    background:
    linear-gradient(rgba(15,23,42,0.94),
    rgba(15,23,42,0.94)),
    url('../images/banners/hero-bg.jpg');

    background-size:cover;
    background-position:center;
    position:relative;
    overflow:hidden;
}

.placement-title{
    font-size:48px;
    font-weight:700;
    line-height:1.3;
}

.placement-text{
    color:#cbd5e1;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

/* FEATURES */

.placement-features{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.placement-feature{
    display:flex;
    align-items:center;
    gap:14px;
    color:white;
    font-size:16px;
    font-weight:500;
}

.placement-feature i{
    color:#f59e0b;
    font-size:20px;
}

/* STATS */

.placement-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.placement-box{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    padding:28px;
    border-radius:24px;
    min-width:170px;
    text-align:center;
    transition:0.4s ease;
}

.placement-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.12);
}

.placement-box h3{
    color:#f59e0b;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.placement-box p{
    color:#e2e8f0;
    margin:0;
    font-size:15px;
}

/* IMAGE */

.placement-image-wrapper{
    position:relative;
}

.placement-image{
    max-height:550px;
    animation:float 4s ease-in-out infinite;
    filter:drop-shadow(0 25px 50px rgba(0,0,0,0.35));
}

/* MOBILE */

@media(max-width:991px){

    .placement-title{
        font-size:36px;
    }

    .placement-section{
        text-align:center;
    }

    .placement-feature{
        justify-content:center;
    }

    .placement-stats{
        justify-content:center;
    }

}

@media(max-width:576px){

    .placement-title{
        font-size:28px;
    }

    .placement-text{
        font-size:15px;
    }

    .placement-box{
        width:100%;
    }

}

/* =====================================================
   PREMIUM GALLERY SECTION
===================================================== */

.gallery-section{
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.gallery-subtext{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:17px;
    line-height:1.8;
    margin-top:15px;
}

/* CARD */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.5s ease;
}

.gallery-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */

.gallery-img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:0.6s ease;
}

.gallery-card:hover .gallery-img{
    transform:scale(1.08);
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(to top,
    rgba(15,23,42,0.92),
    rgba(15,23,42,0.15));

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    opacity:0;
    transition:0.5s ease;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

/* CATEGORY */

.gallery-category{
    display:inline-block;
    background:#f59e0b;
    color:white;
    font-size:13px;
    font-weight:600;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:15px;
    width:max-content;
}

/* TITLE */

.gallery-overlay h4{
    color:white;
    font-size:24px;
    font-weight:700;
    margin:0;
    line-height:1.4;
}

/* MOBILE */

@media(max-width:991px){

    .gallery-img{
        height:300px;
    }

}

@media(max-width:576px){

    .gallery-img{
        height:260px;
    }

    .gallery-overlay{
        opacity:1;
        padding:20px;
    }

    .gallery-overlay h4{
        font-size:20px;
    }

}

@media(max-width:768px){

    .hero-section{
        padding-top:140px;
    }

}