/* Font Optimization */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJA.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1s.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1s.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1s.woff2') format('woff2');
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

/* Section Spacing */
section {
    padding: var(--section-padding);
}

:root {
    --primary-color: #ff6b00;
    --secondary-color: #ff8534;
    --accent-color: #ffa066;
    --text-color: #2d2d2d;
    --light-text: #666666;
    --background-light: #fff5f0;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #ff6b00, #ff8534);
    --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    --section-padding: 5rem 0;
    --container-padding: 2rem;
    --header-height: 80px;
    --grid-gap: 2rem;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(255, 107, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(255, 107, 0, 0.1);
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-full: 9999px;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to sections */
section {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card, .achievement-card, .team-card, .testimonial-card {
    opacity: 0;
    animation: scaleIn 0.5s ease-out forwards;
}

/* Apply slide-in animation to specific sections */
.service-card:nth-child(even), .achievement-card:nth-child(even), .team-card:nth-child(even), .testimonial-card:nth-child(even) {
    animation-name: slideInLeft;
}

.press-slider {
  position: relative;
  max-width: 100%;
  margin: 2rem auto;
  overflow: hidden;
}

.press-slide {
  display: none;
  text-align: center;
  transition: all 0.3s ease;
}

.press-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.press-slide img {
  max-width: 100%;
  max-height: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.slider-controls {
  position: static;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  pointer-events: none;
  z-index: 10;
}

.slider-controls button {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.slider-controls button:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .slider-controls {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .slider-controls button {
    width: 36px;
    height: 36px;
  }
}

.slider-controls button {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-controls button:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.slider-controls button:first-child {
  margin-left: 1rem;
}

.slider-controls button:last-child {
  margin-right: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Gallery Section Styles */
.gallery-section {
  padding: 6rem 0;
  background-color: #f9f9f9;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
  min-width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
   z-index: 2;
   transform: scale(1.5);
   box-shadow: 0 15px 25px rgba(0,0,0,0.3);
   position: relative;
   transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }
 
 .gallery-item:not(:hover) {
   filter: brightness(0.8);
   transform: scale(0.95);
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   position: static;
 }
 
 .gallery-grid {
   transition: all 0.4s ease;
 }
 
 .gallery-item:hover ~ .gallery-item {
   transform: none;
 }
 
 .gallery-item:has(~ .gallery-item:hover) {
   transform: none;
 }

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.gallery-item:nth-child(2) img {
  object-fit: contain;
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    padding: 0 1rem;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scroll-padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .gallery-item {
    scroll-snap-align: center;
  }
  
  .gallery-item:hover {
    transform: scale(1.2);
    z-index: 2;
  }
  
  .gallery-item:not(:hover) {
    filter: brightness(0.8);
    transform: scale(0.95);
  }
  
  .gallery-item:nth-child(2) img {
    object-fit: contain;
  }
}

/* Footer Styles */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-img {
    height: 3rem; /* Match the font size of the text it's replacing */
    width: auto;
    vertical-align: middle;
    filter: brightness(1.1);
}

.footer-logo p {
    color: var(--accent-color);
    line-height: 1.6;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-section:hover h4::after {
    width: 60px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    color: #999;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Enhanced Navbar Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    color: var(--text-color);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-color);
}



.header.scrolled .nav-toggle-bar {
    background-color: var(--text-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem; /* More consistent padding */
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 100;
    padding-right: 1rem; /* Reduced padding for better balance */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nav-links {
        width: 70%; /* More consistent width */
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0 1.5rem; /* Slightly increased from current 1rem */
    }
}

.logo-link {
    text-decoration: none;
}

.logo-img {
    height: 70px; /* Increased from 50px for desktop */
    width: auto;
    max-width: auto; /* Increased from 200px for desktop */
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

/* Logo hover effect */
.logo-link:hover .logo-img {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.2);
}

/* Scrolled header logo adjustments */
.header.scrolled .logo-img {
    height: 60px; /* Increased from 45px to maintain proportion with the new 70px base size */
    filter: brightness(1);
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
    
    .header.scrolled .logo-img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 40px;
        max-width: 160px;
    }
    
    .header.scrolled .logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: auto !important;
    }
    
    .header.scrolled .logo-img {
        height: 30px;
    }
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

@media (max-width: 992px) {
    .nav-links {
        gap: 1rem; /* Further reduced for smaller screens */
    }
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transform: translateY(-1px);
}

.nav-link.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 100;
    padding: 0;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.nav-toggle-bar:first-child {
    top: 25%;
}

.nav-toggle-bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle-bar:last-child {
    bottom: 25%;
}

.header.scrolled .nav-toggle-bar {
    background: var(--text-color);
}

/* Mobile Navigation Backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* Enhanced Mobile Navigation */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .nav-toggle.active .nav-toggle-bar:first-child {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .nav-toggle-bar:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: var(--white);
        flex-direction: column;
        padding: calc(var(--header-height) + 1rem) 2rem 2rem;
        gap: 1.5rem;
        transition: 0.3s ease-in-out;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }


}

@media (max-width: 576px) {
    .navbar {
        padding: 0 1rem;
    }

    .nav-links {
        width: 100%;
        padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
    }

    .nav-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Scrolled state adjustments */
.header.scrolled .nav-link {
    color: var(--text-color);
}

.header.scrolled .nav-btn.join-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8534);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.header.scrolled .nav-btn.support-btn {
    background: rgba(255, 107, 0, 0.05);
    color: #ff6b00;
    border: 2px solid #ff6b00;
}

.header.scrolled .nav-btn.support-btn:hover {
    background: #ff6b00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.2);
}

.header.scrolled .nav-btn i {
    color: inherit;
}

.header.scrolled .nav-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.2);
}

/* Ensure smooth transitions for navigation items */
@keyframes navItemFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animation to nav items */
.nav-links.active li {
    animation: navItemFade 0.3s ease-in-out forwards;
}

.nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
.nav-links.active li:nth-child(2) { animation-delay: 0.2s; }
.nav-links.active li:nth-child(3) { animation-delay: 0.3s; }
.nav-links.active li:nth-child(4) { animation-delay: 0.4s; }
.nav-links.active li:nth-child(5) { animation-delay: 0.5s; }
.nav-links.active li:nth-child(6) { animation-delay: 0.6s; }
.nav-links.active li:nth-child(7) { animation-delay: 0.7s; }

/* Improve touch targets for mobile */
@media (max-width: 992px) {
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .nav-btn {
        padding: 0.8rem 1.5rem;
        margin: 0;
    }
}

/* Add iOS compatibility fixes */
@supports (-webkit-touch-callout: none) {
    .nav-links {
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-backdrop {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
}

/* Magazine Section - Temporarily Disabled
.magazine-section {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

.flipbook-container {
    max-width: 600px;
    margin: 1rem auto;
    background-color: transparent;
    box-shadow: none;
    height: auto;
    position: relative;
}

.flipbook {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
}

.page {
    display: none !important; /* Force hide all pages by default */
    /* width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page.active {
    display: block !important; /* Force show active page */
    /* opacity: 1;
} */



.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: calc(var(--header-height) + 2rem) 0 4rem;
}

/* High-DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
            url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=3000&q=100');
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.8), rgba(255, 133, 52, 0.7));
    mix-blend-mode: overlay;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-welcome {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(255, 107, 0, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.hero .primary-button,
.hero .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .primary-button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.hero .primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 0, 0.1),
        rgba(255, 107, 0, 0.2),
        rgba(255, 107, 0, 0.1)
    );
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .primary-button:hover::before {
    transform: translateX(0);
}

.hero .primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.hero .secondary-button {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.hero .secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .secondary-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero .secondary-button:hover {
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero .primary-button i,
.hero .secondary-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero .primary-button:hover i,
.hero .secondary-button:hover i {
    transform: translateX(5px) scale(1.1);
}

.hero .primary-button span,
.hero .secondary-button span {
    position: relative;
    z-index: 1;
}

/* Responsive styles for hero buttons */
@media (max-width: 768px) {
    .hero .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero .primary-button,
    .hero .secondary-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Button press effect */
.hero .primary-button:active,
.hero .secondary-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hover focus styles for accessibility */
.hero .primary-button:focus-visible,
.hero .secondary-button:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 0 0 auto;
    min-width: 200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #ffd9c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Responsive Styles for Hero */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 960px;
    }

    .hero-text-content {
        max-width: 700px;
    }

    .stat-item {
        min-width: 180px;
        padding: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: calc(var(--header-height) + 1rem) 0 3rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item {
        min-width: 160px;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--header-height) 0 2rem;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-text-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-welcome {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-stats {
        margin-top: 3rem;
        gap: 1.5rem;
    }

    .stat-item {
        width: calc(50% - 1rem);
        min-width: 140px;
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: calc(var(--header-height) - 1rem) 0 2rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-welcome {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        min-width: auto;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Landscape Mode Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        padding: calc(var(--header-height) + 1rem) 0;
    }

    .hero-stats {
        margin-top: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }
}

/* High-DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
            url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=3000&q=100');
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--light-text);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Achievements Section */
.achievements {
    padding: 5rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--background-light);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.author h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
}

.contact-form {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: var(--font-size-base);
    background: var(--white);
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: var(--font-size-sm);
    margin-top: 0.5rem;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.error .error-message {
    display: block;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .submit-button {
        width: 100%;
    }
}

@supports (-webkit-touch-callout: none) {
    /* iOS-specific styles */
    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
}

/* Brand Partners Section */
.brand-partners {
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.brand-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 0, 0.2), 
        transparent
    );
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.partner-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 0, 0.05),
        rgba(255, 133, 52, 0.05)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-logo {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-content {
    position: relative;
    z-index: 1;
}

.partner-content h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-content p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.partner-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg,
        rgba(255, 107, 0, 0.05),
        rgba(255, 133, 52, 0.05)
    );
    border-radius: 20px;
    position: relative;
}

.partner-cta h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.partner-cta p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.partner-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-button i {
    transition: transform 0.3s ease;
}

.partner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.partner-button:hover i {
    transform: translateX(5px);
}

/* Responsive styles for partners section */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .brand-partners {
        padding: 4rem 0;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .partner-cta h3 {
        font-size: 1.5rem;
    }

    .partner-cta p {
        font-size: 1rem;
    }
}

/* Animation for partner cards */
@keyframes partnerCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-card {
    animation: partnerCardFadeIn 0.6s ease-out forwards;
}

/* Enhanced Responsive Styles */

/* Global Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header & Navigation */
    .logo h1 {
        font-size: 1.3rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-welcome {
        font-size: 1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: auto;
    }

    /* About Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Testimonials */
    .testimonials-slider {
        padding: 1rem;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }

    /* Contact Section */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
        --grid-gap: 1.5rem;
    }
    
    .container {
        max-width: 100%;
    }
}

/* Fix section alignments */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--grid-gap);
}

.section-title {
    font-size: var(--font-size-3xl);
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Card alignments */
.card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: var(--font-size-xl);
    margin-bottom: 0.5rem;
}

.card-body {
    color: var(--light-text);
}

/* Image alignments */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Button alignments */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-description {
        font-size: var(--font-size-base);
    }
    
    /* Hero Section Mobile Fixes */
    .hero {
        padding: calc(var(--header-height) + 1rem) 0 2rem;
        min-height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    /* About Section Mobile Fixes */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    /* Achievements Section Mobile Fixes */
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .achievement-card {
        padding: 1.5rem 1rem;
    }
    
    .achievement-card .number {
        font-size: 2rem;
    }
    
    /* Team Section Mobile Fixes */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Contact Section Mobile Fixes */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }
    
    /* Gallery Section Mobile Fixes */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    /* Press Section Mobile Fixes */
    .press-slide img {
        max-height: 300px;
    }
    
    .slider-controls {
        gap: 1rem;
    }
    
    .slider-controls button {
        padding: 0.5rem 1rem;
        font-size: 1.2rem;
    }
}

/* Navbar Buttons */
.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 1rem;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    border: 2px solid transparent;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: var(--transition);
    transform: translateX(-100%);
}

