:root{
    --primary:#051644;
    --primary-dark:#03102E;

    --gold:#D9A80D;
    --gold-light:#F4E2A3;

    --white:#FFFFFF;
    --off-white:#F8F9FC;

    --text:#1A1A1A;
    --text-light:#6B7280;
}

/* ==========================
   GOOGLE FONT & RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:var(--off-white);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.7;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   COMMON SECTION
========================== */

section{
    padding:90px 0;
    position:relative;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--gold);
    font-weight:700;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:3px;
    position:relative;
}

.section-title h2{
    color:var(--primary);
    font-size:42px;
    margin-top:15px;
    font-weight:800;
    line-height:1.2;
}

.section-description{
    max-width:800px;
    margin:auto;
    text-align:center;
    color:var(--text-light);
    font-size:16px;
    line-height:1.8;
}


/* ==========================
   BUTTONS
========================== */

.btn-primary,
.btn-secondary,
.btn-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

/* ==========================
   PRIMARY BUTTON (GOLD)
========================== */

.btn-primary{
    background:var(--gold);
    color:var(--primary);
    border:none;
    font-weight:700;
}

.btn-primary:hover{
    background:transparent;
    border:2px solid var(--gold);
    color:var(--gold);
    z-index:1;
}

/* ==========================
   SECONDARY BUTTON
========================== */

.btn-secondary{
    background:transparent;
    border:2px solid var(--gold);
    color:var(--gold);
    z-index:1;
}

.btn-secondary::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:100%;
    background:var(--gold);
    transition:.4s ease;
    z-index:-1;
}

.btn-secondary:hover::before{
    width:100%;
}

.btn-secondary:hover{
    color:var(--primary);
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(217,168,13,.25);
}

/* ==========================
   LIGHT BUTTON
========================== */

