/* ==========================================
   CHANAGANI DAYAKAR - POLITICAL WEBSITE
   Congress Party Theme Colors
   Designed by DOGY Technologies Pvt Ltd
   ========================================== */

/* ==========================================
   ROOT VARIABLES - CONGRESS COLORS
   ========================================== */
:root {
    /* Congress Party Colors */
    --congress-green: #138808;
    --congress-green-dark: #0d5e06;
    --congress-orange: #FF9933;
    --congress-orange-dark: #e07d1f;
    --congress-white: #FFFFFF;
    --congress-blue: #0066CC;
    --congress-blue-dark: #004d99;
    
    /* Neutral Colors */
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
    background: linear-gradient(135deg, var(--congress-green), var(--congress-green-dark));
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1005;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.congress-logo {
    height: 50px;
    width: auto;
}

.leader-name {
    color: var(--congress-white);
    font-size: 1.4rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--congress-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: start;
}

.nav-menu li a {
    color: var(--congress-white);
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--congress-orange), var(--congress-orange-dark));
    color: var(--congress-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--congress-blue), var(--congress-blue-dark));
    color: var(--congress-white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background-color: var(--congress-white);
    color: var(--congress-green);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, var(--congress-green) 0%, var(--congress-green-dark) 100%);
    color: var(--congress-white);
    padding: 60px 0;
    position: relative;
    overflow: visible;
}

.mobile-nav-buttons {
    display: none;
    position: relative;
    width: 100%;
    background: var(--congress-green);
    padding: 12px 0;
    z-index: 1004;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 0;
    border-bottom: 2px solid var(--congress-orange);
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 20px;
}

.mobile-nav-btn {
    display: inline-block;
    padding: 14px 25px;
    margin: 0 10px;
    background: linear-gradient(135deg, var(--congress-orange), var(--congress-orange-dark));
    color: var(--congress-white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    min-width: 110px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-nav-btn:hover {
    background: linear-gradient(135deg, var(--congress-orange-dark), var(--congress-orange));
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.mobile-nav-btn:last-child {
    margin-right: 0;
}

.mobile-nav-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-overlay {
    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 1200 600"><circle cx="200" cy="100" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="900" cy="400" r="200" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: -35px;
}

.party-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hand-symbol {
    height: 30px;
    width: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--congress-orange);
}

.hero-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--congress-orange);
    transform: translateY(-3px);
}

.hero-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--congress-orange);
}

/* ==========================================
   HERO CAROUSEL
   ========================================== */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background-color: var(--congress-orange);
}

/* ==========================================
   STATS SECTION
   ========================================== */
/* ==========================================
   FOCUS AREAS SECTION
   ========================================== */
.focus-areas-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.focus-area-card {
    background-color: var(--congress-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    overflow: hidden;
}

.focus-area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.focus-area-image {
    height: 200px;
    overflow: hidden;
}

.focus-area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
    transition: var(--transition-normal);
}

.focus-area-card:hover .focus-area-image img {
    transform: scale(1.05);
}

.focus-area-content {
    padding: 25px;
    text-align: center;
}

.focus-area-content h3 {
    font-size: 1.4rem;
    color: var(--congress-green);
    margin-bottom: 15px;
}

.focus-area-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================
   NEWS HIGHLIGHTS SECTION
   ========================================== */
.news-highlights-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.news-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-highlight-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    overflow: hidden;
}

.news-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-highlight-image {
    height: 200px;
    overflow: hidden;
}

.news-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.news-highlight-card:hover .news-highlight-image img {
    transform: scale(1.05);
}

.news-highlight-content {
    padding: 25px;
}

.news-highlight-content .news-date {
    color: var(--congress-orange);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.news-highlight-content h3 {
    font-size: 1.4rem;
    color: var(--congress-green);
    margin-bottom: 15px;
}

.news-highlight-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--congress-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--congress-green-dark);
    gap: 10px;
}

.read-more i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

/* ==========================================
   STATS SECTION (Deprecated)
   ========================================== */
