/* ================================================
   PROFESSIONAL DESIGNER BLUE & YELLOW THEME
   Modern, Sophisticated, Corporate Design
================================================ */

/* SOPHISTICATED COLOR PALETTE */
:root {
    /* Primary Blue Palette - Corporate & Professional */
    --primary-navy: #1a365d;           /* Deep Navy Blue */
    --primary-blue: #2563eb;           /* Professional Blue */
    --primary-light: #3b82f6;          /* Bright Blue */
    --primary-sky: #0ea5e9;            /* Sky Blue */
    --primary-powder: #e0f2fe;         /* Powder Blue */
    
    /* Accent Yellow Palette - Sophisticated & Vibrant */
    --accent-gold: #f59e0b;            /* Rich Gold */
    --accent-yellow: #fbbf24;          /* Warm Yellow */
    --accent-amber: #f3bf00;           /* Pure Amber */
    --accent-light: #fef3c7;          /* Light Yellow */
    --accent-cream: #fffbeb;           /* Cream */
    
    /* Neutral Sophisticated Palette */
    --neutral-900: #111827;            /* Almost Black */
    --neutral-800: #1f2937;            /* Dark Gray */
    --neutral-700: #374151;            /* Medium Gray */
    --neutral-600: #4b5563;            /* Gray */
    --neutral-500: #6b7280;            /* Light Gray */
    --neutral-400: #9ca3af;            /* Very Light Gray */
    --neutral-300: #d1d5db;            /* Pale Gray */
    --neutral-200: #e5e7eb;            /* Very Pale Gray */
    --neutral-100: #f3f4f6;            /* Off White */
    --neutral-50: #f9fafb;             /* Almost White */
    --white: #ffffff;                  /* Pure White */
    
    /* Professional Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 40%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-yellow) 50%, var(--accent-amber) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 30%, var(--primary-sky) 70%, var(--accent-amber) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    --gradient-glass: linear-gradient(145deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--neutral-50) 0%, var(--accent-cream) 100%);
    
    /* Modern Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(26, 54, 93, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(26, 54, 93, 0.1), 0 1px 2px 0 rgba(26, 54, 93, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(26, 54, 93, 0.1), 0 2px 4px -1px rgba(26, 54, 93, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(26, 54, 93, 0.1), 0 4px 6px -2px rgba(26, 54, 93, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(26, 54, 93, 0.1), 0 10px 10px -5px rgba(26, 54, 93, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(26, 54, 93, 0.25);
    --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.05), 0 0 20px rgba(37, 99, 235, 0.1);
    --shadow-yellow: 0 0 0 1px rgba(245, 158, 11, 0.1), 0 0 20px rgba(245, 158, 11, 0.15);
    
    /* Typography Scale */
    --font-display: 'Poppins', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'Fira Code', 'SF Mono', Consolas, monospace;
    
    /* Spacing System */
    --space-px: 1px;
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 0.125rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
}

/* ================================================
   RESET & BASE STYLES
================================================ */

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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--neutral-800);
    background: var(--gradient-subtle);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ================================================
   MODERN TYPOGRAPHY SYSTEM
================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--neutral-900);
    margin-bottom: var(--space-6);
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white); /* Changed from gradient to solid color */
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background: none; /* Removed background gradient */
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); /* Enhanced shadow for visibility */
}

h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: 700;
    color: var(--primary-navy);
}

h3 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    font-weight: 600;
    color: var(--primary-blue);
}

h4 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem);
    font-weight: 600;
    color: var(--primary-blue);
}

h5 {
    font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
    font-weight: 600;
    color: var(--primary-blue);
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-700);
    margin-bottom: var(--space-6);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--neutral-600);
    line-height: 1.6;
}

.small {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* ================================================
   MODERN NAVIGATION
================================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--space-4) 0;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    padding: var(--space-3) 0;
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo img {
    height: 55px; /* Increased from 40px */
    width: auto;
}

.logo span {
    font-family: var(--font-display);
    font-size: 2.25rem; /* Increased from 2rem */
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--space-2);
}

.nav-link {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    font-weight: 500;
    color: var(--neutral-700);
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: var(--primary-powder);
    transform: translateY(-2px);
}

