@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Arima:wght@400;700&display=swap');

:root {
    --primary: #9d1a1e; /* Deep Red */
    --secondary: #d4af37; /* Metallic Gold */
    --dark: #0a0a0a;
    --dark-surface: #1a1a1a;
    --light: #f5f5f7;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.95);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: #050505;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(157, 26, 30, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 120px;
}

h1, h2, h3, .nav-links a {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.tamil-text {
    font-family: 'Arima', cursive;
    text-transform: none;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Header & Navigation */
header {
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-live-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 20px;
    background: rgba(157, 26, 30, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
}

.mini-eq { display: flex; gap: 3px; align-items: flex-end; height: 18px; }
.mini-eq-bar { width: 2px; background: var(--secondary); border-radius: 1px; animation: miniBounce 1s infinite ease-in-out; }
@keyframes miniBounce { 0%, 100% { height: 4px; } 50% { height: 15px; } }
.mini-eq-bar:nth-child(2) { animation-delay: 0.2s; }
.mini-eq-bar:nth-child(3) { animation-delay: 0.4s; }
.mini-eq-bar:nth-child(4) { animation-delay: 0.1s; }
.mini-eq-bar:nth-child(5) { animation-delay: 0.3s; }

.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--light); font-weight: 500; font-size: 0.95rem;
    transition: 0.3s; padding: 8px 15px; border-radius: 4px;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.96), rgba(157, 26, 30, 0.4)), url('../hero_bg_mixer.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    z-index: 5;
}

.dual-clocks { display: flex; gap: 30px; margin-bottom: 30px; }
.clock-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 25px;
    border-radius: 12px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.clock-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 150%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent 70%);
    animation: clockGlowMove 10s linear infinite;
}

@keyframes clockGlowMove {
    0% { transform: translate(-10%, -10%); }
    50% { transform: translate(10%, 10%); }
    100% { transform: translate(-10%, -10%); }
}

/* Hyper-Bright Live Beacon */
.live-beacon {
    width: 14px; height: 14px;
    background: #ff0000;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    display: inline-block;
}

.live-beacon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #ff0000;
    animation: beaconPulse 2s infinite;
}

.live-beacon::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.8), transparent 70%);
    animation: beaconAura 1.5s infinite alternate;
}

@keyframes beaconPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

@keyframes beaconAura {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.3); }
}

.clock-box.pulse-glow {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    animation: clockPulse 2s ease-in-out infinite;
}

@keyframes clockPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.25); }
}

.clock-box .label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--secondary); letter-spacing: 1px; }
.clock-box h3 { font-size: 1.6rem !important; color: var(--white) !important; margin: 5px 0 !important; font-weight: 700; }
.clock-box .date-label { display: block; font-size: 0.65rem; color: var(--secondary); font-weight: 600; opacity: 0.8; }

.hero-title { margin-top: 35px; font-size: 2.22rem; margin-bottom: 5px; }

.next-show-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.04);
    width: fit-content;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.next-prefix {
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

#next-show-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.next-countdown {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.8rem;
    opacity: 0.8;
}

.main-tagline {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--white);
    animation: textFloat 6s ease-in-out infinite;
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.main-tagline span { 
    background: linear-gradient(135deg, #d4af37 0%, #fdfc47 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textBeat 2s ease-in-out infinite, textShine 4s linear infinite;
    background-size: 200% auto;
    display: inline-block;
}

@keyframes textFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes textBeat { 0%, 100% { transform: scale(1); filter: brightness(1); } 50% { transform: scale(1.04); filter: brightness(1.3); } }
@keyframes textShine { to { background-position: 200% center; } }

.hero-left p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 650px;
    border-left: 4px solid var(--secondary);
    padding-left: 25px;
    font-weight: 300;
}

/* Premium Logo VFX */
.hero-right { display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.hero-logo-display { position: relative; padding: 30px; z-index: 10; cursor: pointer; }
.hero-large-logo {
    max-width: 480px; width: 100%; position: relative; z-index: 5;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
    animation: logoBreathe 4s ease-in-out infinite;
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-logo-display:hover .hero-large-logo {
    transform: rotateX(6deg) rotateY(12deg) scale(1.02);
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.45)) drop-shadow(0 0 100px rgba(157, 26, 30, 0.2));
}

