/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #FF7CA3;
    --primary-orange: #FF914D;
    --accent-purple: #9C27B0;
    --accent-blue: #2196F3;
    --dark-text: #2c3e50;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.2);
    --gradient: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
    --gradient-alt: linear-gradient(45deg, var(--accent-purple), var(--primary-pink), var(--primary-orange));
    --gradient-blue: linear-gradient(135deg, var(--accent-blue), var(--primary-pink));
    --border-radius: 15px;
    --border-radius-lg: 25px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glow: 0 0 20px rgba(255, 124, 163, 0.3);
}

body {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow-x: hidden;
}

/* All headings use Kumbh Sans Devanagari */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Kumbh Sans Devanagari', 'Noto Sans Devanagari', sans-serif;
    font-weight: 600;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="50" cy="50" r="1" fill="%23FF7CA3" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-btn, .call-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before, .call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.whatsapp-btn:hover::before, .call-btn:hover::before {
    transform: translateX(100%);
}

.whatsapp-btn {
    background: #25D366 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}

.call-btn {
    background: var(--gradient);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #25D366 !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6) !important;
}

.call-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Enhanced WhatsApp Button Responsive Design */
@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    
    .whatsapp-btn {
        background: #25D366 !important;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
    }
    
    .whatsapp-btn:hover {
        background: #25D366 !important;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
    }
}

@media (max-width: 480px) {
    .fixed-buttons {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .whatsapp-btn {
        background: #25D366 !important;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    }
    
    .whatsapp-btn:hover {
        transform: scale(1.05);
        background: #25D366 !important;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    }
    
    .call-btn:hover {
        transform: scale(1.05);
    }
}

/* WhatsApp Button Pulse Animation Enhancement */
.whatsapp-btn {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Button in Quick Menu */
.whatsapp-menu-btn {
    background: #25D366 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-menu-btn:hover {
    background: #128C7E !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    transform: scale(1.1) !important;
}

/* Enhanced Action Button Animations */
.action-btn {
    transition: all 0.3s ease !important;
}

.action-btn:hover {
    transform: scale(1.1);
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 124, 163, 0.1);
}

.header-top {
    background: var(--gradient-alt);
    color: white;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}


.lang-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 124, 163, 0.3);
    color: var(--primary-pink);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 124, 163, 0.2);
    min-width: 65px;
    text-align: center;
}

.lang-btn::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: left 0.6s ease;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-pink);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 124, 163, 0.4);
    color: var(--primary-pink);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(255, 124, 163, 0.5);
    font-weight: 700;
    transform: scale(1.1);
}

.lang-btn.active::after {
    content: '✓';
    position: absolute;
    top: -3px;
    right: 3px;
    font-size: 12px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.emblem {
    width: 60px;
    height: 60px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 14px;
    color: var(--dark-text);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}


/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.5); }
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 18px 40px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.cta-btn::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: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 124, 163, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 124, 163, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 124, 163, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow);
}

.stat-card:hover .stat-number {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 20px rgba(255, 124, 163, 0.3);
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-alt);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.stat-content p {
    font-size: 16px;
    color: var(--dark-text);
}

/* Initiatives Section */
.initiatives-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    justify-items: center;
}

.initiative-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 124, 163, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    width: 100%;
}

.initiative-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 124, 163, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.initiative-card:hover::after {
    opacity: 1;
}

.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.initiative-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.initiative-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--glow);
}

.initiative-card:hover .progress {
    animation: progressGlow 1.5s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(255, 124, 163, 0.5); }
    100% { box-shadow: 0 0 15px rgba(255, 124, 163, 0.8); }
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 20px rgba(255, 124, 163, 0.3);
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-alt);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.initiative-card:hover .card-icon::before {
    opacity: 1;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.progress-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-pink);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: var(--white);
}

/* News Image Grid */
.news-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-image-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 124, 163, 0.1);
}

.news-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
    z-index: 2;
}

.news-image-card:hover::before {
    transform: scaleX(1);
}

.news-image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.news-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.news-image-card:hover .news-img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-section {
        padding: 40px 0;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23FF7CA3" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23FF914D" opacity="0.1"/><circle cx="50" cy="80" r="1" fill="%23FF7CA3" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
}