.stats-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: var(--congress-white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 3rem;
    color: var(--congress-orange);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--congress-green);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1rem;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--congress-green);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--congress-orange), var(--congress-green));
    margin: 0 auto 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--congress-green), var(--congress-green-dark));
    color: var(--congress-white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */
.about-preview,
.biography-section,
.career-overview,
.vision-statement,
.focus-area-section {
    padding: 80px 0;
}

.content-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.about-image-box img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--congress-green);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--congress-green);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-highlights {
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.highlight-item i {
    color: var(--congress-green);
    font-size: 1.3rem;
}

/* ==========================================
   VISION CARDS
   ========================================== */
.vision-highlights {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.vision-card {
    background-color: var(--congress-white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-top: 4px solid var(--congress-orange);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vision-icon {
    font-size: 3.5rem;
    color: var(--congress-green);
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 1.5rem;
    color: var(--congress-green);
    margin-bottom: 15px;
}

.vision-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ==========================================
   NEWS SECTION
   ========================================== */
.latest-news {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-left: 4px solid var(--congress-green);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.news-date {
    color: var(--congress-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 1.3rem;
    color: var(--congress-green);
    margin-bottom: 15px;
}

.news-card p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--congress-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--congress-blue-dark);
}

/* ==========================================
   CALL TO ACTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--congress-blue), var(--congress-blue-dark));
    color: var(--congress-white);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--primary-black);
    color: var(--congress-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--congress-orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--congress-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--congress-orange);
    transform: scale(1.1);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.9;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--congress-orange);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.footer-contact i {
    color: var(--congress-orange);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.dogy-link {
    color: var(--congress-orange);
    font-weight: 600;
}

.dogy-link:hover {
    text-decoration: underline;
}

/* ==========================================
   BIOGRAPHY PAGE
   ========================================== */
.bio-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.bio-image {
    position: relative;
}

.bio-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.bio-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--congress-white);
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.bio-badge img {
    height: 40px;
    margin: 0 auto 5px;
}

.bio-badge p {
    font-weight: 600;
    color: var(--congress-green);
    font-size: 0.9rem;
}

.bio-details h2 {
    font-size: 2.5rem;
    color: var(--congress-green);
    margin-bottom: 30px;
}

.bio-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.bio-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bio-info-item strong {
    color: var(--congress-orange);
    font-size: 0.9rem;
}

.bio-info-item span {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.bio-summary {
    line-height: 1.8;
    color: var(--text-dark);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--congress-green), var(--congress-orange));
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.timeline-year {
    text-align: right;
    font-size: 2rem;
    font-weight: 800;
    color: var(--congress-green);
}

.timeline-year::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--congress-orange);
    border-radius: 50%;
    margin: 10px 0 0 auto;
    position: relative;
    z-index: 2;
    border: 4px solid var(--congress-white);
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--congress-green);
}

.timeline-content h3 {
    color: var(--congress-green);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--congress-white);
    padding: 35px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-card i {
    font-size: 3rem;
    color: var(--congress-orange);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--congress-green);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ==========================================
   CAREER PAGE
   ========================================== */
.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.position-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-top: 4px solid var(--congress-green);
}

.position-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.position-icon {
    font-size: 2.5rem;
    color: var(--congress-orange);
    margin-bottom: 20px;
}

.position-card h3 {
    color: var(--congress-green);
    margin-bottom: 10px;
}

.position-year {
    color: var(--congress-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.position-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Work Categories */
.work-category {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border-left: 6px solid var(--congress-green);
}

.work-category h3 {
    color: var(--congress-green);
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.work-category h3 i {
    color: var(--congress-orange);
}

.work-list {
    list-style: none;
}

.work-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    line-height: 1.7;
    color: var(--text-dark);
}

.work-list li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--congress-green);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Contributions Grid */
.contributions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contribution-card {
    background-color: var(--bg-white);
    padding: 35px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contribution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contribution-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--congress-orange);
    margin-bottom: 15px;
}

.contribution-card h3 {
    color: var(--congress-green);
    margin-bottom: 15px;
}

.contribution-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Achievements Timeline */
.achievements-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.achievement-badge {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--congress-orange), var(--congress-orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--congress-white);
    font-size: 2rem;
}

.achievement-content {
    flex: 1;
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--congress-green);
}

.achievement-content h3 {
    color: var(--congress-green);
    margin-bottom: 10px;
}

