*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Segoe UI,Arial,sans-serif;

    background:var(--light);

    color:var(--text);

}

.container{

    width:min(100% - 40px,var(--container));

    margin:auto;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}
/* ===========================
   NAVBAR
=========================== */

.top-header{

    background:#ffffff;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

}

.nav-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:80px;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:60px;

    height:60px;

    object-fit:contain;

}

.logo-text h2{

    font-size:24px;

    color:var(--primary);

}

.logo-text span{

    font-size:13px;

    color:#666;

}

.desktop-menu{

    display:flex;

    gap:30px;

}

.desktop-menu a{

    font-weight:600;

    transition:.3s;

}

.desktop-menu a:hover{

    color:var(--primary);

}

.admission-btn{

    background:var(--secondary);

    color:#fff;

    padding:12px 22px;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.admission-btn:hover{

    transform:translateY(-2px);

}
.footer{
    background:#111827;
    color:#fff;
    padding:40px 0;
    text-align:center;
}

.footer p{
    margin:8px 0;
}
/* ===========================
   STATS SECTION
=========================== */

.stats-section{

    background:#111827;

    padding:35px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:20px;

}

.stat-card{

    text-align:center;

    color:#fff;

}

.stat-card h2{

    font-size:34px;

    color:#D4AF37;

    margin-bottom:8px;

}

.stat-card p{

    font-size:15px;

    color:#d1d5db;

}
/*=========================================
    ABOUT SECTION
=========================================*/

.about-section{
    padding:80px 0;
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:35px;
    align-items:center;
}

.section-tag{
    display:inline-block;
    color:#7B1113;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
    letter-spacing:1px;
}

.about-left h2{
    font-size:42px;
    line-height:1.2;
    color:#111827;
    margin-bottom:20px;
}

.about-left p{
    color:#6B7280;
    line-height:1.8;
    margin-bottom:25px;
}

.about-center img{

    width:100%;
    height:420px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.about-right h3{

    margin-bottom:25px;

    color:#111827;

    font-size:30px;

}

.facility-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.facility-grid div{

    background:#fff;

    border:1px solid #ececec;

    border-radius:16px;

    padding:22px;

    text-align:center;

    font-size:15px;

    transition:.3s;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

.facility-grid div:hover{

    transform:translateY(-8px);

    border-color:#7B1113;

    cursor:pointer;

}
/*=========================================
INFO SECTION
=========================================*/

.info-section{
    padding:80px 0;
    background:#F8FAFC;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.info-card,
.admission-card{

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.info-card:hover,
.admission-card:hover{

    transform:translateY(-8px);

}

.info-card h2,
.admission-card h2{

    margin:18px 0;

    font-size:30px;

    color:#111827;

}

.news-list{

    padding-left:20px;

    margin:20px 0;

}

.news-list li{

    margin-bottom:12px;

    color:#555;

}

.admission-card{

    text-align:center;

}

.admission-card img{

    width:220px;

    margin:20px auto;

}
/*=========================================
WELCOME SECTION
=========================================*/

.welcome-section{

    padding:90px 0;

    background:#ffffff;

}

.welcome-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:center;

}

.welcome-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.welcome-content h2{

    font-size:42px;

    color:#111827;

    margin:20px 0;

}

.welcome-content p{

    color:#6b7280;

    line-height:1.9;

    margin-bottom:20px;

    font-size:16px;

}

.welcome-content .btn-primary{

    margin-top:10px;

    display:inline-block;

}
/*=========================================
GALLERY
=========================================*/

.gallery-section{

    padding:90px 0;

    background:#f8fafc;

}

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:42px;

    color:#111827;

    margin:15px 0;

}

.section-title p{

    color:#6b7280;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}