        
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Poppins', sans-serif; min-height: 200vh; background-color: #fcfcfc; }
/* ===========intro */



        /* --- FIXED HEADER --- */
        .site-header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            padding: 25px 0 15px 0;
            background: #ffffff;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- BRANDING --- */
        .branding-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 18px;
            transition: all 0.5s ease;
        }

        .school-logo-main {
            height: 88px;
            width: auto;
            filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.1));
            transition: all 0.5s ease;
        }

        .shine-text {
            font-family: 'Playfair Display', serif;
            font-size: 30px; 
            font-weight: bold;
            letter-spacing: 4px;
            text-decoration: none; 
            display: inline-block;
            background: linear-gradient(to right, #c05d2e 0%, #c05d2e 40%, #ffffff 50%, #c05d2e 60%, #c05d2e 100%);
            background-size: 200% auto;
            color: transparent; 
            -webkit-background-clip: text; 
            background-clip: text;
            animation: shine 4s linear infinite; 
            transition: all 0.5s ease;
        }

        @keyframes shine { to { background-position: 200% center; } }

        /* --- NAVIGATION --- */
        .nav { display: flex; list-style: none; align-items: center; gap: 8px; }
        .nav > a, .nav-item > a {
            text-decoration: none; color: #1a2a47;
            font-weight: 700; 
            font-size: 15px; 
            padding: 12px 18px; text-transform: uppercase;
            position: relative; transition: 0.3s;
        }
        .nav a:hover, .nav a.active { color: #f39c12; }

        /* --- HORIZONTAL MEGA DROPDOWN --- */
        .nav-item { position: static; } 
        .mega-dropdown {
            position: absolute;
            top: 100%; left: 50%;
            transform: translateX(-50%) translateY(30px);
            width: 1000px; 
            background: #ffffff;
            display: grid;
            grid-template-columns: 1fr 3fr; /* Balanced side panel */
            border-radius: 20px;
            box-shadow: 0 40px 80px rgba(0,0,0,0.18);
            overflow: hidden;
            opacity: 0; visibility: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 100;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .mega-parent:hover .mega-dropdown {
            opacity: 1; visibility: visible;
            transform: translateX(-50%) translateY(15px);
        }

        /* Side-Panel (Horizontal Title) */
        .mega-left { 
            background: #1a2a47; 
            padding: 40px 30px; 
            display: flex; 
            flex-direction: column;
            justify-content: flex-start; /* Title at the top */
            align-items: flex-start;
            color: white; 
        }
        
        .mega-left h2 { 
            font-size: 24px; 
            color: #f39c12; 
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
        }

        .mega-left h2::after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: #ffffff;
            margin-top: 8px;
        }

        .mega-left p {
            font-size: 14px;
            opacity: 0.7;
            line-height: 1.6;
            font-weight: 300;
        }

        /* Link Section */
        .mega-right { padding: 50px; background: white; }
        .mega-right h3 { 
            font-size: 14px; 
            color: #888; 
            text-transform: uppercase; 
            letter-spacing: 1px;
            margin-bottom: 25px; 
            border-bottom: 1px solid #eee; 
            padding-bottom: 10px; 
        }
        .mega-right ul { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 20px; 
            list-style: none; 
        }

        .mega-right li a { 
            color: #1a2a47 !important; 
            font-size: 18px; 
            font-weight: 600; 
            display: flex; 
            align-items: center; 
            gap: 15px; 
            transition: 0.3s; 
            text-decoration: none;
        }
        .mega-right li a i { color: #f39c12; font-size: 16px; opacity: 0.8; } 
        .mega-right li a:hover { color: #c05d2e !important; transform: translateX(8px); }

        /* --- SCROLLED STATE --- */
        .site-header.scrolled { background: #8B0000; padding: 10px 0; }
        .site-header.scrolled .school-logo-main { height: 50px; }
        .site-header.scrolled .shine-text {
            font-size: 36px;
            background: linear-gradient(to right, #ffd700 0%, #ffd700 40%, #ffd700 60%, #ffd700 100%);
            -webkit-background-clip: text;
        }
        .site-header.scrolled .nav > a, .site-header.scrolled .nav-item > a { color: #ffffff; }

        .icons { margin-left: 20px; font-size: 22px; cursor: pointer; color: #1a2a47; }
        .site-header.scrolled .icons { color: white; }



        /* menu======= */
        /* Trigger Button */
    .mmet-open-btn {
        position: fixed;
       
        right: 30px;
        padding: 15px 35px;
        background: linear-gradient(135deg, #003366 0%, #001a33 100%);
        color: #ffffff;
        border: none;
        border-radius: 50px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        letter-spacing: 1px;
        cursor: pointer;
        z-index: 100;
        
        display: flex;
        align-items: center;
        gap: 10px;
        transition: 0.3s;
    }
    .mmet-open-btn:hover { transform: scale(1.05); background: #004080; }

    /* Overlay */
    .mmet-mega-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 26, 51, 0.9);
        backdrop-filter: blur(10px);
        display: none; /* Controlled by JS */
        z-index: 1000;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Main Card */
    .mmet-mega-card {
        width: 100%;
        max-width: 1300px;
        height: 85vh;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 30px;
        display: flex;
        overflow: hidden;
        position: relative;
        box-shadow: 0 25px 50px rgba(0,0,0,0.5);
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* Navigation Area */
    .mmet-nav-content {
        flex: 1;
        padding: 50px;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .mmet-menu-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        border-bottom: 2px solid #eee;
        padding-bottom: 20px;
    }

    .mmet-logo-text { font-size: 35px; font-weight: 800; color: #003366; margin: 0; }
    .mmet-gold-span { color: #FFD700; }

    .mmet-close-icon { font-size: 35px; cursor: pointer; color: #888; transition: 0.3s; }
    .mmet-close-icon:hover { color: #ff0000; transform: rotate(90deg); }

    /* Grid */
    .mmet-links-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .mmet-col-head {
        color: #003366;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .mmet-col-head i { color: #FFD700; font-size: 18px; }

    .mmet-link-col a {
        display: block;
        text-decoration: none;
        color: #444444;
        font-size: 16px;
        margin-bottom: 12px;
        transition: 0.3s;
        font-weight: 500;
    }
    .mmet-link-col a:hover { color: #003366; padding-left: 10px; font-weight: 700; }

    .mmet-admission-link { color: #003366 !important; font-weight: 800 !important; }
    .mmet-home-link { border-top: 1px solid #ddd; padding-top: 10px; margin-top: 10px; }

    /* Sidebar (Phyo) */
    .mmet-phyo-sidebar {
        width: 400px;
        background: linear-gradient(135deg, #003366 0%, #001a33 100%);
        padding: 40px;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .mmet-phyo-photo-container {
        width: 100%;
        height: 250px;
        border-radius: 20px;
        overflow: hidden;
        border: 4px solid rgba(255,255,255,0.1);
        position: relative;
    }
    .mmet-campus-img { width: 100%; height: 100%; object-fit: cover; border: none; }

    .mmet-photo-caption {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: #FFD700;
        color: #003366;
        padding: 5px 15px;
        border-radius: 10px;
        font-weight: 800;
        font-size: 12px;
    }

    .mmet-phyo-info { margin-top: 30px; }
    .mmet-contact-title { font-size: 18px; color: #FFD700; margin-bottom: 15px; margin-top: 0; }
    
    .mmet-info-item { display: flex; gap: 15px; margin-bottom: 20px; font-size: 14px; line-height: 1.5; opacity: 0.9; }
    .mmet-info-item i { color: #FFD700; font-size: 20px; }

    .mmet-admission-glow-box {
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid #FFD700;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
    }
    .mmet-glow-link { color: #FFD700; text-decoration: none; font-weight: 800; text-transform: uppercase; }

    /* Mobile */
    @media (max-width: 1000px) {
        .mmet-phyo-sidebar { display: none; }
        .mmet-links-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

/* Main Section Wrapper */
.academic-activities-section {
    /* Large top padding for clear whitespace */
    padding: 180px 8% 100px 8%; 
    
    /* Clean, sophisticated linear mesh instead of radial blobs */
    background: linear-gradient(180deg, #0f011a 0%, #1a0129 40%, #2e0249 100%);
    position: relative;
    overflow: hidden;
    font-family: Georgia, 'Times New Roman', Times, serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

/* Subtle background accent to add depth without clutter */
.academic-activities-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(175, 148, 77, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Container Layout */
.main-container {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    width: 100%;
}

/* Image Styling: Floating & Minimalist */
.image-container {
    flex: 1;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px; /* Clean, sharp professional edges */
    box-shadow: 30px 30px 0px -5px rgba(175, 148, 77, 0.2); /* Offset architectural shadow */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-container:hover img {
    box-shadow: 15px 15px 0px -5px rgba(175, 148, 77, 0.5);
    transform: scale(1.02);
}

/* Content Area */
.content-pane {
    flex: 1.2;
}

/* Title Design */
.main-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 4.5rem;
    color: #ead02ab9;
    margin-bottom: 50px;
    line-height: 1;
    font-weight: 700;
    margin-top: 2rem;
}

.main-title span {
    color: #af944d; /* Accent word */
}

/* Minimalist List Cards */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.activity-card {
    position: relative;
    padding: 30px;
    background: transparent;
    border-left: 2px solid rgba(175, 148, 77, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activity-card h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fdfbf7;
    transition: transform 0.3s ease;
}

.activity-card p {
    margin: 0;
    font-size: 1rem;
    color: #999;
    font-weight: 300;
    max-width: 90%;
}

/* Hover Interactivity */
.activity-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid #af944d;
    padding-left: 45px;
}

.activity-card:hover h3 {
    color: #af944d;
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .academic-activities-section {
        padding: 120px 5% 60px 5%;
    }
    
    .main-container {
        flex-direction: column;
        gap: 60px;
    }

    .main-title {
        font-size: 3.2rem;
        text-align: center;
    }

    .image-container img {
        height: 400px;
    }
}

/* ======================================================== */






/* ============================================================= */


/* Container Styles */
.cultural-events {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Photo Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 50px;
}

.photo-box {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 4 / 3; /* Keeps all boxes uniform size */
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents stretching */
  display: block;
  transition: transform 0.5s ease;
}

.photo-box:hover {
  transform: translateY(-5px);
}

.photo-box:hover img {
  transform: scale(1.1); /* Subtle zoom effect */
}

/* Info Section Styles */
.cultural-info {
  background: #f9f9fb;
  padding: 40px;
  border-radius: 15px;
  border-left: 5px solid #e74c3c; /* A vibrant accent color */
}

.cultural-info h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.cultural-info ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.cultural-info li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
  color: #444;
  font-size: 1rem;
}

/* Adding a custom bullet point icon */
.cultural-info li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .cultural-info ul {
    grid-template-columns: 1fr;
  }
}
/* ==================clubs */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Work+Sans:wght@300;500;600&display=swap');

.dark-clubs-section {
    background-color: #0a0a0b; /* Deep Dark Bg */
    color: #ffffff;
    padding: 80px 5%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    overflow: hidden;
}

.main-title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(to right, #00d2ff, #9ad8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.main-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 60px;
    letter-spacing: 2px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.clubs-stack {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual Club Box */
.club-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.club-trigger {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.c-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d2ff;
    margin-right: 40px;
    opacity: 0.6;
}

.c-title-group h3 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.c-title-group span {
    font-size: 0.8rem;
    color: #efdbdb;
    text-transform: uppercase;
}

.arrow-icon {
    margin-left: auto;
    font-style: normal;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

/* Expansion Logic */
.club-expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    position: relative;
}

.club-box.active {
    background: rgba(255, 255, 255, 0.07);
    border-color: #00d2ff;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

.club-box.active .club-expand-content {
    max-height: 2000px;
    opacity: 1;
    padding: 20px 40px 50px 40px;
}

.club-box.active .arrow-icon {
    transform: rotate(90deg);
    color: #00d2ff;
}

/* Content Inside */
.cancel-btn {
    position: absolute;
    top: 0;
    right: 40px;
    background: #ff3e3e;
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.text-side h4 {
    color: #00d2ff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.text-side ul {
    list-style: none;
    padding: 0;
}

.text-side ul li {
    margin-bottom: 12px;
    color: #ccc;
    position: relative;
    padding-left: 20px;
}

.text-side ul li::before {
    content: "•";
    color: #00d2ff;
    position: absolute;
    left: 0;
}

/* Photo Side - 3 Photos */
.photo-side {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.photo-side img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(30%);
    transition: 0.3s;
}

.photo-side img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; }
    .photo-side { grid-template-columns: 1fr; }
}
/* =================cultural event */
.cultural-events-page {
    background: linear-gradient(145deg, #2d0036, #5a0000); /* Kept your preferred colors */
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 4x2 Grid System */
.photo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 in a row */
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 20px;
}

/* Elegant Photo Frame Design */
.elegant-frame {
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.elegant-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.elegant-frame:hover {
    transform: rotate(2deg) scale(1.05); /* Subtle "tilted" photo effect */
    z-index: 10;
}

/* Content Section Styling */
.event-info-container {
    max-width: 900px;
    margin-top: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border-left: 5px solid #ffd700;
    color: #fff;
}

.event-info-container h2 {
    color: #ffd700;
    margin-bottom: 25px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-points {
    list-style: none;
}

.event-points li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

/* Custom Bullet Point */
.event-points li::before {
    content: "✦";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mobile Responsive: Switches to 2 per row for smaller screens */
@media (max-width: 992px) {
    .photo-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =================sports facilities */
/* Container & Background */
.sports-facilities-page {
    background: linear-gradient(145deg, #2d0036, #5a0000); 
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sports Title Styling */
.sports-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.sports-main-title {
    font-size: 1.8rem; /* Reduced size for a cleaner look */
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700; /* Bold but not overly chunky */
    letter-spacing: 1.5px;
    /* Removed text-shadow and blurry effects */
    font-family: Georgia, 'Times New Roman', Times, serif;
    border-bottom: 2px solid #ffd700; /* Replaced shadow with a clean underline */
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.sports-subtitle {
    color: #e0e0e0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: none;
    opacity: 0.9;
}

.sports-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.track-line {
    width: 120px;
    height: 4px;
    background: repeating-linear-gradient(to right, #fff 0, #fff 10px, transparent 10px, transparent 20px);
}

.sports-subtitle {
    color: #ffd700;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

/* 4x2 Grid System */
.photo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 25px;
}

/* Sporty Photo Frame */
.sport-frame {
    background: #fff;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.sport-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: 0.4s ease;
}

.sport-frame:hover {
    transform: scale(1.05) rotate(-1deg);
    border: 4px solid #ffd700;
}

.sport-frame:hover img {
    filter: grayscale(0%);
}

/* Info Box */
.sports-info-container {
    max-width: 900px;
    margin-top: 40px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 6px solid #ffd700;
    border-radius: 0 0 20px 20px;
    color: #fff;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.sports-info-container h2 {
    color: #ffd700;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.sports-points {
    list-style: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.sports-points li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

/* Checkmark Bullet */
.sports-points li::before {
    content: "✓";
    color: #00ff88; /* Success green check */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .photo-row { grid-template-columns: repeat(2, 1fr); }
    .sports-main-title { font-size: 2.5rem; }
}
/* ==============scout and guide */
/* Container & Background */
.scouts-guides-page {
    background: linear-gradient(145deg, #2d0036, #5a0000); 
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Updated Clean Title Style */
.scouts-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.scouts-main-title {
    font-size: 1.8rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    border-bottom: 2px solid #ffd700; /* Clean Gold Underline */
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.scouts-subtitle {
    color: #e0e0e0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* 4x2 Photo Grid */
.photo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 25px;
}

/* Scout Photo Frame */
.scout-frame {
    background: #fff;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.scout-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.scout-frame:hover {
    transform: translateY(-8px);
}

/* Content Box Below Photos */
.scouts-info-container {
    max-width: 900px;
    margin-top: 40px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.08); /* Transparent Glass Look */
    border-radius: 15px;
    color: #fff;
}

.scouts-info-container h2 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.scouts-points {
    list-style: none;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.scouts-points li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
}

/* Simple Bullet Point */
.scouts-points li::before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .photo-row { grid-template-columns: repeat(2, 1fr); }
}
/* =====================footer */
      /* --- MODERN FLOWING FOOTER --- */
        .footer {
            position: relative;
            background: linear-gradient(135deg, #001524 0%, #003554 100%);
            padding-top: 20px;
            color: #e0e1dd;
            margin-top: 7rem;
        }

        /* Layered Water Waves */
        .waves {
            position: absolute;
            top: -60px;
            width: 100%;
            height: 100px;
            margin-bottom: -7px; /* Fix for safari gap */
            min-height: 100px;
            max-height: 150px;
        }

        .parallax > use {
            animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
        }
        .parallax > use:nth-child(1) {
            fill: rgba(0, 53, 84, 0.7);
            animation-delay: -2s;
            animation-duration: 7s;
        }
        .parallax > use:nth-child(2) {
            fill: rgba(0, 100, 148, 0.5);
            animation-delay: -3s;
            animation-duration: 10s;
        }
        .parallax > use:nth-child(3) {
            fill: rgba(0, 161, 224, 0.3);
            animation-delay: -4s;
            animation-duration: 13s;
        }
        .parallax > use:nth-child(4) {
            fill: #001524; /* Match footer top color */
            animation-delay: -5s;
            animation-duration: 20s;
        }

        @keyframes move-forever {
            0% { transform: translate3d(-90px, 0, 0); }
            100% { transform: translate3d(85px, 0, 0); }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding: 80px 20px 40px;
            position: relative;
            z-index: 10;
        }

        .footer-col h3 {
            color: #00a1e0;
            font-size: 1.1rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #00a1e0;
        }

        .school-brand .title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .school-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: #a3b18a;
        }

        /* Modern Links */
        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #e0e1dd;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-col ul li a:hover {
            color: #00a1e0;
            transform: translateX(8px);
        }

        /* Contact Details Card Style */
        .contact-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-item {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
        }

        .contact-item b {
            color: #00a1e0;
            width: 20px;
            text-align: center;
        }

        /* Glow Social Icons */
        .socials {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .socials a {
            width: 40px;
            height: 40px;
            background: rgba(0, 161, 224, 0.1);
            border: 1px solid rgba(0, 161, 224, 0.3);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            transition: 0.4s;
        }

        .socials a:hover {
            background: #00a1e0;
            box-shadow: 0 0 15px rgba(0, 161, 224, 0.5);
            transform: translateY(-5px);
        }

        .bottom-bar {
            text-align: center;
            padding: 25px;
            background: #000b14;
            font-size: 0.8rem;
            letter-spacing: 1px;
            color: #588157;
        }
.footer-col h3 a {
    color: inherit;
    text-decoration: none;
}
        /* Mobile Responsive */
        @media (max-width: 900px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-col h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-col ul li a {
                justify-content: center;
            }
            .socials {
                justify-content: center;
            }
        }

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, video, iframe, svg, canvas {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .site-header { padding: 18px 0 12px; }
    .header-inner { padding: 0 14px; }
    .branding-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-bottom: 12px;
    }
    .school-logo-main { height: 64px; }
    .shine-text {
        font-size: clamp(20px, 4vw, 28px);
        letter-spacing: 1px;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }
    .nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
    }
    .nav > a,
    .nav-item > a {
        font-size: 12px;
        padding: 10px 12px;
    }
    .mega-dropdown {
        width: min(92vw, 720px);
        grid-template-columns: 1fr;
    }
    .mega-left,
    .mmet-phyo-sidebar {
        display: none;
    }
    .mega-right,
    .mmet-nav-content {
        padding: 24px;
    }
    .mega-right ul { grid-template-columns: 1fr; }
    .mmet-mega-card { height: min(92vh, 900px); }
    .mmet-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .site-header { padding: 14px 0 10px; }
    .nav { display: none; }
    .mmet-open-btn {
        top: 18px;
        right: 16px;
        padding: 10px 18px;
        font-size: 12px;
    }
    .mmet-mega-wrapper { padding: 12px; }
    .mmet-mega-card { border-radius: 18px; }
    .mmet-nav-content { padding: 18px; }
    .mmet-links-grid,
    .footer-content,
    .footer-grid,
    .popup-grid,
    .support-grid,
    .innovative-grid,
    .overlay-gallery,
    .classroom-row {
        grid-template-columns: 1fr !important;
    }
    [class*="wrapper"],
    [class*="container"],
    [class*="content"],
    [class*="inner"],
    [class*="layout"] {
        max-width: 100% !important;
        min-width: 0 !important;
        flex-direction: column !important;
    }
    [class*="grid"],
    [class*="row"],
    [class*="cards"],
    [class*="columns"] {
        max-width: 100% !important;
        min-width: 0 !important;
        grid-template-columns: 1fr !important;
    }
    [class*="img"],
    [class*="image"],
    [class*="photo"],
    [class*="media"],
    [class*="card"],
    [class*="box"] {
        max-width: 100% !important;
    }
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}

/* Mobile Header Order Fix */
@media (max-width: 768px) {
    .site-header {
        padding: 8px 0 6px !important;
    }

    .site-header.scrolled {
        padding: 6px 0 !important;
    }

    .header-inner {
        width: 100%;
        padding: 0 10px !important;
        align-items: center;
    }

    .branding-wrapper {
        width: 100%;
        margin-bottom: 6px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px !important;
        text-align: center;
    }

    .school-logo-main {
        height: 44px !important;
        width: auto;
    }

    .shine-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        max-width: 96vw;
        margin: 0 auto;
        font-size: clamp(14px, 3.9vw, 18px) !important;
        line-height: 1.2 !important;
        letter-spacing: 0.4px !important;
        white-space: normal !important;
    }

    .site-header.scrolled .school-logo-main {
        height: 40px !important;
    }

    .site-header.scrolled .shine-text {
        font-size: clamp(13px, 3.7vw, 17px) !important;
    }

    .nav {
        display: block !important;
        width: 100%;
        height: 0;
        margin: 0;
    }

    .nav > a,
    .nav > .nav-item {
        display: none !important;
    }

    .mmet-open-btn {
        position: absolute !important;
        top: 8px !important;
        right: 10px !important;
        left: auto !important;
        width: 36px;
        height: 36px;
        min-height: 36px;
        padding: 0 !important;
        border-radius: 50%;
        font-size: 11px !important;
        letter-spacing: 0;
        z-index: 1100;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .mmet-open-btn i {
        margin: 0;
    }
}


/* =====================================================
   Footer Responsive Overrides (Mobile-First)
   - 1 column on mobile
   - 2 columns on tablet
   - 4 columns on desktop
   ===================================================== */
.footer {
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer .waves {
    display: block;
    width: 100%;
    height: auto;
}

.footer-content {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: clamp(18px, 4vw, 40px) clamp(12px, 4vw, 28px);
    display: grid;
    grid-template-columns: 1fr !important;
    gap: clamp(14px, 3vw, 28px);
}

.footer-col,
.school-brand,
.contact-card {
    min-width: 0;
}

.footer-col ul {
    margin: 0;
    padding: 0;
}

.footer-col ul li a,
.contact-item,
.school-brand p {
    word-break: break-word;
}

.footer-col ul li a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-card {
    width: 100%;
    max-width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.socials {
    flex-wrap: wrap;
}

.bottom-bar {
    padding: 14px 10px;
    font-size: clamp(0.72rem, 2.8vw, 0.85rem);
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 767px) {
    .footer-content {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50% !important;
        transform: translateX(-50%);
    }

    .footer-col ul li a,
    .socials {
        justify-content: center;
    }

    .contact-card {
        margin-inline: auto;
        text-align: left;
        max-width: 460px;
    }

    .contact-item {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        text-align: left;
    }

    .footer-col h3::after {
        left: 0 !important;
        transform: none;
    }

    .footer-col ul li a,
    .socials {
        justify-content: flex-start;
    }
}

@media (min-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* =====================================================
   Beyond Academics Responsive Overrides (Mobile-First)
   Targets: activities, clubs, cultural, sports, scouts
   ===================================================== */
.academic-activities-section,
.dark-clubs-section,
.cultural-events-page,
.sports-facilities-page,
.scouts-guides-page {
    overflow-x: hidden;
}

.main-container,
.clubs-stack,
.content-grid,
.photo-row,
.event-info-container,
.sports-info-container,
.scouts-info-container {
    min-width: 0;
}

#clubs-part,
#arts-part,
#sports-part,
#scouts-part {
    scroll-margin-top: 90px;
}

@media (max-width: 767px) {
    .academic-activities-section {
        padding: 102px 12px 48px !important;
        min-height: auto !important;
    }

    .academic-activities-section .main-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .academic-activities-section .image-container {
        width: 100%;
        animation: none !important;
    }

    .academic-activities-section .image-container img {
        height: auto !important;
        max-height: 270px !important;
        border-radius: 14px !important;
        box-shadow: none !important;
    }

    .academic-activities-section .content-pane {
        width: 100%;
    }

    .academic-activities-section .main-title {
        margin: 0 0 16px !important;
        font-size: clamp(1.55rem, 7vw, 2rem) !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .activity-card {
        padding: 14px 12px !important;
        border-left-width: 3px !important;
    }

    .activity-card h3 {
        font-size: 1.04rem !important;
        margin-bottom: 6px !important;
    }

    .activity-card p {
        font-size: 0.92rem !important;
        max-width: 100% !important;
        line-height: 1.55 !important;
    }

    .activity-card:hover {
        padding-left: 16px !important;
    }

    .dark-clubs-section {
        padding: 50px 12px !important;
    }

    .dark-clubs-section .container {
        width: 100%;
        max-width: 100%;
    }

    .dark-clubs-section .main-title {
        font-size: clamp(1.45rem, 6.6vw, 1.9rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }

    .main-subtitle {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 22px !important;
    }

    .clubs-stack {
        gap: 10px !important;
    }

    .club-box {
        border-radius: 14px !important;
    }

    .club-trigger {
        padding: 14px 12px !important;
        gap: 10px;
    }

    .c-title-group {
        min-width: 0;
    }

    .c-num {
        margin-right: 8px !important;
        font-size: 1rem !important;
    }

    .c-title-group h3 {
        font-size: 1.02rem !important;
        letter-spacing: 0.5px !important;
        white-space: normal;
    }

    .c-title-group span {
        font-size: 0.68rem !important;
    }

    .arrow-icon {
        font-size: 1.1rem !important;
    }

    .club-box.active .club-expand-content {
        padding: 44px 12px 16px !important;
        max-height: 2600px !important;
    }

    .cancel-btn {
        top: 8px !important;
        right: 10px !important;
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
    }

    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-top: 0 !important;
    }

    .text-side h4 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }

    .text-side ul li {
        font-size: 0.92rem !important;
        margin-bottom: 8px !important;
        line-height: 1.5 !important;
    }

    .photo-side {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .photo-side img {
        height: 130px !important;
        border-radius: 10px !important;
    }

    .cultural-events-page {
        padding: 50px 12px !important;
        min-height: auto !important;
    }

    .cultural-events-page .main-title {
        font-size: clamp(1.45rem, 6.5vw, 1.9rem) !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    .title-divider {
        margin: 0 auto 18px;
    }

    .cultural-events-page .photo-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .elegant-frame {
        padding: 6px !important;
    }

    .elegant-frame img {
        height: 185px !important;
    }

    .event-info-container {
        width: 100% !important;
        margin-top: 16px !important;
        padding: 16px 14px !important;
        border-left-width: 3px !important;
        border-radius: 12px !important;
    }

    .event-info-container h2 {
        font-size: 1.25rem !important;
        margin-bottom: 12px !important;
    }

    .event-points li {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        padding-left: 18px !important;
        margin-bottom: 10px !important;
    }

    .sports-facilities-page {
        padding: 50px 12px !important;
        min-height: auto !important;
    }

    .sports-title-wrapper {
        margin-bottom: 22px !important;
    }

    .sports-main-title {
        font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
        letter-spacing: 1px !important;
    }

    .sports-divider {
        gap: 8px !important;
        margin: 8px 0 !important;
    }

    .track-line {
        width: 40px !important;
        height: 3px !important;
    }

    .icon-trophy {
        font-size: 1rem;
    }

    .sports-subtitle {
        font-size: 0.72rem !important;
        letter-spacing: 1px !important;
        line-height: 1.45 !important;
    }

    .sports-facilities-page .photo-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .sport-frame {
        padding: 6px !important;
    }

    .sport-frame img {
        height: 185px !important;
    }

    .sports-info-container {
        width: 100% !important;
        margin-top: 16px !important;
        padding: 16px 14px !important;
        border-top-width: 4px !important;
        border-radius: 0 0 12px 12px !important;
    }

    .sports-info-container h2 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .sports-points li {
        font-size: 0.92rem !important;
        padding-left: 20px !important;
        margin-bottom: 10px !important;
        line-height: 1.55 !important;
    }

    .sports-points li::before {
        font-size: 1rem !important;
    }

    .scouts-guides-page {
        padding: 50px 12px !important;
        min-height: auto !important;
    }

    .scouts-title-wrapper {
        margin-bottom: 22px !important;
    }

    .scouts-main-title {
        font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
        letter-spacing: 1px !important;
    }

    .scouts-subtitle {
        font-size: 0.74rem !important;
        line-height: 1.45 !important;
    }

    .scouts-guides-page .photo-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .scout-frame {
        padding: 6px !important;
    }

    .scout-frame img {
        height: 185px !important;
    }

    .scouts-info-container {
        width: 100% !important;
        margin-top: 16px !important;
        padding: 16px 14px !important;
        border-radius: 12px !important;
    }

    .scouts-info-container h2 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .scouts-points li {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        margin-bottom: 10px !important;
        padding-left: 18px !important;
    }
}

@media (max-width: 480px) {
    .photo-side {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 768px) and (max-width: 1099px) {
    .academic-activities-section,
    .dark-clubs-section,
    .cultural-events-page,
    .sports-facilities-page,
    .scouts-guides-page {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .academic-activities-section {
        padding-top: 132px !important;
        padding-bottom: 60px !important;
        min-height: auto !important;
    }

    .academic-activities-section .main-container {
        flex-direction: column !important;
        gap: 32px !important;
    }

    .academic-activities-section .main-title {
        font-size: clamp(2.2rem, 5vw, 2.8rem) !important;
        margin: 0 0 22px !important;
        text-align: center !important;
    }

    .academic-activities-section .image-container {
        width: 100%;
        max-width: 760px;
        animation: none !important;
    }

    .academic-activities-section .image-container img {
        height: 420px !important;
        box-shadow: none !important;
    }

    .dark-clubs-section {
        padding-top: 62px !important;
        padding-bottom: 62px !important;
    }

    .clubs-stack {
        max-width: 900px !important;
    }

    .club-trigger {
        padding: 22px 24px !important;
    }

    .club-box.active .club-expand-content {
        padding: 20px 24px 28px !important;
    }

    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .photo-side {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .photo-side img {
        height: 155px !important;
    }

    .cultural-events-page .main-title {
        font-size: 2.2rem !important;
    }

    .cultural-events-page .photo-row,
    .sports-facilities-page .photo-row,
    .scouts-guides-page .photo-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .elegant-frame img,
    .sport-frame img,
    .scout-frame img {
        height: 220px !important;
    }

    .event-info-container,
    .sports-info-container,
    .scouts-info-container {
        width: 100% !important;
        margin-top: 24px !important;
        padding: 26px 22px !important;
    }

    .event-info-container h2,
    .sports-info-container h2,
    .scouts-info-container h2 {
        font-size: 1.65rem !important;
    }

    .sports-main-title,
    .scouts-main-title {
        font-size: 2rem !important;
    }
}

/* =====================================================
   Mobile Menu Responsive Overrides (All Pages)
   Targets: hamburger mega menu panels and links
   ===================================================== */
@media (max-width: 767px) {
    .mmet-mega-wrapper {
        padding: 8px !important;
        align-items: flex-start !important;
    }

    .mmet-mega-card {
        width: 100% !important;
        height: calc(100dvh - 16px) !important;
        max-height: calc(100dvh - 16px) !important;
        border-radius: 14px !important;
        margin: 0 !important;
    }

    .mmet-nav-content {
        padding: 14px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .mmet-menu-top-row {
        position: static !important;
        top: auto !important;
        z-index: auto !important;
        background: #ffffff !important;
        padding-bottom: 10px;
        margin-bottom: 12px !important;
    }

    .mmet-logo-text {
        font-size: 24px !important;
    }

    .mmet-close-icon {
        font-size: 28px !important;
        line-height: 1;
    }

    .mmet-links-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .mmet-link-col {
        min-width: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mmet-link-col:last-child {
        border-bottom: none;
    }

    .mmet-col-head {
        font-size: 12px !important;
        margin-bottom: 10px !important;
        letter-spacing: 1px !important;
    }

    .mmet-link-col a {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }

    .mmet-link-col a:hover {
        padding-left: 0 !important;
    }

    .mmet-phyo-sidebar {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1099px) {
    .mmet-mega-wrapper {
        padding: 14px !important;
    }

    .mmet-mega-card {
        width: 100% !important;
        height: calc(100dvh - 28px) !important;
        max-height: calc(100dvh - 28px) !important;
    }

    .mmet-nav-content {
        padding: 20px !important;
    }

    .mmet-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    .mmet-phyo-sidebar {
        display: none !important;
    }
}
