* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8fbff;
}

html {
    scroll-behavior: smooth;
}

/* Navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
}

.navbar.sticky {
    height: 70px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
}

.logo h2 {
    color: #1E88E5;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

.nav-links a:hover {
    color: #1E88E5;
}

.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media(max-width:768px) {

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Hero */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 650px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #FFC107;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: .3s;

}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, .4);
}

.popup-box {
    width: 500px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    animation: popup .5s ease;
}

@keyframes popup {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.popup-box h2 {
    color: #1E88E5;
    margin-bottom: 15px;
}

.popup-box p {
    line-height: 1.8;
    color: #555;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    background: #1E88E5;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 30px;
    cursor: pointer;
}

/* Responsive */

@media(max-width:768px) {

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-content {
        left: 5%;
        right: 5%;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .popup-box {
        width: 90%;
    }
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Common Section */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    color: #1E88E5;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

.light h2,
.light p {
    color: #fff;
}


/* Highlights */

.highlights {
    padding: 100px 8%;
    background: #fff;
}

.highlight-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-card {
    background: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.highlight-card h3 {
    color: #1E88E5;
    font-size: 40px;
    margin-bottom: 10px;
}


/* Facilities */

.facilities {
    padding: 100px 8%;
    background: #f8fbff;
}

.facility-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .4s;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.facility-card i {
    font-size: 40px;
    color: #1E88E5;
    margin-bottom: 20px;
}

.facility-card h3 {
    margin-bottom: 10px;
}

.facility-card p {
    color: #666;
    line-height: 1.7;
}


/* Achievements */

.achievements {
    padding: 90px 8%;
    background: #1E88E5;
}

.achievement-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.achievement-box {
    text-align: center;
    color: #fff;
}

.achievement-box h3 {
    font-size: 55px;
    margin-bottom: 10px;
}


/* Responsive */

@media(max-width:992px) {

    .highlight-container,
    .achievement-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .highlight-container,
    .facility-container,
    .achievement-container {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }
}

/* Announcement + Gallery */

.announcement-gallery {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: #fff;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading h2 {
    color: #1E88E5;
    font-size: 36px;
    position: relative;
}

.section-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70px;
    height: 4px;
    background: #FFC107;
}

/* Announcements */

.announcement-box {
    height: 500px;
    overflow: hidden;
    background: #f8fbff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.announcement-item {
    padding: 20px;
    margin-bottom: 15px;
    background: #fff;
    border-left: 5px solid #1E88E5;
    border-radius: 10px;
}

.announcement-item span {
    display: block;
    color: #2f08f2;
    font-weight: 600;
    margin-bottom: 8px;
}

.announcement-item p {
    color: #555;
    line-height: 1.7;
}

.announcement-item {
    position: relative;
}

.latest-badge {
    position: absolute;
    right: 15px;
    top: 15px;
    background: #1E88E5;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: .4s;
}

.gallery-grid img:hover {
    transform: scale(1.08);
}

/* Responsive */

@media(max-width:992px) {

    .announcement-gallery {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid img {
        height: 160px;
    }
}

@media(max-width:500px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 28px;
    }
}

/* News & Events */

.news-events {
    padding: 100px 8%;
    background: #f8fbff;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.news-image {
    position: relative;
}

.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-image span {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1E88E5;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    margin-bottom: 15px;
    color: #222;
}

.news-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-content a {
    text-decoration: none;
    color: #1E88E5;
    font-weight: 600;
}

.news-content a:hover {
    color: #0d6efd;
}

@media(max-width:992px) {

    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .news-container {
        grid-template-columns: 1fr;
    }
}

.admission-cta {
    padding: 100px 8%;
    background: linear-gradient(135deg,
            #1E88E5,
            #42A5F5);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.apply-btn,
.enquire-btn {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
}

.apply-btn {
    background: #FFC107;
    color: #222;
}

.enquire-btn {
    background: #fff;
    color: #1E88E5;
}

@media(max-width:768px) {

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */

footer {
    background: #0f172a;
    color: #fff;
}

.footer-container {
    padding: 70px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-box h3 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-box p {
    line-height: 1.8;
    color: #d1d5db;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #d1d5db;
    transition: .3s;
}

.footer-box ul li a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #1E88E5;
    transform: translateY(-4px);
}

.copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #d1d5db;
}

@media(max-width:992px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* 
   ABOUT PAGE
 */

 
 /* About Hero Banner */
 
 .about-hero {
     position: relative;
    height: 500px;
    margin-top: 80px;
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.about-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
}

.about-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-content p {
    font-size: 22px;
    max-width: 700px;
    margin: auto;
}

.about-content .hero-btn {
    margin-top: 25px;
}

@media(max-width:768px) {
    
    .about-hero {
        height: 350px;
    }
    
    .about-content h1 {
        font-size: 38px;
    }
    
    .about-content p {
        font-size: 18px;
    }
}

/* About Hero */
.about-section {
    padding: 100px 8%;
    background: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.about-text h2 {
    color: #1E88E5;
    font-size: 40px;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.quick-stats {
    padding: 60px 8%;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: #f8fbff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.stat-card h3 {
    color: #1E88E5;
    font-size: 40px;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
}

/* School History */

.about-history {
    padding: 100px 8%;
    background: #f8fbff;
}

.history-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.history-content p {
    font-size: 18px;
    color: #555;
    line-height: 2;
}

/* Vision Mission */

.vision-mission {
    padding: 100px 8%;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vision-card {
    background: #fff;
    padding: 45px 35px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.vision-card:hover {
    transform: translateY(-10px);
}

.vision-card i {
    font-size: 50px;
    color: #1E88E5;
    margin-bottom: 20px;
}

.vision-card h3 {
    margin-bottom: 15px;
    color: #222;
}

.vision-card p {
    color: #666;
    line-height: 1.8;
}

/* Principal Section */

.principal-section {
    padding: 100px 8%;
    background: #f8fbff;
}

.principal-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
}

.principal-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.principal-container p {
    color: #555;
    line-height: 2;
    margin-bottom: 15px;
}

/* Core Values */

.core-values {
    padding: 100px 8%;
    background: #fff;
}

/* Why Choose Us */

.why-us {
    padding: 100px 8%;
    background: #f8fbff;
}

.why-us ul {
    max-width: 800px;
    margin: auto;
    list-style: none;
}

.why-us ul li {
    background: #fff;
    padding: 18px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #1E88E5;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    color: #555;
    font-weight: 500;
}

/* Responsive */

@media(max-width: 992px) {

    .about-container,
    .principal-container,
    .vision-mission,
    .facility-container,
    .achievement-container,
    .quick-stats {
        grid-template-columns: 1fr;
    }

    .principal-container {
        text-align: center;
    }
}

@media(max-width: 768px) {

    .about-content h1 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 18px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .history-content p {
        font-size: 16px;
    }
}

/* 
   EDUCATIONAL PHILOSOPHY
 */

.philosophy {
    padding: 100px 8%;
    background: #fff;
    text-align: center;
}

.philosophy p {
    max-width: 900px;
    margin: auto;
    color: #555;
    line-height: 2;
    font-size: 18px;
}

/* 
   AWARDS & RECOGNITION
 */

.awards {
    padding: 100px 8%;
    background: #f8fbff;
}

/* 
   TESTIMONIALS
*/

.testimonials {
    padding: 100px 8%;
    background: #fff;
}

.testimonials .facility-card {
    text-align: left;
}

.testimonials .facility-card p {
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonials .facility-card h4 {
    color: #1E88E5;
    font-size: 16px;
}

/* 
   CAMPUS LIFE
 */

.campus-life {
    padding: 100px 8%;
    background: #f8fbff;
}

.campus-life .gallery-grid {
    margin-top: 40px;
}

.campus-life .gallery-grid img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .4s;
}

.campus-life .gallery-grid img:hover {
    transform: translateY(-8px);
}

/* ACTIVITIES SECTION */
 .activities {
    padding: 100px 8%;
    background: #fff;
}

/* 
   EXTRA ANIMATIONS
 */

.vision-card,
.highlight-card,
.facility-card {
    transition: all .4s ease;
}

.vision-card:hover,
.highlight-card:hover,
.facility-card:hover {
    transform: translateY(-10px);
}

/* 
   RESPONSIVE
 */

@media(max-width:768px) {

    .philosophy p {
        font-size: 16px;
    }

    .campus-life .gallery-grid img {
        height: 220px;
    }

    .testimonials .facility-card {
        text-align: center;
    }
}

/*academics*/

.fee-structure {
    padding: 100px 8%;
    background: #fff;
}

.fee-table {
    max-width: 900px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 25px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.fee-head {
    background: #1E88E5;
    color: #fff;
    font-weight: 600;
}

.fee-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

/*Admission*/

/* ===================================
   ADMISSION PAGE
=================================== */

/* Hero Section */

.admission-hero {
    height: 70vh;
    margin-top: 80px;
    background: linear-gradient(rgba(30,136,229,.75),
                rgba(30,136,229,.75)),
                url("images/admission-banner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.admission-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
}

.admission-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

/* Admission Process */

.admission-process {
    padding: 100px 8%;
    background: #fff;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    background: #f8fbff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: .4s;
}

.step:hover {
    transform: translateY(-8px);
}

.step span {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: #1E88E5;
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 10px;
    color: #222;
}

.step p {
    color: #666;
    line-height: 1.7;
}

/* Eligibility */

.eligibility {
    padding: 100px 8%;
    background: #f8fbff;
}

.eligibility-box {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.eligibility-box ul {
    list-style: none;
}

.eligibility-box li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.eligibility-box li:last-child {
    border-bottom: none;
}

/* Fee Structure */

.fee-structure {
    padding: 100px 8%;
    background: #fff;
}

.fee-structure table {
    width: 100%;
    max-width: 900px;
    margin: auto;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.fee-structure th {
    background: #1E88E5;
    color: #fff;
    padding: 18px;
}

.fee-structure td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.fee-structure tr:nth-child(even) {
    background: #f8fbff;
}

/* Documents */

.documents {
    padding: 100px 8%;
    background: #f8fbff;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.doc-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .3s;
}

.doc-card:hover {
    transform: translateY(-8px);
}

/* FAQ */

.faq {
    padding: 100px 8%;
    background: #fff;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 20px;
    background: #f8fbff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #1E88E5;
}

.faq-item h3 {
    margin-bottom: 10px;
    color: #222;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Responsive */

@media(max-width:992px) {

    .process-container,
    .document-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admission-content h1 {
        font-size: 45px;
    }
}

@media(max-width:768px) {

    .process-container,
    .document-grid {
        grid-template-columns: 1fr;
    }

    .admission-content h1 {
        font-size: 34px;
    }

    .admission-content p {
        font-size: 18px;
    }

    .eligibility-box,
    .faq-item {
        padding: 25px;
    }

    .fee-structure {
        overflow-x: auto;
    }
}

/* Gallery Hero */

.gallery-hero {
    height: 60vh;
    margin-top: 80px;
    background: linear-gradient(rgba(0,0,0,.55),
                rgba(0,0,0,.55)),
                url("images/gallery/gallery-banner.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.gallery-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
}

.gallery-content p {
    font-size: 20px;
}

/* Category Buttons */

.gallery-categories {
    padding: 50px 8%;
    text-align: center;
    background: #fff;
}

.gallery-categories button {
    padding: 12px 25px;
    border: none;
    background: #f1f5f9;
    margin: 8px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.gallery-categories .active,
.gallery-categories button:hover {
    background: #1E88E5;
    color: #fff;
}

/* Gallery Grid */

.gallery-page {
    padding: 0 8% 100px;
}

.gallery-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.gallery-page .gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    transition: .4s;
    cursor: pointer;
}

.gallery-page .gallery-grid img:hover {
    transform: scale(1.05);
}

/* Event Highlights */

.event-highlights {
    padding: 100px 8%;
    background: #f8fbff;
}

.event-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-card h3 {
    padding: 20px;
    text-align: center;
}

/* Videos */

.video-gallery {
    padding: 100px 8%;
    background: #fff;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.video-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 20px;
}

/* Responsive */

@media(max-width:992px){

    .gallery-page .gallery-grid,
    .event-container,
    .video-container{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px){

    .gallery-content h1{
        font-size:40px;
    }

    .gallery-page .gallery-grid,
    .event-container,
    .video-container{
        grid-template-columns:1fr;
    }

    .gallery-page .gallery-grid img{
        height:220px;
    }

    .video-container iframe{
        height:250px;
    }
}