.achievement-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.award-card {
    background-color: var(--bg-white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-top: 3px solid var(--congress-orange);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.award-icon {
    font-size: 3rem;
    color: var(--congress-orange);
    margin-bottom: 15px;
}

.award-card h3 {
    color: var(--congress-green);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.award-year {
    color: var(--congress-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.award-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Projects List */
.projects-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--congress-green);
}

.project-item h3 {
    color: var(--congress-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-item h3 i {
    color: var(--congress-orange);
}

.project-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ==========================================
   VISION PAGE - FOCUS AREAS
   ========================================== */
.focus-area-section {
    padding: 60px 0;
}

.focus-area-section:nth-child(even) {
    background-color: var(--bg-light);
}

.focus-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.focus-content.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.focus-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--congress-orange), var(--congress-orange-dark));
    color: var(--congress-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.focus-text h2 {
    font-size: 2.2rem;
    color: var(--congress-green);
    margin-bottom: 15px;
}

.focus-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.focus-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.point-item i {
    color: var(--congress-green);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.point-item h4 {
    color: var(--congress-green);
    margin-bottom: 8px;
}

.point-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.focus-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--congress-green);
}

/* ==========================================
   GALLERY PAGE
   ========================================== */
/* ==========================================
   GALLERY PAGE
   ========================================== */
.upload-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--congress-green), var(--congress-green-dark));
}

.upload-box {
    background-color: var(--congress-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.upload-box h2 {
    color: var(--congress-green);
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.upload-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.upload-group {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--congress-orange), var(--congress-orange-dark));
    color: var(--congress-white);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.upload-label:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--congress-orange-dark), var(--congress-orange));
}

.upload-label i {
    font-size: 1.5rem;
}

.upload-info {
    background-color: var(--bg-light);
    padding: 15px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--congress-blue);
}

.upload-info p {
    color: var(--text-medium);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.6;
}

.upload-info i {
    color: var(--congress-blue);
    font-size: 1.2rem;
}

.gallery-filter-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--congress-green);
    background-color: var(--congress-white);
    color: var(--congress-green);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--congress-green);
    color: var(--congress-white);
}

.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    transition: var(--transition-normal);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.video-item {
    border: 3px solid var(--congress-blue);
}

.video-item .gallery-overlay {
    pointer-events: none;
}

.video-item .gallery-overlay .view-btn {
    pointer-events: auto;
}

.video-item video {
    pointer-events: auto;
}

.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--congress-blue), var(--congress-blue-dark));
    color: var(--congress-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--congress-white);
    padding: 25px;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.view-btn {
    background-color: var(--congress-orange);
    color: var(--congress-white);
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    padding: 20px;
}

.modal-content {
    max-width: 90%;
    max-height: 85%;
    margin: auto;
    display: block;
    border-radius: 10px;
    object-fit: contain;
    object-position: top;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--congress-white);
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
}

.modal-caption {
    color: var(--congress-white);
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
}

/* ==========================================
   NEWS PAGE
   ========================================== */
.featured-news {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: var(--congress-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--congress-orange);
    color: var(--congress-white);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
}

.news-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-content h2 {
    font-size: 2rem;
    color: var(--congress-green);
    margin-bottom: 20px;
    line-height: 1.4;
}

.featured-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* News Timeline */
.news-timeline {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.news-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
}

.news-date-badge {
    background: linear-gradient(135deg, var(--congress-green), var(--congress-green-dark));
    color: var(--congress-white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: fit-content;
}

.news-date-badge .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.news-date-badge .month {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 5px;
}

.news-content-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--congress-green);
}