.nav-link.highlight {
    background: var(--gradient-accent);
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.nav-link.highlight:hover {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: var(--space-1);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--neutral-700);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

/* ================================================
   HERO SECTION - MODERN & IMPACTFUL
================================================ */

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(30px) rotate(45deg); }
    50% { transform: translateY(20px) translateX(-30px) rotate(90deg); }
    75% { transform: translateY(-30px) translateX(20px) rotate(135deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
}

.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradient-animation 20s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: var(--space-24) var(--space-6);
    position: relative;
    overflow: hidden;
}

/* Remove the placeholder image */
.hero::before {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 54, 93, 0.4) 100%);
    z-index: 2;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
    animation: float 25s infinite ease-in-out;
}

.hero > .floating-element:nth-of-type(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 15%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.hero > .floating-element:nth-of-type(2) {
    width: 300px;
    height: 300px;
    bottom: 15%;
    right: 20%;
    animation-duration: 35s;
    animation-delay: -10s;
}

.hero > .floating-element:nth-of-type(3) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 30%;
    animation-duration: 40s;
    animation-delay: -15s;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white); /* Changed from gradient to solid color */
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background: none; /* Removed background gradient */
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); /* Enhanced shadow for visibility */
}

.subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    margin-bottom: var(--space-12);
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: var(--gradient-accent);
    color: var(--neutral-900);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* ================================================
   SECTION LAYOUTS - PROFESSIONAL & CLEAN
================================================ */

.section {
    padding: var(--space-24) 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--white);
    position: relative;
}

.section:nth-child(odd) {
    background: var(--gradient-subtle);
    position: relative;
}

/* Section-specific styling for better visual hierarchy */
.welcome-section {
    background: var(--gradient-subtle) !important;
}

.stats-section {
    background: var(--gradient-primary) !important;
}

.about-section {
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--light-blue) 100%) !important;
}

.services-section {
    background: var(--white) !important;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-20);
    position: relative;
}

.section-header h2 {
    margin-bottom: var(--space-4);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -var(--space-2);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   WELCOME SECTION - PROFESSIONAL LAYOUT
================================================ */

.welcome-section {
    background: var(--gradient-subtle);
    position: relative;
}

.welcome-intro-content {
    text-align: center;
    margin-bottom: var(--space-20);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto var(--space-16);
}

.intro-text .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--neutral-700);
    font-weight: 400;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.main-content-section {
    margin-top: var(--space-20);
    padding-top: var(--space-16);
    border-top: 1px solid var(--neutral-200);
}

.reverse-layout {
    flex-direction: row-reverse;
}

.reverse-layout .content-column {
    padding-left: var(--space-12);
    padding-right: 0;
}

.reverse-layout .image-column {
    padding-right: var(--space-12);
    padding-left: 0;
}

/* Service Item Reverse Layout */
.content-with-image.reverse-layout {
    flex-direction: row-reverse;
}

.content-with-image.reverse-layout .text-content {
    padding-left: var(--space-8);
    padding-right: 0;
}

.content-with-image.reverse-layout .image-content {
    padding-right: var(--space-8);
    padding-left: 0;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-accent);
    color: var(--neutral-900);
    transform: scale(1.1);
}

.feature-card h4 {
    margin-bottom: var(--space-4);
    color: var(--primary-navy);
}

.feature-card p {
    margin: 0;
    color: var(--neutral-600);
    font-size: 1rem;
}

/* ================================================
   TWO COLUMN LAYOUTS - MODERN GRID
================================================ */

.two-column {
    display: flex;
    gap: var(--space-16);
    align-items: center;
    margin-top: var(--space-16);
}

.two-column > .content-column,
.two-column > .image-column {
    flex: 1;
}

.content-column {
    background: var(--gradient-card);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    position: relative;
}

.content-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.image-column {
    position: relative;
}

/* ================================================
   PROFESSIONAL IMAGE PLACEHOLDERS
================================================ */

.image-placeholder {
    background: var(--gradient-card);
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
    background: var(--white);
}

.image-placeholder i {
    color: var(--primary-blue);
    margin-bottom: var(--space-4);
    transition: all 0.3s ease;
}

