:root {
    /* Color Palette - Warm & Empowering */
    --primary-pink: #FF6B9D;
    --primary-coral: #FF8C69;
    --primary-peach: #FFB088;
    --accent-purple: #B565D8;
    --accent-blue: #5EC4E0;
    --warm-orange: #FF9A76;
    
    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FFF8F3;
    --light-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --dark-gray: #4A4A4A;
    --black: #1A1A1A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #FFB088 100%);
    --gradient-secondary: linear-gradient(135deg, #B565D8 0%, #5EC4E0 100%);
    --gradient-warm: linear-gradient(135deg, #FF8C69 0%, #FFB088 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Nav layout groups for desktop: left (logo), center (links), right (CTA) */
.nav-left { display: flex; align-items: center; }
.nav-center { display: flex; align-items: center; gap: 16px; flex: 1; justify-content: center; }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Allow links to wrap gracefully on narrower desktops */
.nav-menu { display: flex; list-style: none; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: center; }
.nav-menu li { white-space: nowrap; }

/* Secondary nav items (less prominent) */
.nav-item-secondary a { color: var(--dark-gray); opacity: 0.95; }

/* CTA button in the nav */
.btn-cta {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--primary-pink);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.nav-contact { color: var(--dark-gray); text-decoration: none; font-weight: 600; }

/* On very wide screens, slightly increase spacing for readability */
@media (min-width: 1400px) {
    .nav-menu { gap: 28px; }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
}

.logo-img {
    display: block;
    width: 80px;
    height: 90px;
    object-fit: contain;
    margin-right: 12px;
}
/* What We Do Section Styles */
.what-we-do-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

.section-title {
  font-size: 48px;
  font-weight: 300;
  color: #1a1a2e;
  margin-bottom: 16px;
  text-align: left;
}

.section-title .highlight {
  font-style: italic;
  background-color: #f5e6d3;
  padding: 4px 16px;
  border-radius: 8px;
  display: inline-block;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background-color: #e8f4f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a90a4;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.4;
}

.benefit-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .what-we-do-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.95rem;
    color: #2d2d2d;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .what-we-do-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}



.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-pink);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF8F3 0%, #FFE8E0 50%, #E8F4FF 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

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

.hero-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-pink);
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Buttons */
.btn {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.btn-secondary:hover {
    background: var(--dark-gray);
    color: var(--white);
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 48px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.video-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.video-placeholder {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-xl);
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.06) 0%, rgba(181, 101, 216, 0.04) 100%);
}

.play-button {
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

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

.play-button:hover {
    transform: scale(1.1);
}

/* Floating Stat Cards */
.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

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

.stat-card-1 {
    top: 50px;
    right: -50px;
    width: 300px;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 80px;
    left: -80px;
    width: 280px;
    animation-delay: 1s;
}

/* Hero image styling */
.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* allow clicks to pass unless on button */
}

.image-overlay .play-button {
    pointer-events: auto;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* Creative badges placed over the hero image */
.hero-badges {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.badge {
    background: linear-gradient(135deg, rgba(255,107,157,0.95), rgba(255,176,136,0.95));
    color: var(--white);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.stat-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin-bottom: var(--spacing-sm);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 4px 4px 0 0;
    animation: growBar 1s ease-out both;
    min-height: 20px;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }
.chart-bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.stat-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-green {
    background: #4CAF50;
}

.dot-gray {
    background: var(--medium-gray);
}

.stat-label-small {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.stat-value-large {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: #4CAF50;
}

.stat-growth {
    color: var(--dark-gray);
    font-size: 1.5rem;
}

.growth-arrow {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 40px;
    height: 40px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -100px;
    left: -100px;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    bottom: -50px;
    right: -50px;
    animation-direction: reverse;
}

.decoration-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-warm);
    top: 50%;
    left: 50%;
    animation-duration: 15s;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--dark-gray);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    background: var(--cream);
}

/* Sticky panel inserted between About and Mission */
.sticky-panel {
    position: relative;
    margin: 40px 0;
}

.sticky-panel .sticky-inner {
    display: flex;
    justify-content: center;
}

.sticky-image-wrap {
    width: 340px;
    position: sticky;
    top: 110px; /* sits below fixed navbar */
    align-self: start;
    z-index: 50;
}

.sticky-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.sticky-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.sticky-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    pointer-events: auto;
}

.sticky-btn {
    background: rgba(255,255,255,0.9);
    color: var(--black);
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sticky-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.sticky-btn.active { background: var(--primary-pink); color: var(--white); }

/* Hide sticky panel on small screens */
@media (max-width: 1024px) {
    .sticky-image-wrap { display: none; }
}

/* Remove the small underline under the Mission & Vision section titles */
.mission-section .title-underline {
    display: none;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--black);
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* What We Do Section (faded black background + adjusted cards) */
.what-we-do-section {
    background: rgba(0,0,0,0.06); /* subtle faded black */
}

.what-we-do-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

/* Cards styled to sit on the darker section while maintaining contrast */
.what-we-do-section .service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
}

.what-we-do-section .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,107,157,0.9);
    background: linear-gradient(180deg, rgba(255,107,157,0.12), rgba(181,101,216,0.06));
    box-shadow: var(--shadow-md);
}

