:root {
    --primary: #1a237e;
    --primary-light: #3949ab;
    --secondary: #009444;
    --secondary-light: #43a047;
    --accent: #1976d2;
    --accent-light: #42a5f5;
    --gold: #ffd700;
    --green: #009444;
    --green-light: #43a047;
    --purple: #6a1b9a;
    --teal: #00695c;
    --light: #f5f5f5;
    --light-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --dark: #212121;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Bengali', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1642 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

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

.logo-section img {
    width: 60px;
    height: 60px;
}

.logo-section h1 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    outline: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-section a {
    text-decoration: none;
    border: none;
    outline: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    outline: none;
}

.nav-menu a:hover {
    background: var(--secondary);
}

.nav-menu a.active {
    background: var(--green);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 148, 68, 0.95) 0%, rgba(26, 35, 126, 0.9) 100%),
                url('images/IMG_0248.JPG') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25%, 25%); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    color: var(--dark);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: badgeBounce 2s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

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

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255,215,0,0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(255,215,0,0.8)); }
}

.hero-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #fff;
}

.hero-quote {
    max-width: 800px;
    margin: 30px auto;
    font-size: 1.2rem;
    font-style: italic;
    padding: 25px 35px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255,215,0,0.5);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 148, 68, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 148, 68, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.6);
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
}

.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: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }

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

/* Video Section */
.video-section {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: fit;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 1000;
    pointer-events: auto;
}

.video-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 35, 126, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
    pointer-events: auto;
    position: relative;
    z-index: 1001;
}

.video-btn:hover {
    background: rgba(26, 35, 126, 0.9);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-btn:active {
    transform: scale(0.95);
}

/* Responsive Video */
@media (max-width: 1200px) {
    .video-container {
        height: 50vh;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .video-container {
        height: 40vh;
        min-height: 300px;
    }
    
    .video-controls {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .video-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 35vh;
        min-height: 250px;
    }
    
    .video-controls {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .video-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Slider Section */
.slider-section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
}

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

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: #fff;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    text-align: center;
}

.slide-caption h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-caption p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(26, 35, 126, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(26, 35, 126, 0.9);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.indicator:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-section {
        padding: 40px 0;
    }
    
    .slider-wrapper {
        height: 400px;
        max-width: 100%;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slide-caption {
        padding: 30px 20px;
    }
    
    .slide-caption h3 {
        font-size: 1.5rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        height: 300px;
        max-width: 100%;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slide-caption {
        padding: 20px 15px;
    }
    
    .slide-caption h3 {
        font-size: 1.2rem;
    }
    
    .slide-caption p {
        font-size: 0.9rem;
    }
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 148, 68, 0.3);
    margin-left: 20px;
    margin-right: 20px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 20px;
    color: var(--white);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: statGlow 3s ease-in-out infinite;
}

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

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 148, 68, 0.4);
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }
.stat-item:nth-child(4) { animation-delay: 0.6s; }

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.95rem;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--white);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(135deg, var(--secondary), var(--accent), var(--gold));
    margin: 20px auto 0;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 148, 68, 0.3);
}

/* About Teaser */
.about-teaser {
    background: linear-gradient(180deg, var(--white) 0%, #e8f5e9 50%, var(--white) 100%);
    position: relative;
}

.about-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    border: 5px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--secondary), var(--gold), var(--green)) border-box;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: 25px;
    bottom: 25px;
    border: 5px solid var(--secondary);
    border-radius: 25px;
    z-index: -1;
    animation: borderMove 4s ease-in-out infinite;
}

@keyframes borderMove {
    0%, 100% { border-color: var(--secondary); }
    50% { border-color: var(--gold); }
}

.about-text h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-text h2 {
    background: linear-gradient(135deg, var(--green), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.role-item {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 18px 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 148, 68, 0.3);
    position: relative;
    overflow: hidden;
}

.role-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.role-item:hover::before {
    left: 100%;
}

.role-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.5);
}

.role-item:nth-child(2) {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 5px 20px rgba(25, 118, 210, 0.3);
}

.role-item:nth-child(2):hover {
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.5);
}

.role-item:nth-child(3) {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3);
}

.role-item:nth-child(3):hover {
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.5);
}

.role-item:nth-child(4) {
    background: linear-gradient(135deg, var(--gold), #ffeb3b);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    color: var(--dark);
}

.role-item:nth-child(4):hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.role-item span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-top: 5px;
}

/* Vision Section */
.vision {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision::before {
    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"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="20" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 200px;
}

.vision .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.vision-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.vision-card:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.vision-card:nth-child(1) { animation-delay: 0s; }
.vision-card:nth-child(2) { animation-delay: 0.2s; }
.vision-card:nth-child(3) { animation-delay: 0.4s; }
.vision-card:nth-child(4) { animation-delay: 0.6s; }
.vision-card:nth-child(5) { animation-delay: 0.8s; }
.vision-card:nth-child(6) { animation-delay: 1s; }

.vision-card h4 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}





.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Activities Section */
.activities {
    background: linear-gradient(180deg, #fff9c4 0%, #fff 50%, #e3f2fd 100%);
    position: relative;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

@media (max-width: 768px) {
    .activities-grid {
        gap: 0;
    }
}

.activity-item {
    position: relative;
    height: 280px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.4s ease;
}

.activity-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.activity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    aspect-ratio: 16/9;
}

.activity-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .activity-item img {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .activity-item img {
        aspect-ratio: 1/1;
        height: 200px;
    }
}


.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}