.image-placeholder:hover i {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.image-placeholder h4,
.image-placeholder h5 {
    color: var(--primary-navy);
    margin-bottom: var(--space-3);
}

.image-placeholder p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    margin: 0;
    max-width: 280px;
}

/* News specific placeholders */
.news-placeholder {
    min-height: 250px;
    padding: var(--space-8);
    border-radius: 0;
}

/* About specific placeholders */
.about-placeholder {
    min-height: 350px;
    max-width: 400px;
    margin: 0 auto;
}

/* ================================================
   STATS SECTION - IMPRESSIVE NUMBERS
================================================ */

.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-24) 0;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-yellow);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   NEWS SECTION - MODERN CARDS
================================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.news-card {
    background: var(--gradient-card);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    z-index: 1;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.news-card .news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-date {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--gradient-accent);
    color: var(--neutral-900);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content {
    padding: var(--space-8);
}

.news-content h3 {
    margin-bottom: var(--space-4);
    color: var(--primary-navy);
    font-size: 1.375rem;
}

.news-content p {
    margin-bottom: var(--space-6);
    color: var(--neutral-600);
    font-size: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

/* ================================================
   ABOUT SECTION - SOPHISTICATED LAYOUT
================================================ */

.about-section {
    background: var(--gradient-subtle);
}

.about-subsection {
    margin-bottom: var(--space-20);
}

.about-subsection:last-child {
    margin-bottom: 0;
}

.content-with-image {
    display: flex; /* Use flexbox for better alignment */
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-16);
}

.content-with-image .text-content {
    flex: 1.5; /* Give more space to text */
}

.content-with-image .image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-content {
    background: var(--gradient-card);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    position: relative;
}

.text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

/* Vision Cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.vision-card {
    background: var(--gradient-card);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.vision-card:hover .card-icon {
    background: var(--gradient-accent);
    color: var(--neutral-900);
    transform: scale(1.1);
}

/* Mission Timeline */
.mission-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: var(--space-16) 0;
}

.mission-container::before {
    content: '';
    position: absolute;
    left: var(--space-8);
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

.mission-item {
    display: flex;
    margin-bottom: var(--space-12);
    position: relative;
    background: var(--gradient-card);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    margin-left: var(--space-16);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-16) - var(--space-3));
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.mission-item:hover {
    transform: translateX(var(--space-4)) translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.mission-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: var(--space-8);
    flex-shrink: 0;
    line-height: 1;
}

.mission-content h4 {
    margin-bottom: var(--space-3);
    color: var(--primary-navy);
}

.mission-content p {
    margin: 0;
    color: var(--neutral-600);
}

/* ================================================
   SIMPLE SECTION STYLING - CONSISTENT HIERARCHY
================================================ */

/* Vision & Goals Section */
.vision-goals-section {
    margin: var(--space-20) 0;
    padding: var(--space-12) 0;
}

.vision-goals-section h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: var(--space-8);
    text-align: center;
    position: relative;
}

.vision-goals-section h3::after {
    content: '';
    position: absolute;
    bottom: -var(--space-3);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

/* Mission Section */
.mission-section {
    margin: var(--space-20) 0;
    padding: var(--space-12) 0;
    border-top: 1px solid var(--neutral-200);
}

.mission-section h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: var(--space-8);
    text-align: center;
    position: relative;
}

.mission-section h3::after {
    content: '';
    position: absolute;
    bottom: -var(--space-3);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

/* ================================================
   SUBSECTION STYLING - PROPER VISUAL HIERARCHY
================================================ */

/* Subsection Containers */
.subsection-container {
    margin: var(--space-20) 0;
    padding: var(--space-12) 0;
    border-top: 1px solid var(--neutral-200);
    position: relative;
}

.subsection-container:first-child {
    border-top: none;
    margin-top: var(--space-16);
}

.subsection-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

/* Subsection Headers */
.subsection-header {
    text-align: left;
    margin-bottom: var(--space-12);
    padding-left: var(--space-4);
    border-left: 4px solid var(--accent-gold);
    background: var(--accent-light);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-lg);
}

.subsection-header h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.subsection-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