.what-we-do-section .service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.what-we-do-section .service-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

/* Impact Section */
.impact-section {
    background: var(--cream);
}

.impact-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

/* Events Section */
.events-section {
    background: var(--white);
}

.events-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

/* Stories Section */
.stories-section {
    background: linear-gradient(135deg, #FFE8E0 0%, #E8F4FF 100%);
}

.stories-intro {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.stories-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

/* Get Involved Section */
.get-involved-section {
    background: var(--white);
}

.involved-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.involved-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
}

.involved-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.involved-footer {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: var(--spacing-lg);
}

/* Contact Section */
.contact-section {
    background: var(--cream);
}

.contact-content {
    text-align: center;
}

.contact-content p {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
}

/* Footer */
/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

/* Footer Brand Column */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  margin: 0 0 20px 0;
  font-size: 32px;
  line-height: 1.2;
}

.logo-unique {
  display: block;
  font-weight: 700;
  color: #ffffff;
  font-style: italic;
}

.logo-diva {
  display: block;
  font-weight: 700;
  color: #c17b7b;
  font-style: italic;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0 0 24px 0;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #c17b7b;
  transform: translateY(-2px);
}

/* Footer Links Columns */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c17b7b;
  margin: 0 0 20px 0;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #ffffff;
}

/* Footer Acknowledgement */
.footer-acknowledgement {
  display: flex;
  flex-direction: column;
}

.acknowledgement-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright,
.footer-credits {
  font-size: 13px;
  color: #999999;
  margin: 0;
}

