
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1e293b;
            scroll-behavior: smooth;
            line-height: 1.5;
        }

        :root {
            --primary: #0a4d5c;
            --primary-light: #1a6b7e;
            --secondary: #d4a13e;
            --secondary-light: #e5b45b;
            --dark: #0f172a;
            --gray: #475569;
            --light-gray: #f8fafc;
            --border: #e2e8f0;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ---------- IMPROVED HEADER (MODERN DRAWER) with logo left-aligned on mobile ---------- */
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .logo-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }
        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 6px;
            transition: 0.3s ease;
        }

        .logo-icon:hover img {
            transform: scale(1.05);
        }
        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        .logo-text p {
            font-size: 0.85rem;
            color: var(--gray);
        }

        /* DESKTOP MENU */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.2s;
            padding: 0.5rem 0;
            display: inline-flex;
            align-items: center;
        }
        .nav-menu a:hover, .nav-menu a.active {
            color: var(--primary);
            border-bottom: 2px solid var(--secondary);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--primary);
            cursor: pointer;
            transition: 0.2s;
            width: 44px;
            height: 44px;
            border-radius: 30px;
            background: #f1f5f9;
            justify-content: center;
            align-items: center;
        }
        .mobile-menu-btn:active {
            transform: scale(0.96);
        }

        /* MOBILE DRAWER - LEFT SLIDE (preserved, but logo already left) */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -300px;
                width: 280px;
                height: auto;
                max-height: calc(100vh - 90px);
                overflow-y: auto;
                background: linear-gradient(145deg, #ffffff 0%, #fefcf5 100%);
                box-shadow: 12px 8px 30px rgba(0, 0, 0, 0.25);
                z-index: 999;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 0;
                list-style: none;
                padding: 0;
                margin: 0;
                transition: left 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
                border-radius: 0 24px 24px 0;
                border-right: 3px solid var(--secondary);
            }
            body.menu-open .nav-menu {
                left: 0;
            }
            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(10, 77, 92, 0.08);
            }
            .nav-menu a {
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 1rem 1.5rem;
                font-size: 1.1rem;
                font-weight: 600;
                color: var(--dark);
                width: 100%;
                transition: all 0.2s;
            }
            .nav-menu a:hover {
                background: rgba(10, 77, 92, 0.06);
                color: var(--primary);
                padding-left: 1.8rem;
            }
            .drawer-close-btn {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                padding: 0.8rem 1rem;
                background: transparent;
                border-bottom: 1px solid rgba(10, 77, 92, 0.15);
                width: 100%;
            }
            .drawer-close-btn button {
                background: #f1f5f9;
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 30px;
                font-size: 1.2rem;
                color: var(--primary);
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .drawer-brand {
                padding: 1rem 1.5rem;
                border-top: 1px solid rgba(10, 77, 92, 0.1);
                font-size: 0.7rem;
                color: var(--gray);
                text-align: left;
                width: 100%;
            }
            body.menu-open {
                overflow: hidden;
            }
            .slider-container, .container, .about-grid, .team-grid, .gallery-grid {
                max-width: 100%;
                overflow-x: hidden;
            }
            img, iframe {
                max-width: 100%;
            }
            /* Keep header layout left-aligned: logo on left, menu button on right */
            .header-container {
                justify-content: space-between;
            }
            .logo {
                flex: 1;
            }
        }

        /* notice ticker, slider, etc all original */
        .notice-container {
            background: #1a1a1a;
            color: white;
            overflow: hidden;
            height: 50px;
            display: flex;
            align-items: center;
            border-bottom: 3px solid var(--secondary);
            position: relative;
        }
        #ticker-wrap {
            display: flex;
            white-space: nowrap;
            will-change: transform;
        }
        .ticker-item {
            padding: 0 40px;
            font-size: 16px;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        .ticker-item i {
            color: var(--secondary);
            margin-right: 10px;
        }

        .slider-full { width: 100%; position: relative; overflow: hidden; }
        .slider-container { position: relative; width: 100%; height: 550px; }
        .slide {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover; background-position: center;
            opacity: 0; transition: opacity 0.8s ease;
        }
        .slide.active { opacity: 1; }
        .slide-overlay {
            background: linear-gradient(90deg, rgba(10,45,45,0.7) 0%, rgba(0,0,0,0.4) 100%);
            position: absolute; inset: 0;
        }
        .slide-text {
            position: absolute; bottom: 20%; left: 5%; max-width: 600px; color: white; z-index: 2;
        }
        .slide-text h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; }
        .slider-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(0,0,0,0.5); color: white; border: none;
            width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.3rem;
            z-index: 10; transition: 0.2s;
        }
        .slider-btn:hover { background: var(--secondary); }
        .btn-prev { left: 20px; }
        .btn-next { right: 20px; }
        .dots {
            position: absolute; bottom: 20px; left: 0; right: 0;
            display: flex; justify-content: center; gap: 12px; z-index: 10;
        }
        .dot { width: 12px; height: 12px; background: rgba(255,255,255,0.6); border-radius: 50%; cursor: pointer; }
        .dot.active { background: var(--secondary); transform: scale(1.2); }

        .section-header { text-align: center; margin-bottom: 3rem; }
        .section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; font-weight: 700; }
        .section-header h2 span { color: var(--secondary); }
        .section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; }

        .about-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
            margin-bottom: 3rem;
        }
        .about-image {
            position: relative;
            border: 4px solid var(--secondary);
            border-radius: 28px;
            overflow: hidden;
            background: white;
            box-shadow: var(--shadow-lg);
            transition: transform 0.2s ease, box-shadow 0.2s;
        }
        .about-image:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.2);
        }
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 24px;
            transition: transform 0.4s ease;
        }
        .stats {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem;
        }
        .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); }
        .stat-label { color: var(--gray); font-size: 0.9rem; }

        .mv-row {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 3rem 0;
        }
        .mv-card {
            background: white; padding: 2rem; border-radius: 20px;
            box-shadow: var(--shadow); border-left: 5px solid var(--secondary);
        }
        .mv-card h4 { font-size: 1.8rem; color: var(--primary); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }

        .achievements-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem; margin: 2rem 0;
        }
        .achievement-card {
            background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
            transition: transform 0.2s;
        }
        .achievement-card:hover { transform: translateY(-5px); }
        .achievement-img { height: 220px; overflow: hidden; position: relative; }
        .achievement-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .achievement-card:hover .achievement-img img { transform: scale(1.05); }
        .achievement-img a { display: block; width: 100%; height: 100%; }
        .achievement-content { padding: 1.5rem; text-align: center; }
        .achievement-content h3 a {
            color: var(--primary); text-decoration: none; font-size: 1.5rem;
            transition: 0.2s;
        }
        .achievement-content h3 a:hover { color: var(--secondary); text-decoration: underline; }

        /* TEAM GRID */
       .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        @media (max-width: 992px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        .team-card {
            background: white;
            border-radius: 20px 20px 10px 10px;
            overflow: hidden;
            transition: all 0.25s ease;
            box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
        }

        .team-img-wrapper {
            width: 180px;
            height: 180px;
            margin: 20px auto 0 auto;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 4px solid #f3f3f3;
            position: relative;
        }

        .team-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            transition: transform 0.3s ease;
        }

        .team-card:hover .team-img-wrapper img {
            transform: scale(1.05);
        }

        .team-social-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
            display: flex;
            justify-content: center;
            gap: 16px;
            padding: 16px 0 14px;
            transform: translateY(100%);
            transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            opacity: 1;
        }

        .team-card:hover .team-social-overlay {
            transform: translateY(0);
        }

        .team-social-overlay a {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
            text-decoration: none;
            font-size: 1.2rem;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .team-social-overlay a:hover {
            transform: translateY(-3px);
            filter: brightness(0.95);
        }

        .team-info-block {
            background: #f0f4fc;
            border-top: 2px solid #e8edf5;
            width: 100%;
            margin-top: auto;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 0 20px;
        }

        .team-info-inner {
            text-align: center;
        }

        .team-name {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 700;
            color: #2c3e6d;
            display: inline-block;
            padding: 0;
            box-shadow: none;
            background: transparent;
        }

        .team-card h4 {
            margin-top: 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary, #2c3e6d);
            display: inline-block;
            padding: 0;
            background: transparent;
        }

        /* GALLERY GRID responsive */
        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            margin: 2rem 0;
        }
        @media (min-width: 640px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .gallery-item {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow);
            aspect-ratio: 4 / 3;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, #000000cc, transparent);
            padding: 24px 16px 16px;
            text-align: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-item:hover img {
            transform: scale(1.03);
        }

        .notice-event-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0;
        }
        .notice-board, .event-list {
            background: white; border-radius: 20px; padding: 2rem;
            box-shadow: var(--shadow);
        }
        .notice-board h3, .event-list h3 {
            font-size: 1.6rem; margin-bottom: 1.5rem;
            border-left: 5px solid var(--secondary); padding-left: 1rem;
        }
        .notice-item, .event-item {
            padding: 0.8rem 0; border-bottom: 1px solid var(--border);
        }
        .notice-date { font-weight: 700; color: var(--primary); display: inline-block; width: 100px; }
        .notice-item a, .event-item a { text-decoration: none; color: var(--dark); font-weight: 500; }
        .notice-item a:hover, .event-item a:hover { color: var(--secondary); text-decoration: underline; }

        .contact-map { margin-bottom: 2rem; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
        .contact-details-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
        }
        .contact-info-card {
            background: white; padding: 2rem; border-radius: 20px; box-shadow: var(--shadow);
        }
        .contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
        .contact-icon {
            width: 50px; height: 50px; background: var(--primary); color: white;
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; flex-shrink: 0;
        }
        .contact-form {
            background: white; padding: 2rem; border-radius: 20px; box-shadow: var(--shadow);
        }
        .form-group { margin-bottom: 0.5rem; }
        .form-group input, .form-group textarea {
            width: 100%; padding: 0.5rem; border: 1px solid var(--border);
            border-radius: 10px; font-size: 1rem;
        }
        .btn-primary {
            background: var(--primary); color: white; border: none;
            padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; cursor: pointer;
            transition: 0.2s; width: 100%;
        }
        .btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); }

        footer {
            background: var(--dark); color: white; padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem; margin-bottom: 3rem;
        }
        .footer-col h3 {
            font-size: 1.3rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.5rem;
        }
        .footer-col h3::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--secondary);
        }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.8rem; }
        .footer-col a { color: #cbd5e1; text-decoration: none; transition: 0.2s; }
        .footer-col a:hover { color: var(--secondary); }
        .footer-contact p { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
        .footer-contact i { color: var(--secondary); }
        .footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
        .footer-social a {
            width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; color: white;
            transition: 0.2s;
        }
        .footer-social a:hover { background: var(--secondary); color: var(--dark); transform: translateY(-3px); }
        .copyright {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
            flex-wrap: wrap; gap: 1rem;
        }

        @media (max-width: 768px) {
            .about-grid, .mv-row, .notice-event-grid, .contact-details-grid {
                grid-template-columns: 1fr;
            }
            .slider-container { height: 400px; }
            .slide-text h2 { font-size: 1.8rem; }
            .container { padding: 0 1.5rem; }
            .team-img-wrapper img {
                height: 170px;
            }
        }
         .back-to-top {
            position: fixed;
            visibility: hidden;
            opacity: 0;
            right: 20px;
            bottom: 80px;
            z-index: 995;
            background: #106eea;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            color: white;
            text-decoration: none;
            font-size: 20px;
        }
        .back-to-top:hover {
            background: #0052ff;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .back-to-top.active {
            visibility: visible;
            opacity: 1;
        }
        .floating-buttons {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .float-button {
            display: flex;
            align-items: center;
            padding: 12px 18px 12px 15px;
            border-radius: 40px 0 0 40px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transform: translateX(70%);
            border: none;
            backdrop-filter: blur(4px);
        }
        .float-button:hover {
            transform: translateX(0);
            color: white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .float-button i {
            font-size: 24px;
            margin-right: 10px;
        }
        .float-button:hover i {
            transform: scale(1.1);
        }
        .whatsapp {
            background-color: #25D366;
        }
        .whatsapp:hover {
            background-color: #128C7E;
        }
        .messenger {
            background-color: #0078FF;
        }
        .messenger:hover {
            background-color: #0063d1;
        }
        @media (max-width: 576px) {
            .back-to-top {
                bottom: 20px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .float-button {
                padding: 10px 15px 10px 12px;
                font-size: 14px;
            }
            .float-button i {
                font-size: 20px;
            }
        }