/* Service Items within Subsections */
.service-item {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-bottom: var(--space-10);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-item:last-child {
    margin-bottom: 0;
}

/* Service Headers */
.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--neutral-100);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: var(--gradient-accent);
    color: var(--neutral-900);
    transform: scale(1.05);
}

.service-header h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
    line-height: 1.3;
}

/* Service Placeholders */
.service-placeholder {
    min-height: 200px;
    padding: var(--space-6);
    background: var(--gradient-subtle);
    border: 2px dashed var(--neutral-300);
}

.service-placeholder h5 {
    font-size: 1rem;
    margin-bottom: var(--space-2);
    color: var(--primary-blue);
}

.service-placeholder p {
    font-size: 0.85rem;
    color: var(--neutral-500);
    max-width: 200px;
}

/* Legacy Service Subsections - Remove if not needed */
.service-subsection {
    background: var(--gradient-card);
    border: 1px solid var(--neutral-200);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
    transition: all 0.3s ease;
}

.service-subsection:hover {
    transform: translateX(var(--space-2));
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-blue);
}

/* ================================================
   CREDENTIALS & SPECIAL ELEMENTS
================================================ */

.credentials {
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 2px solid var(--neutral-200);
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    background: var(--primary-powder);
    border: 1px solid var(--primary-light);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: var(--white);
    transform: translateX(var(--space-2));
    box-shadow: var(--shadow-md);
}

.credential-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: var(--space-1);
}

.credential-item p {
    margin: 0;
    color: var(--neutral-700);
}

/* ================================================
   PARTNERS STRIP - DYNAMIC & PROFESSIONAL
================================================ */

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-section {
    padding: var(--space-12) 0;
    background: var(--white);
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

.partners-section h3 {
    text-align: center;
    color: var(--neutral-500);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-8);
}

.partners-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
    display: flex;
    animation: scroll-left 40s linear infinite;
}

.partner-item {
    width: 250px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-8);
}

.partner-item img {
    max-height: 60px;
    width: auto;
}

.partner-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Removed hover effect as requested */

/* ================================================
   FOOTER - PROFESSIONAL & CLEAN
================================================ */

footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-20) 0 var(--space-8);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

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

.footer-column ul li {
    margin-bottom: var(--space-3);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-yellow);
    padding-left: var(--space-2);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
}

.footer-column p i {
    color: var(--accent-yellow);
    margin-right: var(--space-3);
    width: 20px;
}

.social-icons-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.social-icons {
    display: flex;
    gap: var(--space-6); /* Increased gap for better spacing */
    margin-top: var(--space-6);
    animation: scroll-left 20s linear infinite;
    width: max-content; /* Ensure the container is wide enough for all icons */
}

.social-icons a {
    width: 2px; /* Further reduced size */
    height: 2px; /* Further reduced size */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem; /* Further reduced icon size */
}

