/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-blue: #003366;
    --accent-gold: #d4af37;
    --light-bg: #f4f7f6;
    --white: #ffffff;
}

body {
    background-color: var(--light-bg);
    line-height: 1.6;
}

/* Navbar */
header {
    background: var(--white);
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.burger {
    display: none; /* Hide by default on desktop */
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 5px;
    transition: all 0.3s ease;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,51,102,0.7), rgba(0,51,102,0.7)), 
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #b8962e;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 80px 10%;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 20px;
}

/* Fee Page Specific Styles */
.fees-hero {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.fee-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.fee-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #eee;
}

.fee-header {
    background: var(--accent-gold);
    color: white;
    padding: 15px 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f8f9fa;
    color: var(--primary-blue);
    font-weight: 600;
}

tr:hover {
    background-color: #fffdf5;
}

.note-box {
    background: #fff4e5;
    border-left: 5px solid #ffa500;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Gallery Styles */
.section-subtitle {
    margin-bottom: 40px;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7); /* Your Primary Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid var(--accent-gold);
    padding: 5px 15px;
}

.gallery-footer {
    margin-top: 40px;
}

.btn-outline {
    padding: 10px 25px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* Tab Styling */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    cursor: pointer;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-blue);
    color: white;
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-box {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.box-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0, 51, 102, 0.9); /* Deep Blue */
    color: var(--accent-gold);
    padding: 15px;
    text-align: center;
    transition: 0.4s;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-box:hover .box-content {
    bottom: 0;
}

/* Info Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.welcome-text {
    text-align: left;
}

.btn-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

/* Notice Board Styling */
.notice-board {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #eee;
}

.notice-header {
    background: var(--primary-blue);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-header i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.notice-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 20px;
}

/* Custom Scrollbar for Notices */
.notice-content::-webkit-scrollbar {
    width: 5px;
}
.notice-content::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.notice-item {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-item .date {
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.notice-item p {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
}

.notice-footer {
    background: #f8f9fa;
    padding: 10px;
    color: #d9534f; /* Alert Red */
    font-weight: bold;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

/* Slider Container */
.slider-container {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #000;
}

.slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    color: white;
    max-width: 800px;
    padding: 20px;
    transform: translateY(20px);
    transition: 0.5s ease-out;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin: 15px 0;
}

.slide-content h1 span {
    color: var(--accent-gold);
}

/* Nav Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    border-radius: 5px;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--accent-gold);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dot Indicators */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-gold);
    width: 30px; /* Modern pill shape for active dot */
    border-radius: 10px;
}

/* --- RESPONSIVE DESIGN --- */

/* For Tablets and Small Desktops (under 1024px) */
@media screen and (max-width: 1024px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    .grid-container {
        grid-template-columns: 1fr; /* Stack Notice Board under Welcome text */
    }
}

/* For Mobile Devices (under 768px) */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden; /* Prevent side scroll */
    }

    /* Navbar Mobile */
    .nav-links {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--primary-blue);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1000;
        padding-top: 50px;
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
    }

    .nav-links a {
        color: white;
        font-size: 1.2rem;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .nav-active {
        transform: translateX(0%);
    }

    /* Slider Adjustments */
    .slider-container {
        height: 60vh; /* Shorter height for mobile */
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }

    /* Section Spacing */
    .section {
        padding: 50px 5%;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    /* Gallery Adjustments */
    .gallery-grid {
        grid-template-columns: 1fr; /* One image per row */
    }

    .gallery-tabs {
        flex-wrap: wrap; /* Wrap buttons on small screens */
    }
}

/* Burger Animation Classes */
.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 5px;
    transition: all 0.3s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@media screen and (max-width: 768px) {
    .burger {
        display: block; /* Show ONLY on mobile */
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--white); /* Changed to white or primary blue as per your preference */
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-active {
        transform: translateX(0%);
    }
}

/* Teacher Testimonials Styling */
.teacher-section {
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border-bottom: 5px solid var(--accent-gold);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.teacher-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    color: var(--accent-gold);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-content h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-content span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: bold;
    text-transform: uppercase;
}

/* Responsive adjust for mobile */
@media screen and (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

/* Desktop default (No changes needed to your existing desktop grid) */
.testimonial-slider-wrapper {
    width: 100%;
}

.swipe-indicator {
    display: none; /* Hide on desktop */
}

/* --- MOBILE SLIDER LOGIC --- */
@media screen and (max-width: 768px) {
    .testimonial-slider-wrapper {
        overflow-x: auto; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Enable snapping */
        padding: 20px 0;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }

    .testimonial-slider-wrapper::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

    .testimonial-grid {
        display: flex; /* Change from Grid to Flex for horizontal layout */
        grid-template-columns: none; 
        gap: 20px;
        padding-left: 10%; /* Shows a peek of the next card */
        padding-right: 10%;
    }

    .testimonial-card {
        max-width: 100%; /* Card takes most of the screen width */
        scroll-snap-align: center; /* Snap to center of screen */
        flex-shrink: 0; /* Prevent cards from squishing */
        margin-bottom: 10px;
    }

    .swipe-indicator {
        display: block;
        font-size: 0.8rem;
        color: var(--accent-gold);
        margin-top: 10px;
        font-weight: bold;
        animation: pulse 2s infinite;
    }
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* About Page Specifics */
.page-title-bg {
    background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?q=80&w=1600');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.grid-2.reverse {
    direction: rtl; /* Flip image to right */
}

.grid-2.reverse .about-text {
    direction: ltr; /* Reset text direction */
}

.about-image img, .principal-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--accent-gold);
}

.values-section {
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 40px 20px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: 0.3s;
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.quote-large {
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.3;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }
    .about-image img, .principal-image img {
        box-shadow: 10px 10px 0px var(--accent-gold);
    }
}

/* Main Footer Styling */
.main-footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* Links & List */
.footer-links, .contact-info {
    list-style: none;
}

.footer-links li, .contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: 0.3s;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-gold);
    opacity: 1;
    padding-left: 5px;
}