.footer-top {
    padding: 40px 0 25px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo::before {
    
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 124, 163, 0.3);
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
    text-align: justify;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links 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;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 124, 163, 0.4);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: white;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-orange));
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li {
    margin-bottom: 0;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-col ul li a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.footer-col ul li a::before {
    content: '▶';
    font-size: 10px;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 124, 163, 0.1);
    border-color: var(--primary-pink);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span {
    color: #bdc3c7;
    font-size: 13px;
    line-height: 1.4;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 600;
}

.footer-decoration {
    display: flex;
    gap: 15px;
    font-size: 20px;
    color: var(--primary-orange);
}

.footer-decoration i {
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.5s);
}

.footer-decoration i:nth-child(1) { --i: 0; }
.footer-decoration i:nth-child(2) { --i: 1; }
.footer-decoration i:nth-child(3) { --i: 2; }

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

/* Enhanced Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
    
    .footer-top {
        padding: 35px 0 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-col ul li a {
        justify-content: center;
    }
    
    .contact-item {
        text-align: left;
        justify-content: flex-start;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-decoration {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        padding: 0 10px;
        gap: 20px;
    }
    
    .footer-top {
        padding: 25px 0 15px;
    }
    
    .footer-logo::before {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .footer-logo h3 {
        font-size: 18px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    .footer-col p {
        font-size: 13px;
    }
    
    .contact-item {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .contact-item i {
        font-size: 14px;
    }
    
    .contact-item span {
        font-size: 12px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-bottom-content p {
        font-size: 12px;
    }
    
    .footer-decoration {
        font-size: 16px;
        gap: 10px;
    }
}

/* Enhanced Hamburger Menu with Village Theme */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.hamburger::after {
    content: '🏛️';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 12px;
    opacity: 0.7;
}

.hamburger:hover {
    background: rgba(255, 124, 163, 0.1);
}

.hamburger:active {
    background: rgba(255, 124, 163, 0.2);
    transform: scale(0.95);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    animation: bannerZoom 20s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 20px;
}

