        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-color: #003366; /* Institutional Dark Blue */
            --secondary-color: #b91c1c; /* Accent Red/Maroon for buttons/highlights */
            --text-dark: #333333;
            --text-light: #666666;
            --white: #ffffff;
            --nav-bg: #f8f9fa;
            --top-bar-bg: #002244;
            --font-main: 'Roboto', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            line-height:1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        /* --- TOP BAR --- */
        .top-bar {
            background-color: var(--top-bar-bg);
            color: var(--white);
            padding: 10px 5%;
            display: flex;
            justify-content: space-around; /* CHANGED: Space around as requested */
            align-items: center;
            font-size: 0.9rem;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar-left i {
            color: #ffcc00;
            margin-right: 8px;
        }

        .top-bar-right {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            color: var(--white);
            font-size: 1rem;
        }

        .social-icon:hover {
            color: #ffcc00;
        }

        /* --- MAIN NAVIGATION --- */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: center; /* Centered navbar */
            align-items: center;
            padding: 0 5%;
            height: 80px;
            gap: 80px;
        }

        /* Logo Styling */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0; /* Prevents logo from squishing */
        }

        /* Styling for Logo Image */
        .logo img {
            height: 80px;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            flex-shrink: 0; /* Prevents menu items from breaking */
        }

        /* Main Menu Item Styling */
        .nav-links > li {
            position: relative; /* Essential for submenu positioning */
        }

        .nav-links a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            padding: 10px 0;
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px; /* Gap between text and icon */
            white-space: nowrap; /* Prevents text wrapping */
        }

        /* --- ADDED: ICON STYLING FOR MOBILE VIEW --- */
        .nav-links a i:not(.fa-chevron-down) {
            width: 20px;
            text-align: center;
            color: var(--primary-color);
            font-size: 1rem;
        }

        /* Down Arrow Icon */
        .nav-links a i.fa-chevron-down {
            font-size: 0.7em;
            margin-top: 2px;
            transition: transform 0.3s;
        }

        /* Rotate arrow on hover */
        .nav-links > li:hover > a i.fa-chevron-down {
            transform: rotate(180deg);
        }

        /* Underline effect for main links only */
        .nav-links > li > a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-color);
            transition: width 0.3s;
        }

        .nav-links > li > a:hover::after {
            width: 100%;
        }

        .nav-links > li > a:hover {
            color: #ffcc00;
        }

        /* -------------------------------------------------
           --- LUXURY SLOW DROP DOWN SUB MENU STYLING ---
           ------------------------------------------------- */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            width: 240px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-top: 3px solid var(--secondary-color); /* Branding line */
            padding: 10px 0;
            z-index: 1001;
            
            /* Animation States */
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px); /* Start slightly lower */
            transition: all 0.4s ease-in-out; /* SLOW SMOOTH TRANSITION */
        }

        /* Hover Trigger: Reveal Submenu */
        .nav-links li:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0); /* Slide into place */
        }

        /* Submenu Item Styling */
        .submenu li a {
            display: block;
            padding: 12px 25px;
            color: #444;
            text-transform: none; /* Normal case for readability */
            font-size: 0.9rem;
            font-weight: 400;
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }
        
        /* Remove the default underline from submenu items */
        .submenu li a::after {
            display: none;
        }

        /* Submenu Item Hover Effect */
        .submenu li a:hover {
            color: var(--secondary-color);
            padding-left: 30px; /* Slide right animation */
            background-color: #f9f9f9;
        }

        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }

        /* -------------------------------------------------
           --- FIX FOR RESOLUTION 1236px TO 1079px ---
           ------------------------------------------------- */
        @media (min-width: 1079px) and (max-width: 1359px) {
            .nav-container {
                gap: 40px; /* Reduce gap between logo and menu */
            }
            .nav-links {
                gap: 20px; /* Reduce gap between menu items */
            }
            .nav-links a {
                font-size: 0.85rem; /* Slightly smaller text */
                padding: 10px 5px; /* Adjust padding */
            }
            .logo img {
                height: 60px; /* Slightly smaller logo */
            }
        }

        /* --- HERO SECTION (UPDATED WITH SLIDER) --- */
        .hero {
            position: relative;
            height: 85vh;
            min-height: 600px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: left;
            color: var(--white);
            overflow: hidden;
            background-color: #000;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            transform: scale(1);
        }

        .slide.active {
            opacity: 1;
            animation: zoomEffect 14s linear forwards; 
        }

        @keyframes zoomEffect {
            0% { transform: scale(1); }
            71% { transform: scale(1.25); }
            72% { transform: scale(1); }
            100% { transform: scale(1); }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 2; 
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 4;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .slider-arrow:hover {
            background: var(--secondary-color);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-arrow { left: 30px; }
        .next-arrow { right: 30px; }

        .hero-content {
            position: relative;
            z-index: 3;
            width: 50%;
            min-width: 350px;
            margin-right: 5%;
            animation: swipeInLeft 0.8s ease-out forwards;
        }

        @keyframes swipeInLeft {
            0% { opacity: 0; transform: translateX(-150px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        .hero-content-box {
            border-left: 8px solid var(--secondary-color);
            padding: 50px 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            display: inline-block;
        }

        .hero-badge {
            background-color: var(--secondary-color);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .hero-title {
            font-family: var(--font-main);
            font-weight: 700;
            font-size: 3rem;
            color: #ffffff;
            letter-spacing: 2px;
            margin-bottom: 5px;
            display: block;
            border-bottom: 1px solid rgba(255,255, 255, 0.2);
            padding-bottom: 15px;
        }

        .golden-text {
            color: #FFD700;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: transparent;
            color: var(--white);
            font-weight: 600;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--white);
            margin-top: 10px;
            margin-right: 15px;
        }

        .btn:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }

        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-primary:hover {
            background-color: #a01515;
            border-color: #a01515;
            color: white;
        }

        /* --- UPDATED POSTER SECTION --- */
        .poster-section {
            position: relative;
            background-color: #ffffff; /* CHANGED: Removed Blue Background */
            padding: 60px 0;
            z-index: 10;
        }

        .poster-container {
            max-width: 1600px;
            margin: 0 auto;
            background-color: var(--white);
            display: flex;
            align-items: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            animation: posterFadeUp 1s ease-out forwards;
        }

        .poster-content {
            flex: 1;
            padding: 50px;
            border-right: 2px solid #eee; /* ADDED: The "Two Line" Divider */
            text-align: left;
        }

        .poster-badge {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border-radius: 4px;
        }

        .poster-title {
            font-family: 'Playfair Display', serif; /* Professional Font */
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .poster-desc {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .poster-meta {
            display: flex;
            gap: 20px;
            border-top: 1px solid #eee;
            padding-top: 20px;
            font-size: 0.95rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .poster-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .poster-btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: 0.3s;
            border: 2px solid var(--secondary-color);
        }

        .poster-btn:hover {
            background-color: var(--white);
            color: var(--secondary-color);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .poster-image-wrapper {
            flex: 1;
            height: 500px;
            position: relative;
            overflow: hidden;
            border-radius: 0 10px 10px 0; /* Rounded corners on image side */
        }

        .poster-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .poster-image-wrapper:hover .poster-img {
            transform: scale(1.03);
        }

        @keyframes posterFadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (min-width: 1079px) and (max-width: 1600px) {
            .poster-image-wrapper {
                height: 410px; /* slightly reduced */
            }
            .poster-img {
                object-fit: contain;   /* prevents corner cut */
                background-color: #fff; /* avoids empty gap visibility */
            }
            .poster-image-wrapper:hover .poster-img {
                transform: scale(1.02); /* reduced hover zoom */
            }
        }

        /* --- UPDATED ABOUT US SECTION RESPONSIVENESS --- */
   /* --- UPDATED ABOUT US LAYOUT --- */
        .about-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 80px 20px;
            display: flex;
            gap: 40px;
        }

        .left {
            flex: 1;
        }

        .left h2 {
            font-size: 38px; /* Desktop Font Size */
            font-weight: 700;
            color: #0a2a5e;
            margin-bottom: 12px;
            font-family: 'Playfair Display', serif; 
        }

        .underline {
            width: 60px;
            height: 3px;
            background: #f5a623;
            margin-bottom: 20px;
        }

        .left p {
            font-size: 16px; /* Desktop Font Size */
            line-height: 1.7;
            color: #4a4a4a;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .read-more {
            display: inline-block;
            padding: 10px 28px;
            border: 1px solid #cfd6df;
            color: #0a2a5e;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        /* Right Grid */
        .right {
            flex: 1.2;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .box {
            padding: 10px 8px;
            text-align: center;
            font-size: 11px; /* Desktop Font Size */
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            cursor: pointer;
            white-space: nowrap;
        }

        .red { background: #e74c3c; }
        .orange { background: #f5a623; }
        .blue { background: #2f6fb2; }
        .green { background: #6dbb45; }
        .cyan { background: #5bc0de; }

        .span-2 { grid-column: span 2; }
        .span-3 { grid-column: span 3; }

        /* --- RESPONSIVE MEDIA QUERIES (About Us Section Only) --- */
        @media (max-width: 992px) {
            .about-container { gap: 20px; }
            .left h2 { font-size: 24px; }
            .left p { font-size: 13px; }
            .grid { grid-template-columns: repeat(2, 1fr); }
            .box { font-size: 10px; }
        }

        @media (max-width: 768px) {
            .about-container {
                flex-direction: column;
                gap: 15px;
            }
            .left h2 { font-size: 18px; }
            .left p { font-size: 12px; }
            .grid { grid-template-columns: 1fr; }
            .box { font-size: 9px; white-space: normal; }
        }

        /* --- INFO SECTION --- */
        .info-section {
            width: 100%;
            height: 330px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--top-bar-bg);
        }
        .cards {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            padding: 0 20px;
        }
        .card {
            width: 360px;
            max-width: 100%;
            height: 120px;
            background: #ffffff;
            border-radius: 6px;
            display: flex;
            align-items: center;
            padding: 30px;
        }
        .icon {
            width: 48px;
            height: 48px;
            margin-right: 20px;
        }
        .icon img { width: 100%; height: 100%; object-fit: contain; }
        .card p {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #001f3f;
            line-height: 1.4;
        }
        .icon.blue img { filter: invert(27%) sepia(82%) saturate(1900%) hue-rotate(205deg); }
        .icon.teal img { filter: invert(49%) sepia(73%) saturate(550%) hue-rotate(145deg); }
        @media (max-width: 1178px) { .cards { gap: 30px; } }
        @media (max-width: 900px) { .card { width: 320px; } }
        @media (max-width: 710px) {
            .info-section { height: auto; padding: 40px 0; }
            .card { width: 100%; max-width: 360px; }
        }

         /* ---------------------------------------------------------
           --- UPDATED EVENTS CAROUSEL SECTION (FIXED FACEBOOK RESPONSIVENESS) ---
           --------------------------------------------------------- */
        .events-section {
            max-width: 1300px;
            margin: auto;
            padding: 60px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: #002b5c;
        }
        .title-underline {
            width: 60px;
            height: 3px;
            background: #f2b400;
            margin: 10px auto 40px;
        }

        /* LAYOUT: Grid updated to single column (Slider takes full width) */
        .events-grid {
            display: grid;
            grid-template-columns: 1fr; /* FULL WIDTH NOW */
            gap: 30px;
            align-items: start;
        }

        /* THE CAROUSEL CONTAINER */
        .events-slider-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden; /* Hides cards outside view */
            background: #f4f6f8;
            border-radius: 8px;
            padding: 10px; /* Inner padding for aesthetics */
        }

        /* THE MOVING TRACK */
        .events-slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Luxury smooth animation */
            width: 100%;
            gap: 20px; /* Gap between cards */
        }

        /* INDIVIDUAL CARD STYLE */
        .event-card {
            background: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-radius: 6px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            
            /* RESPONSIVE WIDTH LOGIC - DEFAULT DESKTOP */
            flex-shrink: 0; /* Prevents shrinking */
            width: calc(33.33% - 14px); /* DESKTOP: Show 3 cards */
            border: 1px solid rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* TABLET VIEW */
        @media (max-width: 991px) {
            .event-card {
                width: calc(50% - 10px); /* TABLET: Show 2 cards */
            }
        }

        /* MOBILE VIEW */
        @media (max-width: 768px) {
            .event-card {
                width: 100%; /* MOBILE: Show 1 card */
            }
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .event-img {
            position: relative;
            overflow: hidden;
        }
        .event-img img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .event-card:hover .event-img img {
            transform: scale(1.05);
        }

        /* DATE BADGE */
        .date-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 59, 111, 0.9);
            backdrop-filter: blur(4px);
            padding: 8px 12px;
            text-align: center;
            border-radius: 4px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .date-badge .day {
            display: block;
            font-size: 22px;
            font-weight: 700;
            color: #ffc107;
            line-height: 1;
        }
        .date-badge .month {
            font-size: 11px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        /* CONTENT */
        .event-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .event-content h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #003366;
            line-height: 1.3;
        }

        .location {
            font-size: 12px;
            color: #888;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .desc {
            font-size: 13px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* BUTTON */
        .read-btn {
            background: transparent;
            color: #002b5c;
            border: 1px solid #002b5c;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            text-align: center;
            border-radius: 4px;
            align-self: flex-start;
        }
        .read-btn:hover {
            background: #002b5c;
            color: #fff;
        }

        /* FACEBOOK PANEL REMOVED - CSS NO LONGER NEEDED */

        /* VIEW ALL */
        .view-all {
            text-align: center;
            margin-top: 40px;
        }
        .view-all button {
            background: #fff;
            border: 1px solid #ccc;
            padding: 10px 25px;
            font-size: 13px;
            cursor: pointer;
            transition: 0.3s;
        }
        .view-all button:hover {
            background: #002b5c;
            color: #fff;
            border-color: #002b5c;
        }

        /* -------------------------------------------------
           --- UPDATED FACEBOOK PANEL RESPONSIVENESS ---
           ------------------------------------------------- */
        .facebook-panel {
            background: #fff;
            border-radius: 8px;
            height: 100%;
            min-height: 400px;
            position: sticky;
            top: 100px;
            overflow: hidden;
               padding: 10px;
            
            /* --- FIX: REMOVED FIXED WIDTH TO PREVENT HIDING CONTENT --- */
            width: auto; 
        }
        .facebook-iframe {
    width: 100%;
    height: 520px;
    border: none;
    overflow-y: auto;   /* ENABLE INTERNAL SCROLL */
    overflow-x: hidden;
}

    
        /* -------------------------------------------------
           --- EVENTS CAROUSEL RESPONSIVENESS (FIXED) ---
           ------------------------------------------------- */
        @media (max-width: 1439px) {
            .events-grid {
                grid-template-columns: 1fr; /* Stack vertically */
                gap: 40px; /* Added gap for better separation */
            }
            .facebook-panel {
                min-height: 450px;
                position: static; /* Remove sticky on mobile to help flow */
                
                /* --- FIX: FORCE MINIMUM WIDTH FOR FACEBOOK COLUMN ON TABLET/MOBILE --- */
                /* This ensures the column doesn't shrink to 0 and hide content */
                width: auto; 
                min-width: 100px; /* Force at least 100px width */
            }
        }

        @media (max-width: 768px) {
            /* MOBILE: SHOW 1 CARD AT A TIME */
            .event-card {
                width: 100%; /* Full width of container */
            }
            
            /* Extra safety for Facebook on mobile portrait */
            .facebook-panel {
                min-height: 350px; 
                margin-left: -10px;

            }
        }
        /* --- FOOTER --- */
        footer {
            background-color: var(--top-bar-bg);
            color: var(--white);
            padding: 60px 5% 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
        }
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { color: #ccc; }
        .footer-col ul li a:hover { color: var(--white); padding-left: 5px; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #888;
        }

        /* --- GLOBAL RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 1170px) {
            .hero {
                justify-content: center;
                text-align: center;
            }
            .hero::before {
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)); 
            }
            .hero-content {
                width: 85%;
                margin: 0 auto;
            }
            .hero-title { font-size: 2rem; }
            .nav-container {
                justify-content: space-between; 
                gap: 20px; 
            }
            .nav-links {
                display: none; 
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                text-align: start;
                
                /* --- NEW: VERTICAL SCROLLING FOR MOBILE --- */
                max-height: 70vh; /* Limits height to 70% of screen */
                overflow-y: auto; /* Enables vertical scrolling */
            }
            .nav-links.active { display: flex; }
            .hamburger { display: block; }
            .top-bar {
                flex-direction: row;
                gap: 10px;
                text-align: center;
            }
            .slider-arrow { display: none; }
            
            /* POSTER MOBILE RESPONSIVENESS */
            .poster-container { flex-direction: column; width: 90%; }
            .poster-content {
                border-right: none; 
                border-bottom: 1px solid #eee;
                padding: 30px 20px;
                text-align: center;
            }
            .poster-image-wrapper { width: 100%; height: 250px; }
            .poster-title { font-size: 1.8rem; }
            .btn { width: 100%; }

            /* --- MOBILE SUBMENU ADAPTATION --- */
            .nav-links li { position: static; width: 100%; }
            
            .submenu {
                position: static;
                width: 100%;
                box-shadow: none;
                border-top: none;
                border-bottom: 1px solid #eee;
                padding-left: 20px; /* Indentation */
                display: none; /* Hidden by default on mobile */
                transform: none;
                opacity: 1;
                visibility: visible;
                transition: none;
            }

            /* Class to show submenu via JS */
            .submenu.mobile-active {
                display: block;
            }

            .nav-links > li > a:hover::after { display: none; }
            .nav-links > li > a:hover { color: var(--text-dark); }
        }

        @media (max-width: 600px) {
            .hero-content-box { padding: 30px 20px; }
            .hero-title { font-size: 1.5rem; letter-spacing: 1px; }
            .btn { width: 100%; margin-bottom: 10px; margin-right: 0; }
            .logo img { height: 50px; }
        }
          /* --- PROFESSIONAL CONTACT SECTION --- */
    .contact-section {
        padding: 80px 20px;
        background-color: #f8f9fa; /* Light professional background */
        border-bottom: 1px solid #eee;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: var(--primary-color);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .section-header h2::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 3px;
        background: var(--secondary-color);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .title-underline {
        width: 0; /* Redefining for this section */
        height: 0;
        border: none;
    }

    /* GRID LAYOUT FOR CONTACT BOXES */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 Boxes */
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 50px auto;
    }

    /* LUXURY BOX STYLING */
    .contact-box {
        background: #ffffff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-left: 4px solid var(--primary-color); /* Accent Left Border */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-height: 200px;
    }

    .contact-box:hover {
        transform: translateY(-5px); /* Lift effect */
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    /* ICONS IN BOXES */
    .contact-icon {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        background: #f0f4f8;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    /* LABELS IN BOXES */
    .contact-label {
        font-size: 0.85rem;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 10px;
        letter-spacing: 1px;
        font-weight: 600;
    }

    /* DETAIL TEXT IN BOXES */
    .contact-detail {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-dark);
        line-height: 1.5;
    }
    
    .contact-detail a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s;
    }
    .contact-detail a:hover {
        color: var(--secondary-color);
        text-decoration: underline;
    }

    /* MAP WRAPPER (SEPARATE DOWN) */
    .map-wrapper {
        max-width: 1200px;
        margin: 40px auto 0;
        background: #ffffff;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border: 1px solid #eee;
        height: 450px; /* Fixed height for map */
        overflow: hidden;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: none;
    }

    /* RESPONSIVE FOR CONTACT SECTION */
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr; /* Stack boxes on mobile */
        }
        .map-wrapper {
            height: 350px; /* Reduce map height on mobile */
        }
        .section-header h2 {
            font-size: 1.8rem;
        }
        .contact-box {
            min-height: 150px; /* Reduce box height on mobile */
        }
    }

    
        /* =========================================
           2. FACULTY SECTION CSS (UNCHANGED)
           ========================================= */
/* =========================================
   FACULTY SECTION CSS (OPTIMIZED FOR SMALLER SIZE)
   ========================================= */

/* Main Section */
.faculty-section {
    padding: 40px 20px; /* Reduced padding from 60px to 40px */
    background-color: #f4f6f8; 
}

/* Container */
.faculty-container {
    max-width: 900px; /* Reduced width from 1100px to 900px */
    margin: 0 auto;
}

/* Header */
.faculty-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px; /* Reduced font size from 32px to 28px */
    color: #002147;
    margin-bottom: 30px; /* Reduced margin from 40px to 30px */
    position: relative;
    padding-bottom: 10px;
}
.faculty-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Reduced line width from 80px to 60px */
    height: 3px;  /* Reduced line height from 4px to 3px */
    background-color: #0b5aa5;
}

/* Card */
.faculty-card {
    background: #fff;
    border-radius: 8px; /* Reduced border radius slightly */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Reduced shadow intensity */
    overflow: hidden;
    border-top: 4px solid #0b5aa5; /* Reduced border from 5px to 4px */
}

/* Header Grid */
.faculty-header {
    display: grid;
    grid-template-columns: 180px 1fr; /* Reduced image column from 220px to 180px */
    gap: 20px; /* Reduced gap from 30px to 20px */
    padding: 25px; /* Reduced padding from 40px to 25px */
    align-items: start;
    background: #fff;
}

.faculty-img img {
    width: 100%;
    height: auto;
    max-height: 230px; /* Reduced image height from 280px to 230px */
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Lighter shadow */
}

.faculty-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px; /* Reduced name font from 26px to 20px */
    color: #002147;
    margin-bottom: 10px; /* Slight spacing */
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.faculty-info p {
    font-size: 13px; /* Reduced detail text from 15px to 13px */
    margin: 4px 0;
    color: #555;
    line-height: 1.4; /* Tighter line height */
}

.faculty-info strong {
    color: #0b5aa5;
    display: inline-block;
    min-width: 130px; /* Reduced label width from 160px to 130px */
    font-weight: 600;
}

/* Accordion */
.faculty-accordion { border-top: 1px solid #eee; }
.faculty-accordion-item { border-bottom: 1px solid #e0e0e0; }

.faculty-accordion-header {
    background: #fff;
    color: #002147;
    padding: 12px 20px; /* Reduced padding from 18px 25px */
    cursor: pointer;
    font-weight: 600;
    font-size: 14px; /* Reduced font from 16px to 14px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faculty-accordion-header:hover { background: #f9fbff; color: #0b5aa5; }
.faculty-accordion-header.active { background: #0b5aa5; color: #fff; }

.faculty-accordion-header span {
    font-size: 18px; /* Reduced plus sign size from 20px */
    transition: transform 0.3s;
}
.faculty-accordion-header.active span { transform: rotate(45deg); }

.faculty-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fafafa;
}

.faculty-table-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 10px; /* Reduced padding from 15px */
}

table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: 13px; /* Reduced table text from 14px to 13px */
}

th, td {
    padding: 8px 10px; /* Reduced cell padding */
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #0b5aa5;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px; /* Reduced header text */
}

tr:nth-child(even) { background-color: #f8f9fa; }

/* Faculty Mobile Adjustments */
@media (max-width: 768px) {
    .faculty-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    .faculty-img { display: flex; justify-content: center; }
    .faculty-img img { width: 120px; max-height: 150px; }
    .faculty-info p { display: block; text-align: center; }
    .faculty-info strong { display: block; margin-bottom: 4px; color: #333; min-width: auto; }
}

/* =========================================
   --- NEW COURSES SECTION (PROFESSIONAL DESIGN) ---
   ========================================= */
.courses-section {
    padding: 60px 20px;
    background-color: #fff;
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* 3 Columns: Quote | D.Pharm | B.Pharm */
    grid-template-columns: 1fr 1.2fr 1.2fr;
    gap: 30px;
    align-items: stretch;
}

/* 1. THE FOCUS / QUOTE BOX */
.courses-focus-box {
    background: var(--top-bar-bg); /* Dark Blue */
    color: white;
    padding: 40px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.courses-focus-box::before {
    content: '\f10d'; /* Quote Icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 8rem;
    color: rgba(255,255,255,0.05);
    transform: rotate(-10deg);
}

.focus-label {
    font-size: 0.85rem;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.focus-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    font-style: italic;
}

/* 2. COURSE CARDS */
.course-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--secondary-color);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top-color: var(--primary-color);
}

.course-header {
    background: #f8f9fa;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.course-icon {
    font-size: 2rem;
    color: #ccc;
}

.course-body {
    padding: 25px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 0.9rem;
    color: #555;
    background: #edf2f7;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i { color: var(--secondary-color); }

.eligibility-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.eligibility-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.course-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: 0.3s;
}

.course-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* RESPONSIVE COURSES */
@media (max-width: 992px) {
    .courses-container {
        grid-template-columns: 1fr 1fr; /* Quote on top (span 2), courses below */
        gap: 20px;
    }
    .courses-focus-box {
        grid-column: span 2; /* Quote spans full width */
    }
}

@media (max-width: 768px) {
    .courses-container {
        grid-template-columns: 1fr; /* Stack all vertically */
    }
    .courses-focus-box {
        grid-column: span 1;
        padding: 30px 20px;
    }
    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .course-meta {
        flex-direction: column;
        gap: 10px;
    }
}

        /* --- CSS VARIABLES & RESET (SAME AS INDEX) --- */
        :root {
            --primary-color: #003366;
            --secondary-color: #b91c1c;
            --text-dark: #333333;
            --text-light: #666666;
            --white: #ffffff;
            --nav-bg: #f8f9fa;
            --top-bar-bg: #002244;
            --font-main: 'Roboto', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            line-height:1.6;
            overflow-x: hidden;
            background-color: #f9f9fb; /* Slight diff for inner pages */
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        /* --- PAGE HEADER --- */
             /* --- PAGE HEADER --- */
        .page-header {
            background: var(--primary-color);
            padding: 60px 20px;
            text-align: center;
            color: white;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInDown 1s ease-out forwards;
        }
        .page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 10px;
        }
        .page-breadcrumb {
            font-size: 1rem;
            opacity: 0.8;
        }
        .page-breadcrumb span {
            color: #ffcc00;
        }

        /* --- SMOOTH SCROLLING --- */
        html {
            scroll-behavior: smooth; /* PROFESSIONAL SMOOTH SCROLLING */
        }

        /* --- ANIMATION KEYFRAMES --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        /* --- ANIMATION CLASS BASE --- */
        .animate-on-scroll {
            opacity: 0; /* Hidden initially */
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- MAIN ABOUT LAYOUT --- */
        .about-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px 80px 20px;
        }

        .content-card {
            background: white;
            padding: 40px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-color);
            /* Added animation class hook */
            opacity: 0; 
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            transform: translateY(20px);
        }
        
        .content-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .content-card h2 {
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .content-card h3 {
            color: var(--secondary-color);
            font-size: 1.3rem;
            margin: 25px 0 15px 0;
        }

        .content-card p {
            margin-bottom: 15px;
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
        }

        .content-card ul {
            list-style-type: disc;
            margin-bottom: 20px;
            padding-left: 25px;
        }

        .content-card ul li {
            margin-bottom: 10px;
            color: #555;
        }

        /* --- INTRO SPLIT LAYOUT (FIXED DUPLICATE & ADDED ANIMATIONS) --- */
        .intro-card {
            padding: 40px; 
            margin-bottom: 40px;
        }

        .intro-card h2 {
            display: block; 
            text-align: center; 
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 40px; 
            border-bottom: 2px solid var(--secondary-color); 
            padding-bottom: 15px;
        }

        .intro-split-wrapper {
            display: flex;
            align-items: center;
            gap: 50px; 
        }

        .intro-image-wrapper {
            flex: 0 0 45%; 
            max-width: 500px;
            /* Add fade scale to image */
            transition: transform 0.5s ease;
        }
        .intro-image-wrapper:hover {
            transform: scale(1.02);
        }

        .intro-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
        }

        .intro-content {
            flex: 1; 
        }

        .intro-content p {
            text-align: justify;
            color: #555;
            font-size: 1.05rem; 
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* --- STATS GRID (Visual Break) --- */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        .stat-box {
            background: var(--white);
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            /* Added scale animation */
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease-out;
        }
        .stat-box.visible {
            opacity: 1;
            transform: scale(1);
        }
        /* Staggered delays for stats */
        .stat-box:nth-child(1).visible { transition-delay: 0.1s; }
        .stat-box:nth-child(2).visible { transition-delay: 0.2s; }
        .stat-box:nth-child(3).visible { transition-delay: 0.3s; }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #777;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- VISION & MISSION SPECIAL BOX (FADE ANIMATION) --- */
        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        .vm-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #eee;
            /* Fade Animation Setup */
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .vm-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Mission card fades slightly later than Vision */
        .vm-card:nth-child(2).visible {
            transition-delay: 0.2s; 
        }

        .vm-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .vm-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .intro-split-wrapper {
                flex-direction: column; 
                gap: 30px;
            }
            .intro-image-wrapper {
                max-width: 100%; 
                flex: 0 0 auto;
            }
            .intro-img {
                margin: 0 auto; 
            }
            .intro-content p {
                text-align: left; 
            }
        }

        @media (max-width: 600px) {
            .page-header h1 { font-size: 2rem; }
            .content-card { padding: 20px; }
        }

                /* =========================================
           --- NEW PRINCIPAL SECTION CSS ---
           ========================================= */
        .principal-section {
            padding: 80px 20px;
            background-color: #fff;
            margin-top: 40px;
        }

        .principal-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr; /* Image 40%, Message 60% */
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        /* LEFT SIDE: PHOTO */
        .principal-photo-wrapper {
            background: #f4f6f8;
            padding: 20px;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .principal-img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
        }

        .principal-photo-wrapper:hover .principal-img {
            transform: scale(1.05);
        }

        /* RIGHT SIDE: MESSAGE */
        .principal-content-wrapper {
            padding: 30px;
        }

        .principal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .principal-name {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            margin: 0;
        }

        .principal-divider {
            height: 2px;
            background-color: #eee;
            margin-bottom: 20px;
            width: 100px;
        }

        .principal-msg {
            font-size: 1.1rem;
            color: #444;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 30px;
        }

        .signature {
            text-align: right;
            border-top: 2px solid var(--primary-color);
            padding-top: 15px;
            font-family: 'Playfair Display', serif;
            color: #555;
        }

        .title-text {
            font-size: 0.9rem;
            color: #888;
            text-transform: uppercase;
            margin-left: 10px;
        }

        /* RESPONSIVE FOR PRINCIPAL SECTION */
        @media (max-width: 992px) {
            .principal-layout {
                grid-template-columns: 1fr; /* Stack vertically */
                gap: 30px;
            }
            .principal-content-wrapper {
                padding: 20px;
            }
            .principal-msg {
                font-size: 1rem;
            }
            .principal-name {
                font-size: 1.5rem;
                text-align: center;
            }
            .principal-header {
                flex-direction: column;
                gap: 10px;
            }

        }
        .map-wrapper {
  position: relative;
  width: 100%;
  height: 400px; /* adjust as needed */
  border-radius: 12px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.map-address {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}