.nav-btn.join-btn {
    color: var(--white);
    background: linear-gradient(135deg, #FF9933 0%, #FF8534 100%);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.2);
}

.nav-btn.join-btn::before {
    background: linear-gradient(135deg, #FF8534 0%, #FF7733 100%);
}

.nav-btn.support-btn {
    color: var(--white);
    background: linear-gradient(135deg, #138808 0%, #0D6B06 100%);
    box-shadow: 0 4px 15px rgba(19, 136, 8, 0.2);
}

.nav-btn.support-btn::before {
    background: linear-gradient(135deg, #0D6B06 0%, #085004 100%);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.25);
}

.nav-btn:hover::before {
    transform: translateX(0);
}

.nav-btn i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-btn:hover i {
    transform: translateX(3px);
}

.nav-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.15);
}

/* Scrolled state styles */
.header.scrolled .nav-btn.join-btn {
    background: linear-gradient(135deg, #FF9933 0%, #FF8534 100%);
    color: var(--white);
    border-color: transparent;
}

.header.scrolled .nav-btn.support-btn {
    background: linear-gradient(135deg, #138808 0%, #0D6B06 100%);
    color: var(--white);
    border-color: transparent;
}

.header.scrolled .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.25);
}

/* Mobile styles */
@media (max-width: 992px) {
    .nav-btn {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
        padding: 1rem 1.5rem;
    }
    
    .nav-btn.join-btn,
    .nav-btn.support-btn {
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
    }
}

@media (max-width: 576px) {
    .nav-btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }
}

/* Active State for Scrolled Header */
.header.scrolled .nav-btn.join-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8534);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.header.scrolled .nav-btn.support-btn {
    background: rgba(255, 107, 0, 0.05);
    color: #ff6b00;
    border: 2px solid #ff6b00;
}