.btn-light{
    background:var(--white);
    color:var(--primary);
    border:1px solid rgba(5,22,68,.08);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.btn-light:hover{
    background:var(--off-white);
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* ==========================
   BUTTON GROUP
========================== */

.btn-group{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:#051644;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-left{
    display:flex;
    gap:20px;
}

/* ==========================
   HEADER
========================== */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo a{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.logo h2{
    color:var(--primary);
    font-size:22px;
    font-weight:700;
    line-height:1.2;

    text-shadow:1px 1px var(--gold);
}

.logo span{
    color:#666;
    font-size:13px;
}

.navbar ul{
    display:flex;
    gap:30px;
}

.navbar a{
    color:#051644;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover,
.navbar a.active{
    color:#051644;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ==========================
   PAGE BANNER
========================== */

.page-banner{
    background:
    linear-gradient(
        rgba(5,22,68,.92),
        rgba(3,16,46,.92)
    ),
    url('../images/banner.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:var(--white);
    padding:100px 0;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:10px;
    color:var(--white);
}

.page-banner p{
    color:var(--gold-light);
}

/* ==========================
   CTA SECTION
========================== */

.cta{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    color:var(--white);
    text-align:center;
}

.cta h2{
    font-size:40px;
    margin-bottom:15px;
    color:var(--white);
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:25px;
    color:var(--gold-light);
}

/* ==========================
   FOOTER
========================== */

.footer{
    background:var(--primary-dark);
    color:var(--white);
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer h3{
    margin-bottom:18px;
    color:var(--gold);
    font-size:20px;
}

.footer p{
    color:rgba(255,255,255,.80);
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:rgba(255,255,255,.80);
    transition:.3s;
}

.footer ul li a:hover{
    color:var(--gold);
    padding-left:5px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.12);
    text-align:center;
    padding:20px 0;
    margin-top:50px;
    color:rgba(255,255,255,.70);
}


/* ==========================
   RESPONSIVE HEADER
========================== */

@media(max-width:991px){

    .navbar{
        display:none;
    }

    .menu-toggle{
        display:block;
        color:var(--primary);
    }

    .header .btn-primary{
        display:none;
    }

}

@media(max-width:768px){

    .top-bar .container{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .top-left{
        flex-direction:column;
        gap:5px;
    }

    .page-banner h1{
        font-size:34px;
    }

    .section-title h2{
        font-size:30px;
    }

    .cta h2{
        font-size:30px;
    }

}

/* ==========================
   HERO SECTION
========================== */

.hero{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    color:var(--white);
    padding:100px 0;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-tag{
    display:inline-block;
    background:rgba(217,168,13,.15);
    border:1px solid rgba(217,168,13,.25);
    color:var(--gold-light);
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
}

.hero-text h1{
    font-size:55px;
    line-height:1.2;
    margin-bottom:20px;
    color:var(--white);
}

.hero-text h1 span{
    color:var(--gold);
}

.hero-text p{
    color:var(--gold-light);
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-image img{
    border-radius:20px;
    border:4px solid rgba(217,168,13,.15);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

/* ==========================
   HERO RESPONSIVE
========================== */

@media(max-width:991px){

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-text h1{
        font-size:42px;
    }
}

@media(max-width:768px){

    .hero{
        padding:80px 0;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:15px;
    }
}

/* ==========================
   STATS SECTION
========================== */

.stats{
    background:var(--off-white);
    padding:80px 0;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:var(--white);
    text-align:center;
    padding:35px 20px;
    border-radius:15px;
    border-top:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.stat-box h2{
    color:var(--primary);
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.stat-box p{
    color:var(--text-light);
    font-weight:500;
}

/* Responsive */

@media(max-width:991px){
    .stats .container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .stats .container{
        grid-template-columns:1fr;
    }
}

/* ==========================
   ABOUT PREVIEW
========================== */

.about-preview{
    background:var(--white);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    border:4px solid rgba(217,168,13,.12);
    box-shadow:0 15px 35px rgba(5,22,68,.12);
}

.section-tag{
    display:inline-block;
    color:var(--gold);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.about-content h2{
    color:var(--primary);
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
}

.about-content p{
    color:var(--text-light);
    margin-bottom:20px;
    line-height:1.8;
}

.about-content ul{
    margin-bottom:25px;
}

.about-content ul li{
    padding:10px 0;
    color:var(--text);
    font-weight:500;
}

.about-content ul li::before{
    content:"✓";
    color:var(--gold);
    font-weight:700;
    margin-right:10px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-content h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .about-content h2{
        font-size:28px;
    }
}


/* ==========================
   COURSES SECTION
========================== */

.courses-preview{
    background:var(--white);
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.course-card{
    background:var(--white);
    padding:35px;
    border-radius:15px;
    border-top:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s ease;
}

.course-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.course-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:26px;
}

.course-card p{
    color:var(--text-light);
    margin-bottom:15px;
}

.course-card a{
    color:var(--gold);
    font-weight:700;
    transition:.3s;
}

.course-card a:hover{
    color:var(--primary);
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us{
    background:var(--off-white);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:var(--white);
    padding:30px;
    border-radius:15px;
    text-align:center;
    border-bottom:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.why-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.why-card p{
    color:var(--text-light);
}

/* ==========================
   ADMISSION PROCESS
========================== */

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:var(--white);
    text-align:center;
    padding:40px 20px;
    border-radius:15px;
    border-top:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s ease;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.process-card h3{
    color:var(--gold);
    font-size:48px;
    margin-bottom:10px;
    font-weight:800;
}

.process-card p{
    color:var(--primary);
    font-weight:600;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .course-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid,
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .course-grid,
    .why-grid,
    .process-grid{
        grid-template-columns:1fr;
    }
}

/* ==========================
   COURSES SECTION
========================== */

.courses-preview{
    background:var(--white);
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.course-card{
    background:var(--white);
    padding:35px;
    border-radius:15px;
    border-top:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.course-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.course-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:26px;
}

.course-card p{
    color:var(--text-light);
    margin-bottom:15px;
}

.course-card a{
    color:var(--gold);
    font-weight:700;
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us{
    background:var(--off-white);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:var(--white);
    padding:30px;
    border-radius:15px;
    text-align:center;
    border-bottom:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.why-card p{
    color:var(--text-light);
}

/* ==========================
   ADMISSION PROCESS
========================== */

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:var(--white);
    text-align:center;
    padding:40px 20px;
    border-radius:15px;
    border-top:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-card h3{
    color:var(--gold);
    font-size:48px;
    margin-bottom:10px;
    font-weight:800;
}

.process-card p{
    color:var(--primary);
    font-weight:600;
}

/* ==========================
   PRINCIPAL MESSAGE
========================== */

.principal-message{
    background:var(--white);
}



.principal-content h2{
    font-size:40px;
    color:var(--primary);
    margin:15px 0;
}

.principal-content p{
    color:var(--text-light);
    margin-bottom:18px;
}

.principal-content h4{
    color:var(--gold);
    margin-top:20px;
}

/* ==========================
   NEWS SECTION
========================== */

.news-section{
    background:var(--off-white);
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.news-card{
    background:var(--white);
    padding:30px;
    border-radius:15px;
    border-top:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.news-card span{
    color:var(--gold);
    font-size:14px;
    font-weight:700;
}

.news-card h3{
    color:var(--primary);
    margin:15px 0;
}

.news-card p{
    color:var(--text-light);
}

/* ==========================
   HOME RESPONSIVE
========================== */

@media(max-width:991px){

    .hero-content,
    .about-grid,
    .principal-grid{
        grid-template-columns:1fr;
    }

    .stats .container,
    .course-grid,
    .why-grid,
    .process-grid,
    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-text h1{
        font-size:42px;
    }

    .about-content h2,
    .principal-content h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .stats .container,
    .course-grid,
    .why-grid,
    .process-grid,
    .news-grid{
        grid-template-columns:1fr;
    }

    .hero{
        padding:80px 0;
    }

    .hero-text h1{
        font-size:34px;
    }

    .about-content h2,
    .principal-content h2{
        font-size:28px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons a{
        width:100%;
        text-align:center;
    }
}
/*abt*/
/* ==========================
   ABOUT PAGE
========================== */

.about-page{
    background:var(--white);
}

.about-page .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-page .about-image img{
    width:100%;
    border-radius:20px;
    border:4px solid rgba(217,168,13,.12);
    box-shadow:0 15px 35px rgba(5,22,68,.12);
}

.about-page .about-content h2{
    font-size:42px;
    color:var(--primary);
    margin:15px 0 20px;
}

.about-page .about-content p{
    color:var(--text-light);
    margin-bottom:18px;
}

/* ==========================
   VISION & MISSION
========================== */

.vision-mission{
    background:var(--off-white);
}

.vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.vm-card{
    background:var(--white);
    padding:40px;
    border-radius:18px;
    border-top:5px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.vm-card:hover{
    transform:translateY(-8px);
}

.vm-card h2{
    color:var(--primary);
    margin-bottom:15px;
    font-size:30px;
}

.vm-card p{
    color:var(--text-light);
}

/* ==========================
   WHY CHOOSE US PAGE
========================== */

.why-us-page{
    background:var(--white);
}

.why-us-page .why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-us-page .why-card{
    background:var(--off-white);
    padding:30px;
    border-radius:15px;
    text-align:center;
    border-bottom:4px solid var(--gold);
    transition:.4s;
}

.why-us-page .why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(5,22,68,.12);
}

.why-us-page .why-card h3{
    color:var(--primary);
    margin-bottom:12px;
}

.why-us-page .why-card p{
    color:var(--text-light);
}

/* ==========================
   PRINCIPAL MESSAGE
========================== */

.principal-message{
    background:var(--off-white);
}

.principal-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:60px;
    align-items:center;
}

.principal-image img{
    border-radius:20px;
    border:4px solid rgba(217,168,13,.12);
    box-shadow:0 15px 35px rgba(5,22,68,.12);
}

.principal-content h2{
    color:var(--primary);
    font-size:38px;
    margin:15px 0;
}

.principal-content p{
    color:var(--text-light);
    margin-bottom:15px;
}

.principal-content h4{
    color:var(--gold);
    margin-top:20px;
    font-size:22px;
}

.principal-content span:last-child{
    color:var(--primary);
    font-weight:600;
}

/* ==========================
   ACHIEVEMENTS
========================== */

.achievements{
    background:var(--white);
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.achievement-card{
    background:var(--white);
    text-align:center;
    padding:35px 20px;
    border-radius:15px;
    border-top:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.achievement-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.achievement-card h3{
    color:var(--gold);
    font-size:42px;
    margin-bottom:10px;
    font-weight:800;
}

.achievement-card p{
    color:var(--primary);
    font-weight:600;
}

/* ==========================
   ABOUT RESPONSIVE
========================== */

@media(max-width:991px){

    .about-page .about-grid,
    .principal-grid{
        grid-template-columns:1fr;
    }

    .vm-grid,
    .achievement-grid,
    .why-us-page .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-page .about-content h2,
    .principal-content h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .vm-grid,
    .achievement-grid,
    .why-us-page .why-grid{
        grid-template-columns:1fr;
    }

    .about-page .about-content h2,
    .principal-content h2{
        font-size:28px;
    }

    .vm-card,
    .achievement-card{
        padding:30px;
    }
}


/* ==========================
   COURSES PAGE
========================== */

.courses-intro{
    background:var(--white);
}

.courses-intro .section-description{
    max-width:850px;
    margin:auto;
    color:var(--text-light);
    font-size:16px;
    line-height:1.8;
}

/* ==========================
   COURSES SECTION
========================== */

.courses-section{
    background:var(--off-white);
}

.course-page-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.course-page-card{
    background:var(--white);
    padding:35px;
    border-radius:18px;
    border-top:5px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.course-page-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.course-icon{
    font-size:50px;
    margin-bottom:20px;
}

.course-page-card h2{
    color:var(--primary);
    font-size:28px;
    margin-bottom:15px;
}

.course-page-card p{
    color:var(--text-light);
    margin-bottom:20px;
}

.course-page-card ul li{
    padding:10px 0;
    color:var(--text);
    border-bottom:1px solid rgba(5,22,68,.08);
}

.course-page-card ul li:last-child{
    border-bottom:none;
}

/* ==========================
   REQUIREMENTS SECTION
========================== */

.requirements{
    background:var(--white);
}

.requirement-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.requirement-card{
    background:var(--off-white);
    padding:30px;
    border-radius:15px;
    text-align:center;
    border-bottom:4px solid var(--gold);
    transition:.4s;
}

.requirement-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(5,22,68,.12);
}

.requirement-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:26px;
}

.requirement-card p{
    color:var(--text-light);
}

/* ==========================
   COURSE FEATURES
========================== */

.course-features{
    background:var(--off-white);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-card{
    background:var(--white);
    padding:30px;
    border-radius:15px;
    text-align:center;
    border-top:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.feature-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.feature-card p{
    color:var(--text-light);
}

/* ==========================
   COURSES RESPONSIVE
========================== */

@media(max-width:991px){

    .course-page-grid,
    .requirement-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .course-page-card h2{
        font-size:24px;
    }
}

@media(max-width:768px){

    .course-page-grid,
    .requirement-grid,
    .feature-grid{
        grid-template-columns:1fr;
    }

    .course-page-card{
        padding:30px;
    }

    .course-page-card h2{
        font-size:22px;
    }

    .course-icon{
        font-size:42px;
    }
}


/* ==========================
   FACILITIES INTRO
========================== */

.facilities-intro{
    background:var(--white);
}

.facilities-intro .section-description{
    max-width:850px;
    margin:auto;
    text-align:center;
    color:var(--text-light);
    line-height:1.8;
}

/* ==========================
   FACILITIES SECTION
========================== */

.facilities-section{
    background:var(--off-white);
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.facility-card{
    background:var(--white);
    padding:35px;
    border-radius:18px;
    text-align:center;
    border-top:5px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.facility-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.facility-icon{
    font-size:50px;
    margin-bottom:18px;
}

.facility-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:24px;
}

.facility-card p{
    color:var(--text-light);
    line-height:1.7;
}

/* ==========================
   STUDENT SUPPORT
========================== */

.student-support{
    background:var(--white);
}

.support-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.support-card{
    background:var(--off-white);
    padding:30px;
    border-radius:15px;
    text-align:center;
    border-bottom:4px solid var(--gold);
    transition:.4s;
}

.support-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(5,22,68,.12);
}

.support-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:22px;
}

.support-card p{
    color:var(--text-light);
}

/* ==========================
   CAMPUS HIGHLIGHTS
========================== */

.campus-highlights{
    background:var(--off-white);
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.highlight-card{
    background:var(--white);
    padding:30px;
    border-radius:15px;
    text-align:center;
    border-top:4px solid var(--gold);
    box-shadow:0 8px 25px rgba(5,22,68,.08);
    transition:.4s;
}

.highlight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(5,22,68,.15);
}

.highlight-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.highlight-card p{
    color:var(--text-light);
}

/* ==========================
   FACILITIES RESPONSIVE
========================== */

@media(max-width:991px){

    .facility-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .support-grid,
    .highlight-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .facility-grid,
    .support-grid,
    .highlight-grid{
        grid-template-columns:1fr;
    }

    .facility-card,
    .support-card,
    .highlight-card{
        padding:28px;
    }

    .facility-icon{
        font-size:42px;
    }

    .facility-card h3{
        font-size:22px;
    }
}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section{
    background:var(--white);
}

.contact-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    align-items:start;
}

/* ==========================
   CONTACT INFO
========================== */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-card{
    background:var(--off-white);
    padding:25px;
    border-radius:15px;
    border-left:5px solid var(--gold);
    box-shadow:0 5px 15px rgba(5,22,68,.06);
}

.info-card h3{
    color:var(--primary);
    margin-bottom:10px;
    font-size:20px;
}

.info-card p{
    color:var(--text-light);
    line-height:1.7;
}


/* ==========================
   CONTACT FORM
========================== */

.contact-form{
    background:var(--white);
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(5,22,68,.08);
}

.form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid rgba(5,22,68,.12);
    border-radius:10px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    color:var(--text);
    background:var(--white);
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 4px rgba(217,168,13,.12);
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/* ==========================
   MAP SECTION
========================== */

.map-section{
    background:var(--off-white);
}

.map-box{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(5,22,68,.08);
}

.map-box iframe{
    display:block;
    width:100%;
}

/* ==========================
   FAQ SECTION
========================== */

.faq-section{
    background:var(--white);
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.faq-card{
    background:var(--off-white);
    padding:30px;
    border-radius:15px;
    border-left:4px solid var(--gold);
    transition:.4s;
}

.faq-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(5,22,68,.12);
}

.faq-card h3{
    color:var(--primary);
    font-size:20px;
    margin-bottom:15px;
}

.faq-card p{
    color:var(--text-light);
    line-height:1.7;
}

/* ==========================
   CONTACT RESPONSIVE
========================== */

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .faq-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .faq-grid{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:25px;
    }

    .info-card,
    .faq-card{
        padding:25px;
    }
}

/* ==========================
   BACK TO TOP BUTTON
========================== */

#topBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:var(--white);
    font-size:22px;
    cursor:pointer;
    display:none;
    z-index:9999;
    box-shadow:0 10px 25px rgba(5,22,68,.25);
    transition:.3s;
}

#topBtn:hover{
    background:var(--gold);
    color:var(--primary);
    transform:translateY(-4px);
}

/* ==========================
   SCROLLED HEADER
========================== */

.header.scrolled{
    background:var(--white);
    box-shadow:0 5px 20px rgba(5,22,68,.12);
}