.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    animation: fadeIn 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
    animation: zoomIn 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    transition: transform 0.3s ease;
}

.lightbox-content img:hover {
    transform: scale(1.02);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255,255,255,0.6);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255,255,255,0.5);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.7);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--gold), var(--accent));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.testimonial-card::after {
    content: '"';
    font-size: 8rem;
    color: var(--secondary);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author .avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--secondary);
}

/* Municipality Info */
.municipality {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #009444 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.municipality::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: municipalityGlow 6s ease-in-out infinite;
}

@keyframes municipalityGlow {
    0%, 100% { opacity: 0.5; transform: translate(0, 0); }
    50% { opacity: 1; transform: translate(-20px, 20px); }
}

.municipality .section-title {
    color: var(--white);
}

.municipality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.municipality-info h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.municipality-info p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.admin-list {
    list-style: none;
    margin-top: 25px;
}

.admin-list li {
    padding: 15px 0;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.admin-list li:hover {
    background: rgba(255,255,255,0.05);
    padding-left: 10px;
}

.admin-list span:first-child {
    color: var(--gold);
    font-weight: 600;
}

.municipality-stats {
    position: relative;
    z-index: 1;
}

.municipality-stats > div {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.2);
}

.municipality-stats h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.municipality-stats > div > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.municipality-stats > div > div > div {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.municipality-stats > div > div > div:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.municipality-stats > div > div > div span:first-child {
    font-size: 2.8rem;
    color: var(--gold);
    display: block;
    font-weight: 700;
}

.municipality-stats > div > div > div span:last-child {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    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"><polygon points="50,10 90,90 10,90" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px;
}

.contact-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a237e 0%, #0d1642 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.footer-brand p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
background: linear-gradient(135deg, var(--gold), var(--accent));
transform: translateY(-5px) rotate(360deg);
box-shadow: 0 10px 30px rgba(0, 148, 68, 0.4);
    box-shadow: 0 10px 30px rgba(0, 148, 68, 0.4);
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
    margin-top: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255,255,255,0.1);
    color: #777;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #009444 0%, #1a237e 50%, #c62828 100%);
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    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%);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

/* About Page Styles */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-full {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: start;
}

.about-full-image {
    position: sticky;
    top: 100px;
}

.about-full-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
}

.about-full-content h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-full-content p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.journey-timeline {
    margin-top: 50px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 55px;
    bottom: -35px;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary), var(--gold));
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 148, 68, 0.4);
}

.timeline-content {
    flex: 1;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.timeline-content p {
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Gallery Page */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #fff 50%, #f5f7fa 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    grid-auto-rows: auto;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(198, 40, 40, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

/* About Page Responsive Grid */
.municipality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.chairman-council {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, #e3f2fd 100%);
}

.contact-grid {
    display: flex;
    gap: 70px;
    align-items: stretch;
}

.contact-grid > .contact-info {
    flex: 1;
}

.contact-grid > .contact-form {
    flex: 1;
}

.important-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.important-contacts > div {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    background: linear-gradient(135deg, #009444 0%, #1a237e 100%);
    padding: 50px;
    border-radius: 25px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 148, 68, 0.3);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--gold);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-item p {
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-item > div:last-child {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 5px 20px rgba(0, 148, 68, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 148, 68, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 148, 68, 0.5);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-menu li {
        margin: 8px 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 30px;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .municipality-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        min-width: 100%;
        width: 100%;
    }

    .about-full {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo-section h1 {
        font-size: 1.2rem;
    }

    .logo-section img {
        width: 45px;
        height: 45px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content h3 {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        margin-left: 10px;
        margin-right: 10px;
    }

    .stat-item {
        padding: 25px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .roles {
        grid-template-columns: 1fr;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .municipality-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px;
    }

    .municipality-info {
        width: 100% !important;
    }

    .municipality-stats {
        width: 100% !important;
    }

    .municipality-info h3 {
        font-size: 1.6rem;
    }

    .municipality-info p {
        font-size: 0.95rem;
    }

    .municipality-stats > div > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        min-width: 100%;
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .page-header {
        padding: 130px 0 70px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }

    .municipality-info h3 {
        font-size: 1.4rem;
    }

    .municipality-stats > div {
        padding: 25px;
    }

    .municipality-stats > div > div > div span:first-child {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-section h1 {
        font-size: 1rem;
    }

    .logo-section img {
        width: 40px;
        height: 40px;
    }

    .municipality-content {
        gap: 30px;
    }

    .municipality-info h3 {
        font-size: 1.2rem;
    }

    .municipality-stats > div > div > div span:first-child {
        font-size: 1.8rem;
    }

    .admin-list li {
        flex-direction: column;
        gap: 5px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 30px 0;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
}

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

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(0, 148, 68, 0.8));
    color: white;
    border: none;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .municipality-cards {
        grid-template-columns: 1fr;
    }
    
    .chairman-council {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .about-full {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-full-image {
        position: static;
    }
    
    .roles {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-item::before {
        left: 27px;
        top: 55px;
        height: calc(100% - 55px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .municipality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-full {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .roles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .municipality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