.header.scrolled .nav-btn.support-btn:hover {
    background: #ff6b00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.2);
}

.header.scrolled .nav-btn i {
    color: inherit;
}

.header.scrolled .nav-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.2);
}

/* Enhanced hover effects for scrolled state */
.header.scrolled .nav-btn::before {
    background: linear-gradient(135deg, #ff8534, #ff6b00);
}

.header.scrolled .nav-btn:hover span {
    transform: translateX(-3px);
}

.header.scrolled .nav-btn:hover i {
    transform: translateX(3px);
}

/* Focus states for accessibility */
.header.scrolled .nav-btn:focus-visible {
    outline: 2px solid #ff6b00;
    outline-offset: 2px;
}

/* Mobile styles for scrolled state */
@media (max-width: 992px) {
    .header.scrolled .nav-btn {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }
    
    .header.scrolled .nav-btn.join-btn {
        order: 1;
    }
    
    .header.scrolled .nav-btn.support-btn {
        order: 2;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero,
    .footer {
        display: none;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    section {
        page-break-inside: avoid;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Global Button Styles */
.nav-btn,
.primary-button,
.secondary-button,
.support-button,
.partner-button,
.cta-buttons a,
.submit-button {
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hero Buttons */
.hero .primary-button,
.hero .secondary-button {
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Support Section Buttons */
.support-button {
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

/* Partner Section Button */
.partner-button {
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .nav-btn,
    .primary-button,
    .secondary-button,
    .support-button,
    .partner-button {
        width: auto;
        min-width: fit-content;
    }
}

@media (max-width: 576px) {
    .nav-btn,
    .primary-button,
    .secondary-button,
    .support-button,
    .partner-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Enhanced Founder's Message Section */
.founder-message {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 0, 0.05),
        rgba(255, 133, 52, 0.05)
    );
    position: relative;
    overflow: hidden;
}

.founder-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 107, 0, 0.2),
        transparent
    );
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}


.founder-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.message-text {
    position: relative;
    padding: 2rem;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.message-content-inner {
    position: relative;
    z-index: 1;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.message-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.founder-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.info-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-content p {
    margin: 0;
    color: var(--light-text);
}

.founder-tagline {
    color: var(--primary-color) !important;
    font-weight: 500;
}

.founder-signature {
    max-width: 150px;
    opacity: 0.8;
}

.founder-signature img {
    width: 100%;
    height: auto;
}

/* Responsive styles for founder section */
@media (max-width: 992px) {
    .message-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .message-text {
        padding: 1.5rem;
    }

    .highlight-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .founder-message {
        padding: 4rem 0;
    }

    .message-text {
        padding: 1rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .founder-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .founder-signature {
        max-width: 120px;
    }
}

/* Animation for founder section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.founder-message .section-title,
.message-content > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.message-content > *:nth-child(1) { animation-delay: 0.2s; }
.message-content > *:nth-child(2) { animation-delay: 0.4s; }

.support {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

.support-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.support-icon {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.support-icon i {
    font-size: 32px;
    color: #fff;
}

.support-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--text-dark);
}

.support-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.support-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.support-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.support-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.support-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.support-button {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.support-button:hover {
    gap: 15px;
}

.action-hint {
    font-size: 14px;
    color: var(--text-muted);
}

.support-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .support-cta {
        padding: 40px 20px;
    }
}

.support-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-cta .primary-button,
.support-cta .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-cta .primary-button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.support-cta .primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.support-cta .secondary-button {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.support-cta .secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.support-cta .primary-button i,
.support-cta .secondary-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.support-cta .primary-button:hover i,
.support-cta .secondary-button:hover i {
    transform: translateX(5px);
}

/* Responsive styles for CTA buttons */
@media (max-width: 768px) {
    .support-cta .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .support-cta .primary-button,
    .support-cta .secondary-button {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Supporters Hero Styles */
.supporters-hero {
    position: relative;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

.supporters-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.supporters-hero .hero-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #FFD700; /* Bright gold color for better visibility */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.supporters-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #FFA500, #FFD700); /* Orange to gold gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.supporters-hero .hero-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.supporters-hero .hero-description p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #FFFFFF; /* Pure white for maximum contrast */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.supporters-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.supporters-hero .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.supporters-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700; /* Matching gold color */
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.supporters-hero .stat-label {
    font-size: 1rem;
    color: #FFFFFF; /* Pure white for clarity */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .supporters-hero {
        padding: 80px 0;
    }

    .supporters-hero .hero-title {
        font-size: 2.5rem;
    }

    .supporters-hero .hero-description p {
        font-size: 1.1rem;
    }

    .supporters-hero .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .supporters-hero .stat-number {
        font-size: 2rem;
    }
}

/* Major Donors Section */
.major-donors {
    padding: 8rem 0;
    background: linear-gradient(180deg, 
        rgba(255, 215, 0, 0.08) 0%,
        rgba(255, 165, 0, 0.05) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    position: relative;
}

.donors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.donor-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.donor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.1);
}

.donor-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.donor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.donor-card:hover .donor-image img {
    transform: scale(1.1);
}

.donor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.6)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.donor-card:hover .donor-overlay {
    opacity: 1;
}

.donor-social {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.donor-card:hover .donor-social {
    transform: translateY(0);
    opacity: 1;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.donor-content {
    padding: 2rem;
}

.donor-category {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff8534);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.donor-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.donor-title {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.donor-impact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 15px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.impact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.impact-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.donor-description {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.donor-quote {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 15px;
    margin-top: 2rem;
}

.donor-quote i {
    position: absolute;
    top: -10px;
    left: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.3;
}

.donor-quote p {
    font-style: italic;
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
}

.donor-cta {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 5rem auto;
    max-width: 90%;
}

.donor-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.donor-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.donor-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.donor-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.donor-cta .primary-button,
.donor-cta .secondary-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.donor-cta .primary-button {
    background: white;
    color: var(--primary-color);
}

.donor-cta .secondary-button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.donor-cta .primary-button:hover,
.donor-cta .secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .donors-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .donor-image {
        height: 250px;
    }

    .donor-content {
        padding: 1.5rem;
    }

    .donor-cta {
        padding: 3rem 2rem;
    }

    .donor-cta h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .donors-grid {
        grid-template-columns: 1fr;
    }

    .donor-impact {
        grid-template-columns: 1fr;
    }

    .donor-cta .cta-buttons {
        flex-direction: column;
    }

    .donor-cta .primary-button,
    .donor-cta .secondary-button {
        width: 100%;
        justify-content: center;
    }
}

/* Corporate Supporters Section */
.corporate-supporters {
    padding: 8rem 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 107, 0, 0.05) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    position: relative;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.supporter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.supporter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.1);
}

.supporter-header {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg,
        rgba(255, 107, 0, 0.05),
        rgba(255, 133, 52, 0.05)
    );
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.supporter-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.supporter-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.supporter-card:hover .supporter-logo img {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
}

.partnership-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b00, #ff8534);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partnership-badge i {
    color: #FFD700;
}

.supporter-content {
    padding: 2rem;
}

.supporter-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.partnership-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contribution-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 15px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--light-text);
}

.support-areas {
    margin-bottom: 2rem;
}

.support-areas h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.support-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.support-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.support-highlights li i {
    color: var(--primary-color);
}

.supporter-quote {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 15px;
    margin-top: 2rem;
}

.supporter-quote i {
    position: absolute;
    top: -10px;
    left: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.3;
}

.supporter-quote p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quote-author .name {
    font-weight: 600;
    color: var(--text-color);
}

.quote-author .designation {
    font-size: 0.85rem;
    color: var(--light-text);
}

.partnership-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    padding: 4rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.benefit i {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.benefit span {
    font-weight: 500;
    font-size: 1.1rem;
}

.partnership-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.partnership-cta .primary-button,
.partnership-cta .secondary-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.partnership-cta .primary-button {
    background: white;
    color: var(--primary-color);
}

.partnership-cta .secondary-button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.partnership-cta .primary-button:hover,
.partnership-cta .secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .supporters-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .support-highlights {
        grid-template-columns: 1fr;
    }

    .partnership-cta {
        padding: 3rem 2rem;
    }

    .partnership-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .supporters-grid {
        grid-template-columns: 1fr;
    }

    .contribution-stats {
        grid-template-columns: 1fr;
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
    }

    .partnership-cta .cta-buttons {
        flex-direction: column;
    }

    .partnership-cta .primary-button,
    .partnership-cta .secondary-button {
        width: 100%;
        justify-content: center;
    }

    .benefit i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Join Us CTA Section */
.join-supporters {
    padding: 8rem 0;
    background: linear-gradient(135deg,
        #FFA500,
        #FFD700,
        #FFA500
    );
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.join-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.support-option {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.support-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0)
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.support-option:hover::before {
    transform: translateX(0);
}

.support-option i {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.support-option:hover i {
    transform: rotateY(360deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 3px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .header.scrolled {
        background: rgba(255, 255, 255, 0.98);
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .major-donors,
    .corporate-supporters,
    .volunteer-champions,
    .join-supporters {
        padding: 4rem 0;
    }

    .support-option i {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

.volunteers-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
    overflow-x: auto;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.volunteers-grid::-webkit-scrollbar {
    height: 6px;
}

.volunteers-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.volunteers-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.volunteer-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid #FFE5CC;
}

.volunteer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.15);
    border-color: #FF9933;
    background: #FFF5E6;
}

.volunteer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.volunteer-image {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FF9933;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.volunteer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.volunteer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.volunteer-card:hover .volunteer-overlay {
    opacity: 1;
}

.volunteer-social {
    display: flex;
    gap: 0.75rem;
}

.volunteer-social .social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #FF9933;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.volunteer-social .social-link:hover {
    background: #FF9933;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.2);
}

.volunteer-badge {
    background: #FF9933;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.2);
}

@media (max-width: 1200px) {
    .volunteer-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .volunteers-grid {
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .volunteer-card {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .volunteers-grid {
        gap: 1rem;
    }
    
    .volunteer-card {
        min-width: 260px;
    }
}

.volunteer-content h3 {
    color: #FF9933;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.volunteer-role {
    color: #FF9933;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.volunteer-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: var(--border-radius);
    border: 1px solid #FFE5CC;
}

.stat i {
    color: #138808;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

.expertise-areas h4 {
    color: #333;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expertise-tags .tag {
    background: #ffffff;
    color: #444;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    transition: var(--transition);
    border: 1px solid #FFE5CC;
}

.expertise-tags .tag:hover {
    background: #FF9933;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.2);
}

.volunteer-impact h4 {
    color: #333;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #444;
    font-size: 0.9375rem;
    line-height: 1.5;
    background: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #FFE5CC;
}

.impact-list li i {
    color: #138808;
    font-size: 1rem;
    flex-shrink: 0;
}

.volunteer-quote {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid #FFE5CC;
    margin-top: 1rem;
}

.volunteer-quote i {
    color: #FF9933;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: block;
}

.volunteer-quote p {
    color: #444;
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.volunteer-badge {
    background: #FF9933;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.2);
}

.volunteer-badge i {
    font-size: 1rem;
    color: white;
}

/* Support for dark mode if needed */
@media (prefers-color-scheme: dark) {
    .volunteer-card {
        background: #ffffff;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .volunteer-content h3,
    .expertise-areas h4,
    .volunteer-impact h4 {
        color: #000000;
    }

    .stat-number {
        color: #fff;
    }

    .stat-label,
    .impact-list li,
    .volunteer-quote p {
        color: #bbb;
    }

    .expertise-tags .tag {
        background: #a2a2a2;
        color: #ddd;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .volunteer-stats,
    .volunteer-quote {
        background: #ffffff;
        border-color: rgba(255, 255, 255, 0.1);
        flex-wrap: wrap;
    }
}
/* ... existing code ... */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-5px);
    box-shadow: 2px 2px 10px #999;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 22px;
    }
}

/* Additional Mobile Responsiveness Improvements */
@media (max-width: 576px) {
    /* Hero Section Small Screen Fixes */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    /* Section Title Adjustments */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* Achievements Grid Single Column */
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Gallery Single Column */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Navigation Improvements */
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Button Adjustments */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Container Padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Section Spacing */
    .section {
        padding: 3rem 0;
    }
    
    /* Team Cards */
    .team-card {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1rem;
        text-align: center;
    }
    
    /* Contact Form Improvements */
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 1rem;
        width: 100%;
    }
    
    /* Press Section */
    .press-slide img {
        max-height: 250px;
        width: 100%;
        object-fit: contain;
    }
    
    /* Flipbook Mobile Adjustments - Temporarily Disabled
    .flipbook-container {
        height: 300px;
        margin: 0 auto;
    }
    
    .page {
        font-size: 0.7rem;
    }
    
    .flipbook-controls {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .flipbook-controls button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 44px;
    }
    
    .page-indicator {
        font-size: 0.7rem;
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    */
    }
    
    /* Volunteer Section */
    .volunteer-card {
        min-width: 260px;
        margin: 0 auto;
    }
    
    .volunteer-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Footer Adjustments */
    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    /* Header Mobile Menu */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .navbar-nav.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(19, 136, 8, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }


/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    /* Flipbook container - Temporarily Disabled
    .flipbook-container {
        height: 250px;
    }
    */
    
    .volunteer-card,
    .team-card {
        min-width: 240px;
    }
    
    .achievement-card {
        padding: 1rem;
    }
    
    .achievement-card .number {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}