.hero-logo-display::after {
    content: ''; position: absolute; top: 50%; left: 50%; width: 200%; height: 100%;
    background: linear-gradient(115deg, transparent 30%, rgba(212, 175, 55, 0.3) 45%, rgba(255,255,255,0.6) 50%, rgba(212,175,55,0.3) 55%, transparent 70%);
    transform: translate(-50%, -50%) rotate(-45deg) scale(0);
    opacity: 0; transition: transform 0.6s ease, opacity 0.6s ease; z-index: 6; pointer-events: none;
}
.hero-logo-display:hover::after { transform: translate(-30%, -30%) rotate(-45deg) scale(1.6); opacity: 0.8; }

@keyframes logoBreathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* About Us Section */
.about-section { padding: 120px 0; background: rgba(0,0,0,0.3); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-img-box { position: relative; }
.about-img-box img { width: 100%; border-radius: 20px; border: 1px solid var(--glass-border); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.since-badge {
    position: absolute; bottom: -20px; right: -20px; background: var(--secondary); color: var(--dark);
    padding: 15px 35px; border-radius: 50px; font-weight: 800; box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}
.about-content h2 { font-size: 3.5rem; margin-bottom: 30px; line-height: 1.2; }
.about-content h2 span { color: var(--secondary); }
.about-content p { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 25px; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
.premium-glass {
    background: rgba(255, 255, 255, 0.035); border: 1px solid var(--glass-border); padding: 30px; border-radius: 20px;
    display: flex; align-items: center; gap: 20px; transition: 0.4s; backdrop-filter: blur(10px);
}
.premium-glass:hover { background: rgba(212, 175, 55, 0.08); border-color: var(--secondary); transform: translateY(-5px); }
.stat-icon { font-size: 2.22rem; color: var(--secondary); }
.stat-info h4 { font-size: 1.6rem; margin: 0; color: var(--white); }
.stat-info p { font-size: 0.95rem !important; margin: 0; color: var(--secondary) !important; font-weight: 600; text-transform: uppercase; }

/* Section Title Standard */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 3.2rem; margin-bottom: 15px; }
.section-title h2 span { color: var(--secondary); }
.section-title p { color: var(--text-muted); font-size: 1.1rem; }

/* Program Schedule Section */
#schedule { padding: 100px 0; }

.tabs-container { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
.tab-btn {
    background: var(--dark-surface); border: 1px solid var(--glass-border); color: white;
    padding: 12px 30px; border-radius: 50px; cursor: pointer; transition: 0.3s; font-weight: 600;
}
.tab-btn.active { background: var(--secondary); color: var(--dark); box-shadow: 0 0 20px rgba(212,175,55,0.3); }

.schedule-tab-content { display: none; }
.schedule-tab-content.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.schedule-card-mini {
    background: var(--dark-surface); border: 1px solid var(--glass-border); padding: 20px;
    border-radius: 18px; display: flex; align-items: center; gap: 20px; transition: 0.4s;
    border-left: 4px solid var(--primary); min-height: 100px;
}
.schedule-card-mini:hover { border-color: var(--secondary); transform: translateX(8px); }
.schedule-card-mini img { width: 65px; height: 65px; border-radius: 10px; object-fit: cover; }
.show-details { flex: 1; }
.show-details h4 { font-size: 1.2rem; margin-bottom: 4px; color: var(--white); }
.time-mark { color: var(--secondary); font-weight: 700; font-size: 0.85rem; line-height: 1.4; display: block; min-width: 120px; }

.schedule-card-mini.active-live {
    border-left: 6px solid var(--secondary) !important;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), transparent) !important;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1); position: relative; overflow: hidden;
}
.schedule-card-mini.active-live::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: auroraShine 4s linear infinite;
}
@keyframes auroraShine { 0% { left: -100%; } 100% { left: 200%; } }