.category-tag {
    display: inline-block;
    background-color: var(--congress-orange);
    color: var(--congress-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-content-card h3 {
    color: var(--congress-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.news-content-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.read-more-link {
    color: var(--congress-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Upcoming Programs */
.upcoming-programs {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background-color: var(--congress-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    transition: var(--transition-normal);
}

.program-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.program-date {
    background: linear-gradient(135deg, var(--congress-orange), var(--congress-orange-dark));
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-box {
    text-align: center;
    color: var(--congress-white);
}

.date-box .day {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.date-box .month {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
}

.date-box .year {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.9;
}

.program-details {
    padding: 30px;
    flex: 1;
}

.program-details h3 {
    color: var(--congress-green);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.program-details p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.program-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-info i {
    color: var(--congress-orange);
}

/* Press Releases */
.press-releases {
    padding: 80px 0;
}

.press-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.press-item {
    display: flex;
    gap: 25px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--congress-blue);
}

.press-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--congress-blue), var(--congress-blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--congress-white);
    font-size: 1.8rem;
}

.press-content {
    flex: 1;
}

.press-content h3 {
    color: var(--congress-green);
    margin-bottom: 10px;
}

.press-date {
    color: var(--congress-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.press-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}

.download-link {
    color: var(--congress-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Newsletter */
.newsletter-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--congress-green), var(--congress-green-dark));
    color: var(--congress-white);
    padding: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-info-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: var(--congress-green);
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background-color: var(--congress-white);
    padding: 35px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--congress-orange), var(--congress-orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--congress-white);
    font-size: 2rem;
}

.contact-card h3 {
    color: var(--congress-green);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.timings {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--congress-blue);
    font-weight: 600;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--congress-green);
    color: var(--congress-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.contact-social a:hover {
    background-color: var(--congress-orange);
    transform: scale(1.1);
}

.social-text {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--congress-green);
    margin-bottom: 15px;
}

.form-intro p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--congress-green);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--congress-green);
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: var(--text-medium);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.map-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.map-detail-card {
    background-color: var(--congress-white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.map-detail-card i {
    font-size: 2.5rem;
    color: var(--congress-orange);
    margin-bottom: 15px;
}

.map-detail-card h4 {
    color: var(--congress-green);
    margin-bottom: 10px;
}

.map-detail-card p {
    color: var(--text-medium);
}

/* Office Hours */
.office-hours-section {
    padding: 60px 0;
}

.office-hours-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.hours-content h2 {
    color: var(--congress-green);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--congress-green);
}

.hours-item .day {
    font-weight: 600;
    color: var(--congress-green);
}

.hours-item .time {
    color: var(--text-medium);
    font-weight: 500;
}

.hours-note {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    color: #856404;
    border-left: 4px solid var(--congress-orange);
    line-height: 1.6;
}

/* Join Section */
.join-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--congress-green), var(--congress-green-dark));
    color: var(--congress-white);
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.join-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: var(--congress-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--congress-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: start;
    gap: 12px;
}

.faq-item h3 i {
    color: var(--congress-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .bio-intro,
    .focus-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .focus-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .focus-image {
        order: -1;
    }
    
    .focus-image img {
        max-width: 100%;
        height: auto;
    }
    
    .focus-text h2 {
        font-size: 1.8rem;
    }
    
    .focus-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stats-grid,
    .vision-grid,
    .positions-grid,
    .contributions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid,
    .awards-grid,
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .mobile-nav-buttons {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-left: 20px;
        z-index: 1004;
    }
    
    .mobile-nav-btn {
        flex: 0 0 auto;
        margin: 5px;
        min-width: 80px;
        padding: 12px 15px;
        font-size: 0.95rem;
        border-radius: 25px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--congress-green-dark);
        flex-direction: column;
        padding: 20px;
        display: none;
        z-index: 1006;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 0;
        display: flex;
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: var(--shadow-lg);
        border: 5px solid var(--congress-orange);
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .stats-grid,
    .focus-areas-grid,
    .vision-grid,
    .news-grid,
    .news-highlights-grid,
    .positions-grid,
    .contributions-grid,
    .values-grid,
    .awards-grid,
    .contact-cards-grid,
    .gallery-grid,
    .programs-grid,
    .projects-list,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row,
    .hours-grid,
    .map-details {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
    }
    
    .timeline-year {
        text-align: left;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }
    
    .focus-area-image,
    .news-highlight-image {
        height: 180px;
    }
    
    .news-highlight-content {
        padding: 20px;
    }
    
    .news-highlight-content h3 {
        font-size: 1.3rem;
    }
    
    .focus-area-content {
        padding: 20px;
    }
    
    .focus-area-content h3 {
        font-size: 1.3rem;
    }
    
    /* Upload section mobile */
    .upload-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .upload-group {
        max-width: 100%;
    }
    
    .upload-info p {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .mobile-nav-btn {
        flex: 0 0 calc(33.333% - 10px);
        font-size: 0.85rem;
        padding: 10px 5px;
        margin: 5px;
        min-width: 70px;
        border-radius: 20px;
    }
    
    .hero-image img {
        border-width: 3px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .focus-area-image,
    .news-highlight-image {
        height: 150px;
    }
    
    .focus-text h2 {
        font-size: 1.6rem;
    }
    
    .focus-subtitle {
        font-size: 1rem;
    }
    
    .point-item {
        gap: 15px;
    }
    
    .point-item h4 {
        font-size: 1.1rem;
    }
    
    .point-item i {
        font-size: 1.2rem;
    }
}