.banner-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.banner-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.banner-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 160px;
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 124, 163, 0.5);
    color: white;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-banner {
        height: 650px;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .hero-banner {
        height: 550px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-banner {
        height: 500px;
    }
    
    .banner-text h1 {
        font-size: 2.8rem;
    }
    
    .banner-text p {
        font-size: 1.2rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero-banner {
        height: 400px;
    }
    
    .banner-image img {
        object-position: center center;
    }
    
    .banner-overlay {
        background: linear-gradient(
            to bottom, 
            rgba(0, 0, 0, 0.15) 0%, 
            rgba(0, 0, 0, 0.35) 100%
        );
    }
    
    .banner-text h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .banner-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 200px;
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .hero-banner {
        height: 350px;
    }
    
    .banner-image img {
        object-position: center center;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-banner {
        height: 300px;
    }
    
    .banner-image img {
        object-position: center center;
        object-fit: cover;
    }
    
    .banner-overlay {
        background: linear-gradient(
            to bottom, 
            rgba(0, 0, 0, 0.2) 0%, 
            rgba(0, 0, 0, 0.4) 100%
        );
    }
    
    .banner-text h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .banner-text {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 180px;
        width: 90%;
        max-width: 260px;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .hero-banner {
        height: 280px;
    }
    
    .banner-image img {
        object-position: center center;
    }
    
    .banner-text h1 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .banner-text p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 9px 18px;
        font-size: 0.85rem;
        min-width: 160px;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .hero-banner {
        height: 250px;
    }
    
    .banner-image img {
        object-position: center center;
    }
    
    .banner-text h1 {
        font-size: 1.2rem;
    }
    
    .banner-text p {
        font-size: 0.8rem;
    }
}

/* About Modern Section - 4 Cards in 1 Row */
.about-modern-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.modern-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
    margin: 0 15px;
}

.decoration-icon {
    font-size: 2rem;
    color: var(--primary-pink);
}

.modern-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
}

.about-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 124, 163, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 124, 163, 0.2);
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.card-content {
    text-align: left;
}

.card-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.highlight-stats {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.development-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dev-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.dev-icon {
    font-size: 1.2rem;
}

.sarpanch-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-image {
    position: relative;
    margin-bottom: 15px;
}

.profile-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
}

.profile-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.profile-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.qualification {
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.contact-icon {
    font-size: 1rem;
}

.hospital-address {
    margin-top: 15px;
}

.address-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.address-icon {
    font-size: 1rem;
    color: var(--primary-pink);
}

.hospital-desc {
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 15px !important;
}

/* Responsive Design for About Cards */
@media (max-width: 1024px) {
    .about-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modern-section-header h2 {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .highlight-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .sarpanch-profile {
        flex-direction: column;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        gap: 30px;
        box-shadow: none;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 24px;
        font-weight: 600;
        padding: 15px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        text-align: center;
        min-width: 200px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .nav-link:hover {
        background: var(--gradient);
        color: white;
        transform: scale(1.05);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Ensure all nav links are visible in mobile */
    .nav-menu .nav-link {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Special styling for contact link to ensure visibility */
    .nav-menu .nav-link[data-translate="contact"],
    .nav-menu .nav-link[href*="contact"] {
        background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
        color: white !important;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(255, 124, 163, 0.3);
        border: 2px solid transparent;
    }
    
    .nav-menu .nav-link[data-translate="contact"]:hover,
    .nav-menu .nav-link[href*="contact"]:hover {
        background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(255, 124, 163, 0.5);
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 20px;
        padding: 0 20px;
    }
    
    .initiative-card {
        padding: 25px 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .news-card {
        flex-direction: column;
        text-align: center;
    }
    
    .news-date {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-top {
        padding: 8px 0;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 12px;
    }
    
    .contact-info span {
        margin-right: 0;
        padding: 5px 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(5px);
    }
    
    .language-switcher {
        justify-content: center;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 55px;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-text h1 {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .logo-text p {
        display: none;
    }
    
    .nav-link {
        font-size: 20px;
        min-width: 180px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-info span {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .initiative-card {
        padding: 30px 20px;
    }
    
    /* Ensure mobile menu covers full screen */
    .nav-menu {
        padding-top: 80px;
    }
    
    /* Add staggered animation for mobile menu items */
    .nav-menu.active .nav-link {
        animation: slideInFromLeft 0.5s ease-out forwards;
    }
    
    .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active .nav-link:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active .nav-link:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu.active .nav-link:nth-child(7) { animation-delay: 0.7s; }
    
    @keyframes slideInFromLeft {
        0% {
            opacity: 0;
            transform: translateX(-50px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 60%; animation-delay: 8s; }
.particle:nth-child(6) { left: 70%; animation-delay: 10s; }
.particle:nth-child(7) { left: 80%; animation-delay: 12s; }
.particle:nth-child(8) { left: 90%; animation-delay: 14s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 124, 163, 0.1);
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 80%;
    animation-delay: 14s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-btn.primary {
    background: var(--gradient);
    color: white;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Enhanced Stats */
.stat-sparkle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-card:hover .stat-sparkle {
    animation-duration: 1s;
}

.counter {
    display: inline-block;
}

.plus {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Custom Scrollbar with Village Theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-pink);
}

/* Village-themed Mobile Enhancements */
@media (max-width: 768px) {
    /* Touch-friendly button sizing */
    .cta-btn, .nav-link, .lang-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Improved text readability on mobile */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Village-themed mobile header */
    .header-top::after {
        content: '🌾 स्वागत आहे 🌾';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        white-space: nowrap;
    }
    
    /* Mobile-optimized cards */
    .stat-card, .initiative-card, .news-card {
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    /* Swipe indicators for mobile */
    .swipe-indicator {
        position: relative;
    }
    
    .swipe-indicator::after {
        content: '← स्वाइप करा →';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        color: var(--primary-pink);
        opacity: 0.7;
        animation: fadeInOut 3s infinite;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.8; }
    }
}

/* Village Cultural Elements */
.cultural-accent {
    position: relative;
}

.cultural-accent::before {
    content: '🕉️';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 16px;
    color: var(--primary-orange);
    opacity: 0.6;
}

/* Gram Panchayat Badge */
.gp-badge {
    background: var(--gradient);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.gp-badge::before {
    content: '🏛️';
    font-size: 14px;
}

/* Mobile-First Loading Animation */
@media (max-width: 768px) {
    .loading-village {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }
    
    .loading-village.show {
        opacity: 1;
        visibility: visible;
    }
    
    .village-loader {
        color: white;
        font-size: 24px;
        text-align: center;
        animation: villageGlow 2s ease-in-out infinite;
    }
    
    @keyframes villageGlow {
        0%, 100% { transform: scale(1); opacity: 0.8; }
        50% { transform: scale(1.1); opacity: 1; }
    }
}