.contact-info i {
    color: var(--accent-gold);
    margin-top: 5px;
}

/* Social Media */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-logo, .social-links, .footer-links li, .contact-info li {
        justify-content: center;
    }
}

.letter-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.05;
    transition: 0.4s;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.value-card:hover .letter-bg {
    opacity: 0.15;
    transform: scale(1.1) rotate(-10deg);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
    position: relative;
}

/* Subtle line under title that expands on hover */
.value-card h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto;
    transition: width 0.3s;
}

.value-card:hover h3::after {
    width: 60px;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Gallery Page Enhancements */
.gallery-page {
    background-color: var(--light-bg);
}

/* Event Filter Tabs */
.gallery-tabs {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,51,102,0.2);
}

/* Event Cards */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85rem;
}

.event-info {
    padding: 25px;
    text-align: left;
}

.event-info h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.event-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    height: 45px; /* Keeps cards aligned */
    overflow: hidden;
}

.view-album-btn {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.view-album-btn:hover {
    gap: 12px;
    color: var(--accent-gold);
}

/* Accent text for title */
.section-title .accent {
    color: var(--accent-gold);
}

/* Detailed Gallery Styling */
.detailed-gallery {
    background: var(--white);
    padding-top: 40px;
}

.gallery-nav {
    text-align: left;
    margin-bottom: 30px;
}

.back-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--accent-gold);
}

.album-header {
    text-align: center;
    margin-bottom: 50px;
}

.album-header h1 {
    font-size: 2.8rem;
    color: var(--primary-blue);
}

.album-header .year {
    color: var(--accent-gold);
}

.album-meta {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Masonry Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 15px;
}

.photo-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.08);
}

/* Masonry Variations */
.photo-item.wide { grid-column: span 2; }
.photo-item.tall { grid-row: span 2; }

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border: 3px solid var(--white);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }
    .photo-item.wide { grid-column: span 1; }
}

.main-footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001f3f 100%);
    color: white;
    padding: 0 0 20px;
    position: relative;
    overflow: hidden;
}

/* Decorative Wave */
.footer-wave {
    width: 100%;
    line-height: 0;
    margin-bottom: 60px;
}
.footer-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}
.footer-wave .shape-fill {
    fill: var(--light-bg); /* Matches the section above it */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* Brand Column Styling */
.footer-logo h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
}
.footer-logo h3 span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--accent-gold);
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 20px 0;
    opacity: 0.8;
}

/* Social Links - Glassmorphism */
.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.4s;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-5px) rotate(8deg);
}

/* Icons & Info */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.15); /* Tinted Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Footer Links Hover effect */
.footer-links li a {
    position: relative;
    padding-left: 0;
    transition: 0.3s;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--accent-gold);
    transition: 0.3s;
}

.footer-links li a:hover {
    padding-left: 25px;
    color: var(--accent-gold);
}

.footer-links li a:hover::before {
    left: 0;
    opacity: 1;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    font-size: 0.85rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo, .social-links, .contact-info li {
        justify-content: center;
    }
    .bottom-flex {
        flex-direction: column;
        gap: 10px;
    }
}

/* Documents Section Styling */
.docs-section {
    background-color: var(--light-bg);
}

.docs-header {
    text-align: center;
    margin-bottom: 50px;
}

.docs-header .badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.docs-header h2 .accent {
    color: var(--accent-gold);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.doc-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.doc-item:hover {
    transform: scale(1.03);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.1);
}

.doc-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.doc-item:hover .doc-icon {
    background: var(--accent-gold);
    color: var(--primary-blue);
}

.doc-text h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.doc-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.docs-footer-note {
    margin-top: 40px;
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-gold);
    display: inline-block;
    width: 100%;
    max-width: 800px;
}

.docs-footer-note p {
    margin: 0;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Wrapper */
.contact-wrapper {
    background: var(--light-bg);
    padding: 100px 0;
}

/* Inquiry Form Card */
.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.08);
    position: relative;
    overflow: hidden;
}

.card-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.card-header .accent {
    color: var(--accent-gold);
}

/* Modern Form Styling */
.modern-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.05);
    outline: none;
}

/* Submit Button Animation */
.submit-btn {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Sidebar Info Cards */
.info-item-card {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: 0.4s;
    border-left: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.info-item-card:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.text-box h4 {
    color: var(--primary-blue);
    margin-bottom: 3px;
    text-align: left;
}

.text-box p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    text-align: left;
}

/* Map Section Detail */
.map-section {
    position: relative;
    line-height: 0;
}

.map-overlay-edge {
    position: absolute;
    top: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, var(--light-bg), transparent);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px 20px;
    }
}


/* About Us Hero Styling */
.about-hero {
    position: relative;
    height: 60vh; /* Slightly shorter than home hero, taller than fee hero */
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb .current {
    opacity: 0.6;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-hero h1 .accent-text {
    color: var(--accent-gold);
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.5rem; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.5rem; }
}
/* Lightbox Navigation Styling */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 35px;
    padding: 20px 15px;
    cursor: pointer;
    z-index: 2100;
    transition: 0.3s;
    border-radius: 5px;
}

.lb-nav:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
}

.prev { left: 20px; }
.next { right: 20px; }

.lb-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Ensure buttons are visible on mobile */
@media (max-width: 768px) {
    .lb-nav {
        padding: 15px 10px;
        font-size: 25px;
    }
}