.social-icons a:hover {
    background: var(--gradient-accent);
    color: var(--neutral-900);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Isolated Footer Social Icons (no partner/affiliate effects) */
.footer-social-container {
    overflow: visible;
    position: relative;
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
}

.footer-social-icons {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 1rem;
}

.footer-social-icons a:hover {
    background: var(--gradient-accent);
    color: var(--neutral-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer-wide compatibility overrides for legacy classes */
footer .social-icons-container {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
}

footer .social-icons {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
    animation: none;
    width: auto;
}

footer .social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 1rem;
}

footer .social-icons a:hover {
    background: var(--gradient-accent);
    color: var(--neutral-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* ================================================
   RESPONSIVE DESIGN
================================================ */

@media (max-width: 1024px) {
    .two-column {
        flex-direction: column;
        gap: var(--space-12);
    }
    
    .two-column.reverse-layout {
        flex-direction: column-reverse;
    }
    
    .content-with-image {
        /* grid-template-columns: 1fr; */
        flex-direction: column;
        gap: var(--space-8);
    }

    .content-with-image.reverse-layout {
        flex-direction: column;
    }
    
    .mission-container::before {
        display: none;
    }
    
    .mission-item {
        margin-left: 0;
    }
    
    .mission-item::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 var(--space-4);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-item {
        margin: var(--space-4) 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li {
        margin: var(--space-4) 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
        color: var(--neutral-700);
    }
    
    .hero {
        padding: var(--space-20) var(--space-4);
        min-height: 90vh;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .card-container {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .mission-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-number {
        margin-right: 0;
        margin-bottom: var(--space-4);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .partners-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .logo img {
        height: 40px;
    }

    .logo span {
        font-size: 1.75rem;
    }

    .hero {
        padding: var(--space-16) var(--space-3);
    }
    
    .section {
        padding: var(--space-12) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-12);
    }
    
    .container {
        padding: 0 var(--space-3);
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card,
    .news-card,
    .vision-card,
    .mission-item {
        padding: var(--space-6);
    }
    
    .image-placeholder {
        min-height: 200px;
        padding: var(--space-6);
    }
    
    .about-placeholder {
        min-height: 250px;
    }

    .partners-track {
        animation-duration: 20s;
    }
}

/* ================================================
   UTILITY CLASSES
================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* ================================================
   ANIMATIONS & TRANSITIONS
================================================ */

/* Fix for horizontal scrolling on mobile */
body, html {
    overflow-x: clip;
}

.fade-in {
        opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
}

/* ================================================
   EVENTS PAGE STYLES
================================================ */

/* Page Header */
.page-header {
    background: var(--gradient-hero);
    color: var(--white);
    padding: var(--space-32) 0 var(--space-24);
    margin-top: 80px;
        text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.8) 0%, rgba(77, 171, 247, 0.6) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-4);
    color: var(--white);
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    align-items: center;
        justify-content: center;
    gap: var(--space-2);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.event-card {
    background: var(--gradient-card);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-placeholder {
    background: var(--gradient-subtle);
    border: none;
    border-radius: 0;
    height: 100%;
    display: flex;
        flex-direction: column;
        align-items: center;
    justify-content: center;
}

.event-placeholder i {
    color: var(--primary-blue);
    margin-bottom: var(--space-4);
}

.event-placeholder h4 {
    color: var(--primary-navy);
    margin: 0;
    font-size: 1.25rem;
}

.event-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.upcoming-badge {
    background: var(--gradient-accent);
    color: var(--neutral-900);
}

.past-badge {
    background: var(--gradient-primary);
    color: var(--white);
}

.event-content {
    padding: var(--space-8);
    position: relative;
}

.event-date {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-weight: 600;
    color: var(--primary-blue);
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.event-date .month {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date .year {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.event-content h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-3);
    color: var(--primary-navy);
    line-height: 1.3;
}

.event-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.event-location i {
    color: var(--accent-gold);
}

.event-content p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    font-size: 1rem;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.tag {
    background: var(--primary-powder);
    color: var(--primary-blue);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-btn:hover {
    background: var(--gradient-accent);
    color: var(--neutral-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.event-btn.secondary {
    background: var(--neutral-200);
    color: var(--neutral-700);
}

.event-btn.secondary:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-20) 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    font-size: 1.125rem;
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-4);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: var(--white);
    color: var(--neutral-700);
}

.newsletter-form input:focus {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}

.newsletter-form button {
    padding: var(--space-4) var(--space-8);
    background: var(--gradient-accent);
    color: var(--neutral-900);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design for Events */
@media (max-width: 768px) {
    .page-header {
        padding: var(--space-20) 0 var(--space-16);
        margin-top: 70px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .event-card {
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* Generic class for responsive images */
.responsive-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Specific styling for welcome section images to control their size */
.welcome-section .image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make the ECOSOC text column wider than the image */
.welcome-section .subsection-container .two-column .content-column {
    flex: 1.8;
}
.welcome-section .subsection-container .two-column .image-column {
    flex: 1;
}

.welcome-section .image-column .responsive-image {
    max-height: 450px;
    width: auto;
    max-width: 100%; /* Ensure image does not exceed container width */
}

.service-image {
    max-height: 400px;
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.single-column-centered {
    display: flex;
    justify-content: center;
    text-align: center;
}

.single-column-centered .content-column {
    flex: 0 1 900px; /* Allow content to grow up to 900px */
}