.credits-link {
  color: #c17b7b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.credits-link:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    font-size: 28px;
  }

  .footer-tagline,
  .footer-menu li a,
  .acknowledgement-text {
    font-size: 13px;
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .stat-card-1 {
        right: var(--spacing-sm);
        top: 20px;
        width: 250px;
    }
    
    .stat-card-2 {
        left: var(--spacing-sm);
        bottom: 40px;
        width: 230px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    /* On mobile, hide right-side CTA and let menu toggle control links */
    .nav-right { display: none; }
    .nav-center { justify-content: flex-end; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .video-placeholder {
        height: 400px;
    }
    
    .stat-card {
        padding: var(--spacing-sm);
    }
    
    .stat-card-1,
    .stat-card-2 {
        position: static;
        margin: var(--spacing-sm) 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ------------------------------
   About section styles (moved from inline)
   Scoped under .about-section to avoid global collisions
   ------------------------------ */

.about-section {
    padding: 100px 0;
    position: relative;
    background: var(--background-cream, #f8f5f0);
}

.about-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-section .hero-text {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 80px;
    max-width: 700px;
    color: var(--primary-dark, #1a1a1a);
    animation: fadeInUp 1s ease-out;
}

.about-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    animation: fadeIn 1.2s ease-out 0.3s backwards;
}

.about-section .image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 550px;
    background: linear-gradient(135deg, #d4c5b9 0%, #e8dfd5 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-section .image-container:hover {
    transform: scale(1.02);
}

.about-section .image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-section .image-container:hover::before {
    opacity: 1;
}

.about-section .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-section .about-brand {
    background: var(--background-light, #ffffff);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.about-section .about-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-accent, #8b5a3c), var(--secondary-accent, #b08968));
}

.about-section .brand-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-dark, #1a1a1a);
    letter-spacing: -0.02em;
}

.about-section .brand-description {
    font-size: 1.05rem;
    color: var(--text-secondary, #666666);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-section .brand-description:last-child {
    margin-bottom: 0;
}

.about-section .stats-highlight {
    display: inline-block;
    color: var(--primary-accent, #8b5a3c);
    font-weight: 700;
}

.about-section .images-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    animation: fadeIn 1.4s ease-out 0.6s backwards;
}

.about-section .image-container.tall {
    height: 450px;
}

.about-section .vision-statement {
    background: var(--primary-dark, #1a1a1a);
    color: var(--background-cream, #f8f5f0);
    padding: 60px;
    border-radius: 16px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.6s ease-out 0.8s backwards;
}

.about-section .vision-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 90, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section .vision-text {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.4;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.about-section .vision-accent {
    color: var(--secondary-accent, #b08968);
}

/* Decorative elements for about section */
.about-section .decorative-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-accent, #8b5a3c);
    border-radius: 50%;
    opacity: 0.3;
}

.about-section .dot-1 { top: 50px; left: 10%; animation: float 6s ease-in-out infinite; }
.about-section .dot-2 { top: 200px; right: 15%; animation: float 8s ease-in-out infinite 1s; }
.about-section .dot-3 { bottom: 100px; left: 20%; animation: float 7s ease-in-out infinite 2s; }
.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

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

/* Founder Introduction Section */
.founder-intro {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid #2c3e50;
    border-radius: 4px;
}

.founder-name {
    text-align: center;
    margin-top: 25px;
}

.founder-name h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d63384;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.founder-name p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d63384;
    margin: 0;
    letter-spacing: 0.5px;
}

.intro-content {
    padding-top: 40px;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d63384;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2c3e50;
    text-align: justify;
}

/* Mission and Vision Section */
.mission-vision-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mission-card,
.vision-card {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

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

.mv-content {
    padding: 20px 0;
}

.mv-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.mv-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #2c3e50;
}

.mv-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2c3e50;
    text-align: justify;
}

.mv-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

.mv-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .founder-intro {
        grid-template-columns: 400px 1fr;
        gap: 60px;
    }

    .mission-card,
    .vision-card {
        padding: 50px;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .founder-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .founder-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .intro-content {
        padding-top: 0;
    }

    .mission-card,
    .vision-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 30px;
    }

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

    .vision-card .mv-image-wrapper {
        order: -1;
    }

    .mv-image-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 60px 0;
    }

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

    .intro-text,
    .mv-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .mv-title {
        font-size: 1.5rem;
    }

    .mission-card,
    .vision-card {
        padding: 30px;
    }

    .mv-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 1.75rem;
    }

    .founder-name h3 {
        font-size: 1rem;
    }

    .founder-name p {
        font-size: 0.9rem;
    }

    .mission-card,
    .vision-card {
        padding: 25px;
    }

    .mv-title {
        font-size: 1.3rem;
    }

    .intro-text,
    .mv-text {
        font-size: 0.95rem;
    }
}
@media (max-width: 1024px) {
    .about-section .content-grid,
    .about-section .images-row {
        grid-template-columns: 1fr;
    }

    .about-section .hero-text {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .about-section .image-container {
        height: 400px;
    }

    .about-section .image-container.tall {
        height: 400px;
    }

    .about-section .about-brand {
        padding: 40px;
    }

    .about-section .vision-statement {
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .about-section .container {
        padding: 0 20px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-section .hero-text {
        margin-bottom: 40px;
    }

    .about-section .about-brand {
        padding: 30px;
    }

    .about-section .brand-title {
        font-size: 1.3rem;
    }

    .about-section .vision-statement {
        padding: 30px;
    }

    .about-section .vision-text {
        font-size: 1.4rem;
    }
}
/* President Section Styles */
.president-section {
  padding: 100px 20px;
  background-color: #e5e0d8;
  position: relative;
  overflow: hidden;
}

.president-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Circular Frame for Image */
.president-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.circle-frame {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-frame.frame-1 {
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border-color: #5a7a7f;
}

.circle-frame.frame-2 {
  width: calc(95% + 5px);
  height: calc(95% + 5px);
  border-color: #c17b7b;
}

.circle-frame.frame-3 {
  width: calc(90% + 5px);
  height: calc(90% + 5px);
  border-color: #d4a574;
}

.president-image-container {
  position: absolute;
  width: 80%;  /* Changed from 85% - reduce this value to make image smaller */
  height: 90%; /* Changed from 85% - reduce this value to make image smaller */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  background-color: #f5f5f5;
}

.president-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* President Info */
.president-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.president-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #2a2a2a;
  margin: 0;
}

.president-description {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0;
}

.president-cta {
  margin-top: 16px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c17b7b;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-link:hover {
  gap: 16px;
  color: #a86565;
}

.cta-link svg {
  transition: transform 0.3s ease;
}

.cta-link:hover svg {
  transform: translateX(4px);
}

/* Decorative Circles */
.decorative-circles {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 400px;
  height: 300px;
  z-index: 1;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
}

.deco-circle.circle-1 {
  width: 180px;
  height: 180px;
  background-color: #7a8f92;
  bottom: 20px;
  right: 20px;
}

.deco-circle.circle-2 {
  width: 140px;
  height: 140px;
  background-color: #5a7a7f;
  bottom: 80px;
  right: 180px;
}

.deco-circle.circle-3 {
  width: 100px;
  height: 100px;
  background-color: #a8b5b8;
  top: 20px;
  right: 120px;
}

.deco-circle.circle-4 {
  width: 80px;
  height: 80px;
  background-color: #4a5a5e;
  bottom: 0;
  right: 250px;
}

.deco-circle.circle-5 {
  width: 60px;
  height: 60px;
  background-color: #8a9a9e;
  top: 40px;
  right: 40px;
  border: 2px solid #e5e0d8;
}

.deco-circle.circle-6 {
  width: 90px;
  height: 90px;
  background: repeating-linear-gradient(
    45deg,
    #5a7a7f,
    #5a7a7f 2px,
    transparent 2px,
    transparent 6px
  );
  bottom: 120px;
  right: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .president-content {
    gap: 60px;
  }

  .decorative-circles {
    width: 300px;
    height: 250px;
  }

  .deco-circle.circle-1 {
    width: 140px;
    height: 140px;
  }

  .deco-circle.circle-2 {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 768px) {
  .president-section {
    padding: 60px 20px;
  }

  .president-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .president-image-wrapper {
    max-width: 350px;
  }

  .president-title {
    font-size: 36px;
  }

  .decorative-circles {
    display: none;
  }
}

@media (max-width: 480px) {
  .president-title {
    font-size: 28px;
  }

  .president-description {
    font-size: 14px;
  }

  .president-image-wrapper {
    max-width: 280px;
  }
}