   
        :root {
            --primary-red: #e62117;
            --deep-gold:    #b89b00;
            --glass-bg: rgba(255, 255, 255, 0.9);
            --dark-bg: #1e272e;
            --glass: rgba(255, 255, 255, 0.95);
        }

        body { 
            font-family: 'Inter', 'Hind Madurai', sans-serif; 
            background-color: #f8fafc;
            color: #334155;
            overflow-x: hidden;
        }

        /* --- Header & Navigation --- */
        header {
            position: fixed; width: 100%; top: 0; z-index: 1100;
            padding: 15px 0; transition: all 0.4s ease;
            background: rgba(0, 0, 0, 0.3);
        }

        header.scrolled {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            padding: 8px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-bottom: 2px solid var(--deep-gold);
        }

        .logo-wrapper img {
            height: 60px; border-radius: 8px; background: white;
            padding: 4px; transition: 0.4s;
        }

        header.scrolled .logo-wrapper img { height: 45px; }
        header.scrolled .site-title h4 { color: #111; text-shadow: none; }
        header.scrolled nav a { color: #333 !important; }

        .site-title h4 { 
            color: white; font-size: 16px; margin: 0; 
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        nav a {
            color: white !important; text-decoration: none;
            font-weight: 600; font-size: 13px; text-transform: uppercase;
            padding: 10px 15px; transition: 0.3s;
        }

        nav a:hover { color: var(--deep-gold) !important; }

        /* --- Hero Section --- */
        .hero-section {
            height: 85vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/iyngaran.jpeg') center/cover;
            display: flex; align-items: center; justify-content: center;
            text-align: center; color: white; clip-path: ellipse(150% 100% at 50% 0%);
        }

        .hero-content h1 { font-size: clamp(2rem, 6vw, 4rem); font-weight: 800; }
        .highlight { color: #fbc531; }

        /* --- Event Cards & Glass Box --- */
        .section-title { text-align: center; font-weight: 800; margin-bottom: 50px; text-transform: uppercase; }
        .section-title::after { content: ''; display: block; width: 50px; height: 4px; background: var(--primary-red); margin: 10px auto; }

        .event-card {
            background: white; border-radius: 20px; padding: 40px 25px;
            text-align: center; transition: all 0.4s ease; border: 1px solid #eee;
            position: relative; overflow: hidden; z-index: 1;
        }

        .event-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0;
            background: var(--primary-red); transition: 0.4s; z-index: -1;
        }

        .event-card:hover::before { height: 100%; }
        .event-card:hover { transform: translateY(-10px); color: white !important; }
        .event-card:hover p { color: white !important; }

        .event-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
        .status-pill {
            display: inline-block; padding: 5px 15px; border-radius: 50px;
            background: #fff0f0; color: var(--primary-red); font-size: 10px; font-weight: 800;
        }

        .glass-box {
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            border-radius: 24px; padding: 40px; border: 1px solid rgba(255,255,255,0.8);
            transition: 0.3s;
        }

        .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
        .card-link { text-decoration: none; color: inherit; }
        
        .value-card {
            background: white; padding: 40px 30px; border-radius: 20px;
            text-align: center; transition: 0.4s ease; border: 1px solid #e2e8f0; height: 100%;
        }
        .value-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--primary-red); }
        .value-card h3 { font-weight: 700; color: #1e293b; margin-bottom: 15px; }

        /* --- Login Box --- */
        .login-widget { background: var(--dark-bg); border-radius: 20px; padding: 30px; color: white; }
        .form-control-modern {
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
            color: white; border-radius: 10px; padding: 12px; margin-bottom: 15px;
        }

        .btn-modern, .btn-primary {
            background: var(--primary-red); border: none; padding: 12px 30px;
            font-weight: 700; border-radius: 50px; transition: 0.3s; color: white; text-decoration: none;
            display: inline-flex; align-items: center; justify-content: center;
        }
        .btn-modern:hover, .btn-primary:hover { background: #ff3e33; transform: scale(1.02); color: white; }

        [data-lang="en"] { display: none; }

        @media (max-width: 992px) {
            .mobile-nav-btn { display: block; color: white; font-size: 30px; cursor: pointer; }
            nav.desktop-menu { display: none; }
            .hero-section { height: 60vh; }
        }
         /* DROPDOWN */
        .dropdown { position: relative; }
        .dropdown-content {
            position: absolute; top: 100%; left: 0; background: white;
            min-width: 200px; box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            border-top: 3px solid var(--deep-gold); border-radius: 0 0 8px 8px;
            padding: 10px 0; z-index: 1000;
            opacity: 0; visibility: hidden; transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-content a { color: #333 !important; display: block; padding: 12px 20px; }
        .dropdown-content a:hover { background: #fff9e6; color: var(--deep-gold) !important; }

        
        .lang-control {
                background-color: #ffffff;
                color: #8a7400; 
                border: 1px solid #b89b00;
                padding: 5px 10px;
                border-radius: 20px;
                font-weight: bold;
            }

        /* MOBILE STYLES */
.menu-toggle { 
    display: none; 
    color: white; 
    font-size: 28px; 
    cursor: pointer; 
}

@media (max-width: 1024px) {
    .menu-toggle { 
        display: block; 
    }

    nav#mobile-menu {
        display: none; /* ஆரம்பத்தில் மறைத்து வைக்க */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        /* Contrast-க்காக அடர் நிறம் */
        background: #ed635c !important; 
        padding: 20px;
        z-index: 1000;
    }

    nav#mobile-menu.active { 
        display: flex; 
    }

    .dropdown-content { 
        position: static; 
        opacity: 1; 
        visibility: visible; 
        display: none; 
        background: rgba(0,0,0,0.2); /* Contrast-க்காக சற்று அதிக அடர்த்தி */
        width: 100%;
    }

    .dropdown.open-mobile .dropdown-content { 
        display: block; 
    }
} /* இங்கே Media Query சரியாக மூடாப்பட்டுள்ளது */

/* BREADCRUMB */
.breadcrumb-area {
    position: absolute; 
    bottom: 50px; 
    left: 5%; 
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 30px; 
    border-left: 5px solid #b89b00; 
    max-width: 80%;
}

/* NAV MENU */
nav { 
    display: flex; 
    align-items: center; 
}

nav#mobile-menu { 
    gap: 5px; 
}

nav a, .drop-trigger {
    color: #ffffff !important; /* சுத்தமான வெள்ளை */
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 700; /* Contrast-க்காக தடிமனான எழுத்துக்கள் */
    padding: 12px 15px; 
    border-radius: 6px; 
    transition: 0.3s;
    display: block;
}

/* Hover effect - Contrast-ஐ உறுதி செய்ய */
nav a:hover, .drop-trigger:hover { 
    color:#bf9519 !important;
    background: rgba(255, 255, 255, 0.2); 
}

/* LOGO POP-UP */
.logo-section { 
    position: relative; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    overflow: visible !important; 
}

.logo-wrapper { 
    position: relative; 
    z-index: 9999; 
}

.logo-wrapper img {
    height: 65px; 
    width: auto; 
    border-radius: 8px; 
    background: white; 
    padding: 3px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: top left; 
}

        .site-title h4 { color: white; font-size: 18px; line-height: 1.2; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
        .video-container iframe {
            width: 100%;
            min-height: 300px;
            border-radius: 15px;
        }
        .side-section-title {
            font-size: 1.3rem; font-weight: 800; color: var(--primary);
            margin-bottom: 25px; position: relative; padding-bottom: 12px;
        }
        .side-section-title::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 50px; height: 4px; background: var(--gold-gradient); border-radius: 10px;
        }

        .side-card {
            display: flex; gap: 12px; background: #fff; padding: 12px;
            border-radius: 18px; margin-bottom: 15px; transition: 0.4s;
            text-decoration: none; color: inherit; border: 1px solid rgba(0,0,0,0.05);
        }
        .side-card:hover { 
            transform: scale(1.02) translateX(5px); 
            box-shadow: 0 15px 30px rgba(184, 155, 0, 0.1);
            border-color: var(--gold);
        }
        .side-img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; }
        
        .desc-box { 
            background: white; padding: 40px; border-radius: 25px; 
            margin-top: 35px; border-top: 5px solid var(--gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
                .status-pill {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 11px; /* எழுத்தின் அளவை சற்று கூட்டலாம் */
            font-weight: 800;
            
            /* Active Now - அடர் சிவப்பு மற்றும் வெள்ளை எழுத்துக்கள் */
            background: #e62117; 
            color: #ffffff !important; 
            
            /* அல்லது லேசான பின்னணி வேண்டும் என்றால் எழுத்தை இன்னும் கருப்பாக்க வேண்டும் */
            /* background: #ffebeb; color: #b3160d; */
        }
        /* Bootstrap Icons-க்கு font-display swap-ஐ கட்டாயப்படுத்துதல் */
@font-face {
  font-family: 'bootstrap-icons';
  src: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/fonts/bootstrap-icons.woff2?2820a38...') format('woff2');
  font-display: swap;
}
   