 :root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #3b82f6;
            --secondary-color: #f59e0b;
            --accent-color: #10b981;
            --accent-dark: #059669;
            --text-dark: #111827;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --font-scale: 1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            font-size: calc(16px * var(--font-scale));
            overflow-x: hidden;
        }

        /* Enhanced Header Styles */
        .top-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
            background-size: 400% 400%;
            animation: gradientWave 8s ease-in-out infinite;
            color: white;
            padding: 12px 0;
            font-size: calc(14px * var(--font-scale));
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 2s infinite;
        }

        .top-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: floatingOrbs 6s ease-in-out infinite;
        }

        @keyframes gradientWave {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes floatingOrbs {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-10px) scale(1.1); }
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .main-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: relative;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo-section {
            padding: 0px 0;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
            background-size: 400% 400%;
            animation: gradientWave 6s ease-in-out infinite;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: calc(32px * var(--font-scale));
            font-weight: bold;
            box-shadow: 0 0 30px rgba(102, 126, 234, 0.4), 0 0 60px rgba(118, 75, 162, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: rotate(45deg);
            animation: logoShine 3s infinite;
        }

        .logo:hover {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 0 40px rgba(102, 126, 234, 0.6), 0 0 80px rgba(118, 75, 162, 0.3);
        }

        @keyframes logoShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
            100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        }

        .site-title {
            font-family: 'Playfair Display', serif;
            font-size: calc(32px * var(--font-scale));
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .site-subtitle {
            font-size: calc(15px * var(--font-scale));
            color: var(--text-light);
            margin: 0;
            font-weight: 500;
        }

        /* Enhanced Navigation Styles */
        .navbar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
            background-size: 400% 400%;
            animation: gradientWave 10s ease-in-out infinite;
            padding: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
        }

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: navShine 6s infinite;
        }

        .navbar-nav .nav-link {
            color: white !important;
            padding: 20px 30px !important;
            font-weight: 600;
            font-size: calc(15px * var(--font-scale));
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
            transition: all 0.4s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: all 0.6s ease;
        }

        .navbar-nav .nav-link:hover {
            background: rgba(255,255,255,0.2);
            color: #fbbf24 !important;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .navbar-nav .nav-link:hover::before {
            width: 90%;
        }

        .navbar-nav .nav-link:hover::after {
            left: 100%;
        }

        @keyframes navShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            border-radius: 12px;
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.95);
        }

        .dropdown-item {
            padding: 12px 25px;
            font-size: calc(14px * var(--font-scale));
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        /* Utility Bar */
        .utility-bar {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .language-switcher button,
        .font-scaler button {
            background: white;
            border: 1px solid var(--border-color);
            padding: 8px 16px;
            margin: 0 3px;
            border-radius: 8px;
            font-size: calc(12px * var(--font-scale));
            transition: all 0.3s ease;
            font-weight: 500;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .language-switcher button:hover,
        .font-scaler button:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .language-switcher button.active {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border-color: var(--primary-color);
        }

        /* Enhanced Hero Carousel */
        .hero-carousel {
            height: 700px;
            overflow: hidden;
            position: relative;
        }

        .carousel-item {
            height: 700px;
            position: relative;
            overflow: hidden;
        }

        .carousel-item:nth-child(1) {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .carousel-item:nth-child(2) {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .carousel-item:nth-child(3) {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.4) 0%, transparent 50%);
            animation: gradientShift 10s ease-in-out infinite;
        }

        .carousel-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: floatParticles 20s linear infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .carousel-content {
            text-align: center;
            color: white;
            max-width: 900px;
            padding: 0 20px;
        }

        .carousel-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: calc(56px * var(--font-scale));
            font-weight: 700;
            margin-bottom: 25px;
            text-shadow: 0 4px 8px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .carousel-content p {
            font-size: calc(20px * var(--font-scale));
            margin-bottom: 35px;
            opacity: 0.95;
            font-weight: 400;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        /* Enhanced Quick Access Section */
        .quick-access {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .quick-access::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            animation: floatParticles 25s ease-in-out infinite;
        }

        @keyframes floatParticles {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(-15px) rotate(240deg); }
        }

        .quick-access-card {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.8);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .quick-access-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            transition: all 0.8s ease;
        }

        .quick-access-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
            transition: all 0.5s ease;
            transform: scale(0);
        }

        .quick-access-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(102, 126, 234, 0.3);
            border-color: var(--primary-color);
        }

        .quick-access-card:hover::before {
            left: 100%;
        }

        .quick-access-card:hover::after {
            transform: scale(1);
        }

        .quick-access-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
            background-size: 400% 400%;
            animation: gradientWave 8s ease-in-out infinite;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: calc(40px * var(--font-scale));
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4), 0 0 0 4px rgba(255,255,255,0.8);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .quick-access-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .quick-access-card:hover .quick-access-icon {
            transform: scale(1.15) rotate(15deg);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5), 0 0 0 6px rgba(255,255,255,1);
        }

        .quick-access-card:hover .quick-access-icon::before {
            animation: iconShine 0.8s ease;
        }

        @keyframes iconShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .quick-access-card h4 {
            font-size: calc(20px * var(--font-scale));
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--text-dark);
            font-family: 'Playfair Display', serif;
        }

        .quick-access-card p {
            color: var(--text-light);
            font-size: calc(15px * var(--font-scale));
            margin-bottom: 25px;
            line-height: 1.6;
        }

        /* Enhanced Ministers Section */
        .ministers-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .ministers-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
            animation: floatParticles 30s ease-in-out infinite reverse;
        }

        .ministers-carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            padding: 30px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.3);
        }

        .ministers-carousel {
            display: flex;
            gap: 35px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 25px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .ministers-carousel::-webkit-scrollbar {
            display: none;
        }

        .minister-card {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.8);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 340px;
            max-width: 340px;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .minister-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
            transition: all 1s ease;
        }

        .minister-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
            transition: all 0.6s ease;
            transform: scale(0);
        }

        .minister-card:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow: 0 35px 70px rgba(0,0,0,0.2), 0 0 0 1px rgba(102, 126, 234, 0.3);
        }

        .minister-card:hover::before {
            left: 100%;
        }

        .minister-card:hover::after {
            transform: scale(1);
        }

        .minister-photo {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
            background-size: 400% 400%;
            animation: gradientWave 10s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: calc(52px * var(--font-scale));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .minister-photo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            animation: photoShine 4s infinite;
        }

        @keyframes photoShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
            100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        }

        .minister-info {
            padding: 10px;
            text-align: center;
        }

        .minister-name {
            font-family: 'Playfair Display', serif;
            font-size: calc(20px * var(--font-scale));
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .minister-designation {
            color: var(--primary-color);
            font-weight: 600;
            font-size: calc(15px * var(--font-scale));
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .minister-bio {
            color: var(--text-light);
            font-size: calc(14px * var(--font-scale));
            line-height: 1.7;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4), 0 0 0 4px rgba(255,255,255,0.8);
            z-index: 10;
        }

        .carousel-nav:hover {
            background: linear-gradient(135deg, #f093fb, #f5576c);
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 12px 35px rgba(240, 147, 251, 0.5), 0 0 0 6px rgba(255,255,255,1);
        }

        .carousel-nav-left {
            left: -30px;
        }

        .carousel-nav-right {
            right: -30px;
        }

        @media (max-width: 768px) {
            .carousel-nav {
                display: none;
            }
            
            .ministers-carousel {
                gap: 25px;
            }
            
            .minister-card {
                min-width: 300px;
                max-width: 300px;
            }
        }

        /* Enhanced News Section */
        .news-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .news-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
            animation: floatParticles 35s ease-in-out infinite reverse;
        }

        .news-card {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.8);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: all 0.8s ease;
        }

        .news-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
            transition: all 0.5s ease;
            transform: scale(0);
        }

        .news-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0,0,0,0.18), 0 0 0 1px rgba(16, 185, 129, 0.3);
        }

        .news-card:hover::before {
            left: 100%;
        }

        .news-card:hover::after {
            transform: scale(1);
        }

        .news-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
            background-size: 400% 400%;
            animation: gradientWave 12s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: calc(36px * var(--font-scale));
            position: relative;
            overflow: hidden;
        }

        .news-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.25), transparent);
            transform: rotate(45deg);
            animation: newsImageShine 5s infinite;
        }

        @keyframes newsImageShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
            100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        }

        .news-content {
            padding: 35px;
        }

        .news-date {
            color: var(--accent-color);
            font-size: calc(13px * var(--font-scale));
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .news-title {
            font-family: 'Playfair Display', serif;
            font-size: calc(20px * var(--font-scale));
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 18px;
            line-height: 1.4;
            background: linear-gradient(135deg, var(--text-dark), var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .news-excerpt {
            color: var(--text-light);
            font-size: calc(15px * var(--font-scale));
            line-height: 1.7;
        }

        /* Schedule Section */
        .schedule-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .schedule-item {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.8);
            border-left: 6px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .schedule-item:hover {
            transform: translateX(5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }

        .schedule-date {
            color: var(--primary-color);
            font-weight: 700;
            font-size: calc(15px * var(--font-scale));
        }

        .schedule-time {
            color: var(--text-light);
            font-size: calc(13px * var(--font-scale));
            font-weight: 500;
        }

        .schedule-event {
            font-weight: 600;
            margin: 10px 0;
            font-size: calc(17px * var(--font-scale));
            font-family: 'Playfair Display', serif;
        }

        .schedule-location {
            color: var(--text-light);
            font-size: calc(14px * var(--font-scale));
        }

        /* Photo Gallery */
        .gallery-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
            background-size: 400% 400%;
            animation: gradientWave 15s ease-in-out infinite;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: calc(28px * var(--font-scale));
            color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            transition: all 0.6s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .gallery-item:hover::before {
            transform: translateX(100%);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
            color: white;
            padding: 60px 0 25px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            animation: floatParticles 40s ease-in-out infinite;
        }

        .footer h5 {
            font-family: 'Playfair Display', serif;
            font-size: calc(20px * var(--font-scale));
            font-weight: 600;
            margin-bottom: 25px;
            color: white;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: #d1d5db;
            text-decoration: none;
            font-size: calc(15px * var(--font-scale));
            transition: all 0.3s ease;
            font-weight: 400;
        }

        .footer ul li a:hover {
            color: #fbbf24;
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            margin-top: 40px;
            padding-top: 25px;
            text-align: center;
            color: #9ca3af;
            font-size: calc(15px * var(--font-scale));
        }

        /* Enhanced Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color), #8b5cf6);
            border-radius: 50%;
            opacity: 0.1;
            z-index: -1;
            animation: sectionHeaderPulse 4s ease-in-out infinite;
        }

        @keyframes sectionHeaderPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
            50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.05; }
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: calc(48px * var(--font-scale));
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
            background-size: 400% 400%;
            animation: gradientWave 8s ease-in-out infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
            border-radius: 3px;
        }

        .section-header p {
            font-size: calc(20px * var(--font-scale));
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Enhanced Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            background-size: 400% 400%;
            animation: gradientWave 6s ease-in-out infinite;
            border: none;
            padding: 16px 40px;
            font-weight: 700;
            border-radius: 50px;
            font-size: calc(15px * var(--font-scale));
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4), 0 0 0 2px rgba(255,255,255,0.8);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.6s ease;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 10px 30px rgba(240, 147, 251, 0.5), 0 0 0 3px rgba(255,255,255,1);
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:active {
            transform: translateY(-2px) scale(1.02);
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 14px 35px;
            font-weight: 600;
            border-radius: 8px;
            font-size: calc(15px * var(--font-scale));
            transition: all 0.4s ease;
            background: transparent;
        }

        .btn-outline-primary:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }

        /* Login Modal */
        .modal-header {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
        }

        .modal-header .btn-close {
            filter: invert(1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .carousel-content h2 {
                font-size: calc(36px * var(--font-scale));
            }
            
            .carousel-content p {
                font-size: calc(18px * var(--font-scale));
            }
            
            .site-title {
                font-size: calc(26px * var(--font-scale));
            }
            
            .section-header h2 {
                font-size: calc(32px * var(--font-scale));
            }
            
            .hero-carousel {
                height: 500px;
            }
            
            .carousel-item {
                height: 500px;
            }
        }

        /* Animation Classes */
        .fade-in {
            animation: fadeIn 1s ease-out;
        }

        .fade-in-up {
            animation: fadeInUp 1s ease-out;
        }

        .fade-in-left {
            animation: fadeInLeft 1s ease-out;
        }

        .fade-in-right {
            animation: fadeInRight 1s ease-out;
        }

        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(40px) scale(0.9); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Pulse animation for important elements */
        .pulse {
            animation: pulse 2.5s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(102, 126, 234, 0); }
            100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
        }

        /* Application Tracking */
        .tracking-form {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.8);
            margin-top: 40px;
            backdrop-filter: blur(10px);
        }

        .tracking-result {
            background: linear-gradient(145deg, #f8fafc, #e2e8f0);
            padding: 30px;
            border-radius: 16px;
            margin-top: 25px;
            border-left: 6px solid var(--accent-color);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }

        .status-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 25px;
            font-size: calc(13px * var(--font-scale));
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-pending {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            color: #92400e;
        }

        .status-approved {
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            color: #065f46;
        }

        .status-processing {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            color: #1e40af;
        }

        /* Enhanced Form Controls */
        .form-control {
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: calc(15px * var(--font-scale));
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(10px);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
            background: white;
        }

        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: calc(14px * var(--font-scale));
        }
		
		.col-lg-3-1 {
			flex: 0 0 auto;
			width: 20%;
		}