/* RJ Celebrity Section */
.rj-section { padding: 100px 0; border-top: 1px solid var(--glass-border); background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent); position: relative; }
.rj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 60px; justify-content: center; }
.rj-card {
    background: var(--dark-surface); border: 1px solid var(--glass-border); padding: 45px 30px;
    border-radius: 30px; text-align: center; transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px); display: flex; flex-direction: column; align-items: center;
}
.rj-card:hover { transform: translateY(-20px); border-color: var(--secondary); box-shadow: 0 30px 60px rgba(212,175,55,0.15); }

.rj-img-container { width: 180px; height: 180px; margin-bottom: 25px; position: relative; animation: blobFloat 6s ease-in-out infinite; }
@keyframes blobFloat { 0%, 100% { transform: translateY(0) scale(1.02); } 50% { transform: translateY(-15px) scale(0.98); } }

.rj-img-container img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    border: 3px solid var(--secondary); box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 2; position: relative; transition: 0.5s;
}
.rj-card:hover .rj-img-container img { border-radius: 50%; transform: scale(1.08); }

.rj-img-container::after {
    content: ''; position: absolute; inset: -8px; border: 2px dashed var(--secondary);
    border-radius: 50%; opacity: 0.3; animation: rotateSlow 20s linear infinite; z-index: 1;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.rj-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.rj-card p { font-size: 0.9rem; color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; }

/* Contact & Connect Section */
.contact-section { padding: 120px 0; background: linear-gradient(to bottom, transparent, rgba(157, 26, 30, 0.08)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info-card { background: var(--dark-surface); padding: 50px; border-radius: 30px; border: 1px solid var(--glass-border); height: 100%; }
.contact-info-card h3 { color: var(--secondary); font-size: 2.2rem; margin-bottom: 30px; }
.info-item { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; color: var(--text-muted); font-size: 1.1rem; }
.info-item i { color: var(--secondary); font-size: 1.4rem; padding: 12px; background: rgba(212,175,55,0.1); border-radius: 12px; }

.social-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 40px; }
.social-card {
    background: rgba(255, 255, 255, 0.04); padding: 25px; border-radius: 18px; text-align: center;
    border: 1px solid var(--glass-border); transition: 0.4s;
}
.social-card:hover { background: var(--secondary); color: var(--dark); transform: translateY(-8px); }
.social-card i { font-size: 1.8rem; margin-bottom: 10px; display: block; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form input, .contact-form textarea {
    background: rgba(255, 255, 255, 0.06); border: 1px solid var(--glass-border);
    padding: 18px 25px; border-radius: 12px; color: var(--white); outline: none; transition: 0.3s;
    width: 100%; font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--secondary); box-shadow: 0 0 20px rgba(212, 175, 55, 0.25); background: rgba(255,255,255,0.08);
}
.btn-send {
    background: var(--secondary); color: var(--dark); padding: 20px; border: none; border-radius: 12px;
    font-weight: 800; text-transform: uppercase; cursor: pointer; transition: 0.4s; font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}
.btn-send:hover { background: #fdfc47; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(212,175,55,0.3); }

/* --- FLOATING PREMIUM PLAYER --- */
.floating-player {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2000;
    width: auto; min-width: 550px; background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border); border-radius: 100px; padding: 12px 40px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.9); animation: playerSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes playerSlideUp { from { transform: translate(-50%, 150%); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

.player-content { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.player-info { display: flex; align-items: center; gap: 18px; }
.live-pulse-ring {
    width: 12px; height: 12px; background: var(--secondary); border-radius: 50%; position: relative;
    box-shadow: 0 0 12px var(--secondary); animation: ringPulse 2s infinite;
}
@keyframes ringPulse { 0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); } 70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); } 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); } }
.status-label { display: block; font-size: 0.65rem; font-weight: 800; color: var(--secondary); letter-spacing: 2px; }
.player-info .show-name { font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }

.player-controls { display: flex; align-items: center; gap: 25px; }
.player-btn-glow {
    width: 65px; height: 65px; background: var(--secondary); border: none; border-radius: 50%;
    color: var(--dark); font-size: 1.35rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); transition: 0.4s; position: relative;
}
.player-btn-glow:hover { transform: scale(1.1); box-shadow: 0 0 45px rgba(212, 175, 55, 0.65); }
.player-btn-glow.playing { animation: auroraGlow 3s infinite alternate; }
@keyframes auroraGlow { 0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); } 100% { box-shadow: 0 0 65px rgba(212, 175, 55, 0.8), 0 0 100px rgba(157, 26, 30, 0.3); } }

.mini-visualizer { display: flex; align-items: flex-end; gap: 3px; height: 35px; opacity: 0.3; }
.mini-visualizer.active { opacity: 1; }
.mini-visualizer span { width: 3px; background: var(--secondary); border-radius: 2px; height: 5px; }
.mini-visualizer.active span { animation: barDance 1s infinite ease-in-out; }
@keyframes barDance { 0%, 100% { height: 5px; } 50% { height: 30px; } }
.mini-visualizer span:nth-child(2) { animation-delay: 0.2s; }
.mini-visualizer span:nth-child(3) { animation-delay: 0.4s; }
.mini-visualizer span:nth-child(4) { animation-delay: 0.1s; }
.mini-visualizer span:nth-child(5) { animation-delay: 0.3s; }

.volume-box { display: flex; align-items: center; gap: 15px; color: var(--secondary); }
.volume-box input[type="range"] { width: 110px; accent-color: var(--secondary); cursor: pointer; }

/* Responsive Adjustments & App UI */
@media (max-width: 1100px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-split { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .main-tagline { font-size: 2.8rem; line-height: 1.2; margin-bottom: 1.5rem; }
    .hero-left p { margin: 0 auto 30px; border-left: none; border-bottom: 3px solid var(--secondary); padding-bottom: 15px; font-size: 1rem; }
    
    /* App Style Player for Mobile */
    .floating-player { 
        min-width: 95% !important; 
        bottom: 80px !important; 
        padding: 8px 15px; 
        border-radius: 15px;
        background: rgba(10, 10, 10, 0.98);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .player-content { gap: 15px; }
    .volume-box, .mini-visualizer, .player-info .status-label { display: none; }
    .player-info .show-name { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
    .player-btn-glow { width: 45px; height: 45px; font-size: 1rem; }

    .dual-clocks { flex-direction: row; justify-content: center; gap: 10px; margin-bottom: 20px; }
    .clock-box { min-width: 140px; padding: 8px 12px; }
    .clock-box h3 { font-size: 1.1rem !important; }
    .clock-box .label { font-size: 0.6rem; }
    
    .next-show-label { margin: 0 auto 20px; font-size: 0.75rem; padding: 5px 12px; }
}

/* App Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #0a0a0a;
    border-top: 1px solid var(--glass-border);
    z-index: 2100;
    justify-content: space-around;
    align-items: center;
    padding: 0 5px;
}

.mobile-bottom-nav .nav-item {
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.6;
    transition: 0.3s;
    flex: 1;
}

.mobile-bottom-nav .nav-item i { font-size: 1.2rem; }
.mobile-bottom-nav .nav-item span { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.mobile-bottom-nav .nav-item.active, .mobile-bottom-nav .nav-item:hover {
    color: var(--secondary);
    opacity: 1;
}

@media (max-width: 768px) {
    header .nav-links, header .header-live-info { display: none; }
    header .container { justify-content: center; }
    header .menu-toggle { display: none; }
    
    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 150px; }
}

@media (max-width: 600px) {
    .main-tagline { font-size: 2rem; }
    .main-tagline span { display: block; } /* Break Thamil to next line for better fit */
    .hero-title { font-size: 1.4rem; margin-top: 20px; }
    .hero { height: auto; padding: 100px 0 60px; min-height: 100vh; }
    .hero-large-logo { max-width: 250px; margin-top: 20px; }
    
    .dual-clocks { flex-wrap: wrap; }
    .clock-box { min-width: calc(50% - 10px); }
    
    .about-content h2 { font-size: 2.2rem; }
    .section-title h2 { font-size: 2rem; }
}


