/* ===================================
   Khelkud Cricket Foundation - Styles
   =================================== */

:root {
    /* Premium Color Palette */
    --primary-color: #cd1968;
    --primary-dark: #940c4c;
    --primary-light: #f9dae8;
    --secondary-color: #bad701;
    --accent-gold: #bad701;
    --accent-green: #2a9d8f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f9dae8;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #cd1968 0%, #940c4c 100%);
    --gradient-secondary: linear-gradient(135deg, #bad701 0%, #9cb20c 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Roboto', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(205, 25, 104, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(205, 25, 104, 0.15);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.logo img {
    display: block;
}

.logo-img {
    height: 80px;
    object-fit: contain;
}

.logo1 {
    height: 55px;
    width: auto;
}

.logo2 {
    height: 40px !important;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

/* Don't show nav-link::before for donate button */
.nav-donate-btn.nav-link::before {
    display: none !important;
    content: none !important;
}

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

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    position: relative;
}

.nav-link.active::before {
    display: block;
    width: 70%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Donate Button - Modern Unified Design */
.nav-donate-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%) !important;
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5rem;
    position: relative;
    overflow: hidden;
}

/* Remove the pink line from nav-link::before for donate button */
.nav-donate-btn.nav-link::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

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

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

.nav-donate-btn.active {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.donate-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.donate-btn-text {
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.donate-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20ba5a 0%, #25D366 100%) !important;
}

.nav-donate-btn:hover .donate-btn-icon {
    transform: scale(1.1);
}

.nav-donate-btn:hover .donate-btn-arrow {
    transform: translateX(4px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(205, 25, 104, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(205, 25, 104, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(205, 25, 104, 0.1);
    border-color: rgba(205, 25, 104, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* ===================================
   HERO SLIDER SECTION
   =================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    transition: opacity 1s ease-in-out;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(205, 25, 104, 0.5) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    animation: slideInUp 0.8s ease-out;
}

.hero-slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-slide-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(205, 25, 104, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: slideInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

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

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

.hero-slide-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(205, 25, 104, 0.6);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(205, 25, 104, 0.4);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(205, 25, 104, 0.5);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* ===================================
   GAMES SLIDER SECTION
   =================================== */

.games-slider-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.games-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.games-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.games-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    pointer-events: none;
}

.games-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
}

.games-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.games-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.games-slide.active .games-slide-image img {
    transform: scale(1);
}

.games-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(239, 127, 2, 0.4) 100%);
    z-index: 1;
}

.games-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    text-align: center;
}

.games-slide-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.games-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.games-slider-prev,
.games-slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: #1a1a1a;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.games-slider-prev:hover,
.games-slider-next:hover {
    background: #ef7f02;
    color: #fff;
    transform: scale(1.1);
}

.games-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.games-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.games-slider-dot.active {
    background: #ef7f02;
    border-color: #ef7f02;
    width: 30px;
    border-radius: 6px;
}

.games-slider-dot:hover {
    background: rgba(239, 127, 2, 0.5);
}

/* Responsive Games Slider */
@media (max-width: 768px) {
    .games-slider-container {
        height: 400px;
        border-radius: 15px;
    }
    
    .games-slide-title {
        font-size: 2rem;
    }
    
    .games-slider-prev,
    .games-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .games-slider-nav {
        padding: 0 10px;
    }
    
    .games-slider-dots {
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .games-slider-container {
        height: 300px;
    }
    
    .games-slide-title {
        font-size: 1.5rem;
    }
}

/* ===================================
   KEY PROGRAMS SECTION
   =================================== */

.key-programs-section {
    padding: 80px 0;
}

.key-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

@media (max-width: 1024px) {
    .key-programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.key-program-item {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.key-program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ef7f02;
    z-index: 1;
}

.key-program-item:nth-child(2)::before {
    background: #bad701;
}

.key-program-item:nth-child(4)::before {
    background: #bad701;
}

.key-program-item:nth-child(6)::before {
    background: #bad701;
}

.key-program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.program-icon-wrapper {
    padding: 25px 25px 20px 25px;
    margin: 0;
}

.program-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 25px 15px 25px;
}

.program-header-row .program-icon-wrapper {
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.program-header-row .program-content {
    padding: 0;
    flex: 1;
}

.program-header-row .program-title {
    margin: 0;
}

.program-description-wrapper {
    padding: 0 25px 25px 25px;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: #ef7f02;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 127, 2, 0.2);
}

.key-program-item:nth-child(2) .program-icon {
    background: #bad701;
    box-shadow: 0 4px 12px rgba(186, 215, 1, 0.2);
}

.key-program-item:nth-child(4) .program-icon {
    background: #bad701;
    box-shadow: 0 4px 12px rgba(186, 215, 1, 0.2);
}

.key-program-item:nth-child(6) .program-icon {
    background: #bad701;
    box-shadow: 0 4px 12px rgba(186, 215, 1, 0.2);
}

.key-program-item:hover .program-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(239, 127, 2, 0.3);
}

.key-program-item:nth-child(2):hover .program-icon,
.key-program-item:nth-child(4):hover .program-icon,
.key-program-item:nth-child(6):hover .program-icon {
    box-shadow: 0 6px 18px rgba(186, 215, 1, 0.3);
}

.program-content {
    flex: 1;
    padding: 0 25px 25px 25px;
    display: flex;
    flex-direction: column;
}

.program-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.key-program-item:nth-child(2) .program-title {
    color: #ef7f02;
}

.key-program-item:hover .program-title {
    color: #ef7f02;
}

.key-program-item:nth-child(2):hover .program-title {
    color: #1a1a1a;
}

.program-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

/* Responsive Key Programs */
@media (max-width: 768px) {
    .key-programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }
    
    .program-icon-wrapper {
        padding: 20px 20px 15px 20px;
    }
    
    .program-header-row {
        padding: 20px 20px 15px 20px;
        gap: 12px;
    }
    
    .program-header-row .program-icon-wrapper {
        padding: 0;
    }
    
    .program-description-wrapper {
        padding: 0 20px 20px 20px;
    }
    
    .program-content {
        padding: 0 20px 20px 20px;
    }
    
    .program-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .program-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .program-description {
        font-size: 0.9rem;
    }
}

/* ===================================
   PROGRAMS SHOWCASE SECTION
   =================================== */

.programs-showcase-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.programs-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(205, 25, 104, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(186, 215, 1, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.programs-showcase-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
}

.program-showcase-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.program-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ef7f02 0%, #bad701 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-showcase-card:nth-child(even)::before {
    background: linear-gradient(90deg, #bad701 0%, #ef7f02 100%);
}

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

.program-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(205, 25, 104, 0.15);
    border-color: rgba(205, 25, 104, 0.2);
}

.program-card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(205, 25, 104, 0.08);
    line-height: 1;
    z-index: 0;
}

.program-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef7f02 0%, #ff9a3c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(239, 127, 2, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.program-showcase-card:nth-child(2) .program-card-icon,
.program-showcase-card:nth-child(4) .program-card-icon,
.program-showcase-card:nth-child(6) .program-card-icon {
    background: linear-gradient(135deg, #bad701 0%, #d4e83a 100%);
    box-shadow: 0 10px 30px rgba(186, 215, 1, 0.25);
}

.program-showcase-card:hover .program-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(239, 127, 2, 0.35);
}

.program-showcase-card:nth-child(2):hover .program-card-icon,
.program-showcase-card:nth-child(4):hover .program-card-icon,
.program-showcase-card:nth-child(6):hover .program-card-icon {
    box-shadow: 0 15px 40px rgba(186, 215, 1, 0.35);
}

.program-card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.program-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.program-showcase-card:hover .program-card-title {
    color: var(--primary-color);
}

.program-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
    flex: 1;
}

.program-card-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.1) 0%, rgba(186, 215, 1, 0.1) 100%);
    border-radius: 50px;
    border: 1px solid rgba(205, 25, 104, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.program-showcase-card:hover .program-card-highlight {
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.15) 0%, rgba(186, 215, 1, 0.15) 100%);
    border-color: rgba(205, 25, 104, 0.3);
    transform: translateX(5px);
}

.highlight-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

/* Responsive Programs Showcase */
@media (max-width: 1024px) {
    .programs-showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-showcase-card {
        padding: 2.5rem;
    }
    
    .program-card-number {
        font-size: 3.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .program-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .program-card-icon i {
        font-size: 2rem;
    }
    
    .program-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .programs-showcase-section {
        padding: 60px 0;
    }
    
    .programs-showcase-container {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .program-showcase-card {
        padding: 2rem;
    }
    
    .program-card-number {
        font-size: 3rem;
        top: 1.25rem;
        right: 1.25rem;
    }
    
    .program-card-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .program-card-icon i {
        font-size: 1.75rem;
    }
    
    .program-card-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .program-card-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .program-card-highlight {
        padding: 0.625rem 1.25rem;
    }
    
    .highlight-label {
        font-size: 0.8rem;
    }
    
    .highlight-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .program-icon-wrapper {
        padding: 18px 18px 15px 18px;
    }
    
    .program-content {
        padding: 0 18px 18px 18px;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .program-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .program-description {
        font-size: 0.85rem;
    }
}

/* ===================================
   PREMIUM HERO SECTION
   =================================== */

.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    padding: 180px 0 80px;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(239, 127, 2, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(186, 215, 1, 0.02) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.hero-premium-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(239, 127, 2, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(186, 215, 1, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.05;
    animation: float 70s ease-in-out infinite;
}

.shape-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-primary);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-square {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    top: 30%;
    right: -5%;
    transform: rotate(45deg);
    animation-delay: 5s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 350px solid var(--accent-gold);
    bottom: -20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) translateX(-30px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(-60px) rotate(270deg);
    }
}

.hero-premium-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-premium-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 127, 2, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(239, 127, 2, 0.25);
}

.hero-premium-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-premium-title {
    font-size: clamp(1.6rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -1.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    margin-bottom: 5px;
}

.title-line-1 {
    animation-delay: 0.2s;
    color: rgba(255, 255, 255, 0.9);
}

.title-line-2 {
    animation-delay: 0.4s;
    color: rgba(255, 255, 255, 0.95);
}

.title-line-3 {
    animation-delay: 0.6s;
    font-size: clamp(2rem, 7vw, 4rem);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    animation: expandWidth 1s ease-out 1s forwards;
    width: 0;
    box-shadow: 0 2px 12px rgba(186, 215, 1, 0.4);
}

@keyframes expandWidth {
    to { width: 80%; }
}

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

.hero-premium-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-premium-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(239, 127, 2, 0.35);
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239, 127, 2, 0.6);
}

.cta-primary .btn-icon {
    transition: transform 0.4s ease;
}

.cta-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover .btn-shine {
    left: 100%;
}

.cta-secondary {
    background: var(--gradient-secondary);
    color: var(--black);
    box-shadow: 0 6px 24px rgba(186, 215, 1, 0.35);
    font-weight: 700;
}

.cta-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(186, 215, 1, 0.6);
}

.cta-outline {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(239, 127, 2, 0.2);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: floatUpDown 3s ease-in-out infinite;
}

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

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.scroll-link:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.scroll-link:hover .scroll-mouse {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(239, 127, 2, 0.3);
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    position: relative;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(239, 127, 2, 0.5);
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, 14px);
        opacity: 0.2;
    }
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===================================
   ABOUT US SECTION - MODERN DESIGN
   =================================== */

.section:has(.about-modern-grid) {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.section:has(.about-modern-grid)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(205, 25, 104, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(186, 215, 1, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}


/* Header Section */
.about-modern-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.1) 0%, rgba(186, 215, 1, 0.1) 100%);
    border: 2px solid rgba(205, 25, 104, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-modern-badge img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.about-modern-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-modern-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Main Grid */
.about-modern-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 60px;
}

.about-modern-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Features Grid */
.about-features-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.feature-modern-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.feature-modern-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(205, 25, 104, 0.1);
    transform: translateX(5px);
}

.feature-modern-item .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.1) 0%, rgba(186, 215, 1, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
}

.feature-modern-item .feature-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.5rem 0;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* CTA Card */
.about-cta-modern {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 15px 50px rgba(205, 25, 104, 0.3);
    position: relative;
    overflow: hidden;
}

.about-cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.cta-content i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.9;
}

.cta-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.cta-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    color: var(--accent-gold);
    transform: scale(1.05);
}

.cta-button {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--accent-gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Visual Section */
.about-modern-visual {
    position: relative;
    height: 100%;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.about-main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.about-main-image-modern {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-main-image-wrapper:hover .about-main-image-modern {
    transform: scale(1.05);
}

.image-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

.about-overlay-modern {
    position: absolute;
    top: 30px;
    right: -40px;
    width: 35%;
    max-width: 280px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    border: 6px solid var(--white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: floatOverlayModern 4s ease-in-out infinite;
    background: var(--white);
}

@keyframes floatOverlayModern {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.about-overlay-modern img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.overlay-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(205, 25, 104, 0.4);
    border: 4px solid var(--white);
}

.overlay-badge i {
    color: var(--white);
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.about-stats-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--gradient-primary);
    padding: 2rem 2.25rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(205, 25, 104, 0.4);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 3;
    animation: floatBadgeModern 3s ease-in-out infinite;
    border: 4px solid var(--white);
}

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

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    border-right: 3px solid rgba(255, 255, 255, 0.3);
    padding-right: 1.5rem;
}

.stats-label {
    display: flex;
    flex-direction: column;
}

.stats-label span {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-label p {
    font-size: 1rem;
    color: var(--white);
    margin: 0.25rem 0 0 0;
    line-height: 1.4;
    font-weight: 500;
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    scroll-margin-top: 80px;
    overflow-x: hidden;
    overflow-y: visible;
}

.section-alt {
    background: var(--off-white);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.1) 0%, rgba(186, 215, 1, 0.1) 100%);
    border: 2px solid rgba(205, 25, 104, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-badge img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.section-subtitle-text {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-top: 1rem;
}

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

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px dashed var(--primary-dark);
    border-radius: 50px;
}

.section-subtitle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */

.singhal-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsApp 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

.singhal-whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.singhal-whatsapp-float i {
    text-decoration: none;
    color: white;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FDB931 0%, #F7941D 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253, 185, 49, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #F7941D 0%, #FDB931 100%);
    box-shadow: 0 6px 20px rgba(253, 185, 49, 0.4);
}

/* ===================================
   FOOTER
   =================================== */

.footer-new {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 1;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(239, 127, 2, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(186, 215, 1, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.footer-social h5 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.social-icon i {
    color: #FFFFFF;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    color: #1a5490;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

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

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

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

.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact .contact-list li a {
    word-break: break-word;
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
}

.footer-contact .contact-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: var(--accent-gold);
}

.footer-contact .contact-list li a:hover::after {
    width: 100%;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    margin: 50px 0 30px 0;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 15px;
}

.footer-credits p a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credits p a:hover {
    color: var(--accent-gold);
}

.footer-credits .made-by {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.footer-credits .made-by a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credits .made-by a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-new {
    animation: slideInUp 0.8s ease-out;
}

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

/* ===================================
   MISSION & VISION SECTION
   =================================== */

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(205, 25, 104, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.vision-card::before {
    background: var(--gradient-secondary);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(205, 25, 104, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(205, 25, 104, 0.25);
}

.vision-card .card-icon-wrapper {
    background: var(--gradient-secondary);
    box-shadow: 0 8px 20px rgba(186, 215, 1, 0.25);
}

.card-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.card-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 24px;
    border: 4px solid #cd1968;
    border-bottom-width: 10px;
    position: relative;
}

.feature-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(255, 165, 0, 0.15) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(255, 192, 203, 0.15) 0%, rgba(255, 192, 203, 0.05) 100%);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(144, 238, 144, 0.15) 0%, rgba(144, 238, 144, 0.05) 100%);
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, rgba(186, 85, 211, 0.15) 0%, rgba(186, 85, 211, 0.05) 100%);
}

.feature-card:nth-child(5)::before {
    background: linear-gradient(90deg, rgba(173, 216, 230, 0.15) 0%, rgba(173, 216, 230, 0.05) 100%);
}

.feature-card:nth-child(6)::before {
    background: linear-gradient(90deg, rgba(186, 85, 211, 0.15) 0%, rgba(186, 85, 211, 0.05) 100%);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 0 1.25rem 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:nth-child(1) .feature-icon {
    background: #2ecc71;
}

.feature-card:nth-child(2) .feature-icon {
    background: #9b59b6;
}

.feature-card:nth-child(3) .feature-icon {
    background: #e67e22;
}

.feature-card:nth-child(4) .feature-icon {
    background: #3498db;
}

.feature-card:nth-child(5) .feature-icon {
    background: #f1c40f;
}

.feature-card:nth-child(6) .feature-icon {
    background: #e74c3c;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.75rem 0;
    position: relative;
    z-index: 1;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===================================
   PROGRAMS SECTION
   =================================== */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(205, 25, 104, 0.15);
}

.program-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.program-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

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

.program-card .program-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card .program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem 0;
}

.program-card .program-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.program-features li i {
    color: var(--accent-green);
    font-size: 0.875rem;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section-dark {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(186, 215, 1, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section-dark .section-header-center {
    position: relative;
    z-index: 1;
}

.stats-section-dark .section-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.stats-section-dark .section-badge img {
    /* filter: brightness(0) invert(1); */
}

.stats-section-dark .section-badge span {
    color: var(--white);
}

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

.stats-section-dark .section-subtitle-text {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-card-content {
    position: relative;
    z-index: 1;
}

.stat-card-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.stat-card-number .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    opacity: 0.9;
}

.stat-card-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   DONATE CTA SECTION
   =================================== */

.donate-cta-section {
    position: relative;
    background-image: url('../images/cricket/bg1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden;
}

.donate-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(205, 25, 104, 0.6) 100%);
    z-index: 0;
}

.donate-cta-section .container {
    position: relative;
    z-index: 1;
}

.donate-cta-card {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.donate-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.donate-content {
    position: relative;
    z-index: 1;
}

.donate-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(205, 25, 104, 0.3);
}

.donate-icon i {
    font-size: 2rem;
    color: var(--white);
}

.donate-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.donate-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0 0 2rem 0;
}

.donate-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.donate-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.donate-feature i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.donate-action {
    position: relative;
    z-index: 1;
    text-align: center;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(205, 25, 104, 0.4);
    transition: all 0.4s ease;
    margin-bottom: 1rem;
}

.donate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(205, 25, 104, 0.5);
}

.donate-btn i {
    transition: transform 0.3s ease;
}

.donate-btn:hover i {
    transform: translateX(5px);
}

.donate-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
    font-style: italic;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: rgba(205, 25, 104, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(205, 25, 104, 0.15);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
    font-style: italic;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--white);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.25rem 0;
}

.author-role {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ===================================
   ABOUT US PAGE STYLES
   =================================== */

/* About Hero Section */
.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('../images/gallery/3.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(26, 26, 26, 0.80) 50%, rgba(15, 15, 15, 0.85) 100%),
                radial-gradient(circle at 20% 30%, rgba(205, 25, 104, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(186, 215, 1, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-hero .hero-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.page-hero .hero-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.page-hero .hero-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 30%;
    animation-delay: 2s;
}

.page-hero .hero-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: -50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--secondary-color);
    transform: translateX(-2px);
}

.breadcrumb-link i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 300;
}

.breadcrumb-current {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

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

/* About Foundation Section */
.about-foundation-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 80px 0 0;
    margin-bottom: 4rem;
}

.about-foundation-text {
    padding-right: 2rem;
}

.about-foundation-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-foundation-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-foundation-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* Purpose, Goal, Value Section */
.purpose-goal-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 0;
}

.pgv-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(205, 25, 104, 0.08);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pgv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.pgv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(205, 25, 104, 0.12);
    border-color: rgba(205, 25, 104, 0.2);
}

/* Purpose Card - Primary Pink/Magenta */
.pgv-card-purpose::before {
    background: linear-gradient(135deg, #cd1968 0%, #d63384 100%);
}

.pgv-card-purpose:hover {
    box-shadow: 0 8px 30px rgba(205, 25, 104, 0.12);
    border-color: rgba(205, 25, 104, 0.2);
}

/* Goal Card - Blue */
.pgv-card-goal::before {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
}

.pgv-card-goal:hover {
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.2);
}

/* Values Card - Green/Yellow */
.pgv-card-values::before {
    background: linear-gradient(135deg, #bad701 0%, #85b800 100%);
}

.pgv-card-values:hover {
    box-shadow: 0 8px 30px rgba(186, 215, 1, 0.12);
    border-color: rgba(186, 215, 1, 0.2);
}

.pgv-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pgv-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(205, 25, 104, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Purpose Icon - Pink/Magenta */
.pgv-card-purpose .pgv-icon {
    background: linear-gradient(135deg, #cd1968 0%, #d63384 100%);
    box-shadow: 0 6px 20px rgba(205, 25, 104, 0.25);
}

/* Goal Icon - Blue */
.pgv-card-goal .pgv-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.25);
}

/* Values Icon - Green/Yellow */
.pgv-card-values .pgv-icon {
    background: linear-gradient(135deg, #bad701 0%, #85b800 100%);
    box-shadow: 0 6px 20px rgba(186, 215, 1, 0.25);
}

.pgv-card:hover .pgv-icon {
    transform: scale(1.05) rotate(3deg);
}

.pgv-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.pgv-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}

.pgv-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

/* WHY SPORT Section */
.why-sport-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-sport-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(205, 25, 104, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(186, 215, 1, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-sport-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.why-sport-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-sport-highlight {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(205, 25, 104, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.why-sport-highlight:hover {
    transform: rotate(0deg) scale(1.05);
}

.why-sport-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.why-sport-text-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.why-sport-visual-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-sport-text-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(205, 25, 104, 0.1);
    position: relative;
    overflow: hidden;
}

.why-sport-text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.why-sport-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.why-sport-description:last-child {
    margin-bottom: 0;
}

.why-sport-visual-content {
    position: relative;
    padding: 2rem;
}

.sport-impact-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.impact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(205, 25, 104, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(205, 25, 104, 0.15);
    border-color: var(--primary-color);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(205, 25, 104, 0.3);
    transition: all 0.4s ease;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1) rotate(5deg);
}

.impact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.impact-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.impact-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

.impact-connector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.connector-line {
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.connector-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(205, 25, 104, 0.3);
    flex-shrink: 0;
}

.connector-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

/* Sports Promotion Foundation Section */
.section:has(.sports-promotion-grid) {
    position: relative;
    background-image: url('../images/games/Basketball2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.section:has(.sports-promotion-grid)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(205, 25, 104, 0.6) 100%);
    z-index: 0;
}

.section:has(.sports-promotion-grid) .container {
    position: relative;
    z-index: 1;
}

.section:has(.sports-promotion-grid) .section-header-center {
    position: relative;
    z-index: 1;
}

.section:has(.sports-promotion-grid) .section-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

/* .section:has(.sports-promotion-grid) .section-badge img {
    filter: brightness(0) invert(1);
} */

.section:has(.sports-promotion-grid) .section-badge span {
    color: var(--white);
}

.section:has(.sports-promotion-grid) .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section:has(.sports-promotion-grid) .section-subtitle-text {
    color: rgba(255, 255, 255, 0.9);
}

.sports-promotion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
}

.sp-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.sp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(205, 25, 104, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.sp-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.sp-card:hover::after {
    transform: scaleY(1);
}

.sp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(205, 25, 104, 0.15);
    border-color: rgba(205, 25, 104, 0.2);
}

.sp-card-inner {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.sp-icon-wrapper {
    display: flex;
    align-items: flex-start;
}

.sp-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(205, 25, 104, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.sp-card:hover .sp-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(205, 25, 104, 0.35);
}

.sp-icon i {
    font-size: 2rem;
    color: var(--white);
}

.sp-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.sp-card:hover .sp-title {
    color: var(--primary-color);
}

.sp-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

/* Individual Card Color Variations */
.sp-card-1 .sp-icon {
    background: linear-gradient(135deg, #cd1968 0%, #d63384 100%);
    box-shadow: 0 8px 25px rgba(205, 25, 104, 0.25);
}

.sp-card-1::after {
    background: linear-gradient(135deg, #cd1968 0%, #d63384 100%);
}

.sp-card-2 .sp-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.25);
}

.sp-card-2::after {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
}

.sp-card-3 .sp-icon {
    background: linear-gradient(135deg, #bad701 0%, #85b800 100%);
    box-shadow: 0 8px 25px rgba(186, 215, 1, 0.25);
}

.sp-card-3::after {
    background: linear-gradient(135deg, #bad701 0%, #85b800 100%);
}

.sp-card-4 .sp-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.sp-card-4::after {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

/* ===================================
   FOUNDER STORY SECTION
   =================================== */

.founder-story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.founder-story-content {
    max-width: 1000px;
    margin: 4rem auto 0;
}

.founder-header-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(205, 25, 104, 0.1);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.founder-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cd1968 0%, #bad701 100%);
}

.founder-name-section {
    position: relative;
    z-index: 1;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #cd1968 0%, #bad701 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-titles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.founder-title-item {
    font-weight: 600;
    color: var(--primary-color);
}

.founder-title-separator {
    color: var(--medium-gray);
    font-weight: 400;
}

.founder-story-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.founder-story-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(205, 25, 104, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.founder-story-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #cd1968 0%, #bad701 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.founder-story-block:hover::before {
    transform: scaleY(1);
}

.founder-story-block:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(205, 25, 104, 0.12);
    border-color: rgba(205, 25, 104, 0.2);
}

.story-block-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(205, 25, 104, 0.1);
}

.story-block-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.1) 0%, rgba(186, 215, 1, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.founder-story-block:hover .story-block-icon {
    background: linear-gradient(135deg, #cd1968 0%, #bad701 100%);
    transform: scale(1.1) rotate(5deg);
}

.story-block-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.founder-story-block:hover .story-block-icon i {
    color: var(--white);
}

.story-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.story-block-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark-gray);
}

.story-block-content p {
    margin-bottom: 1.25rem;
}

.story-block-content p:last-child {
    margin-bottom: 0;
}

.story-block-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.founder-quote {
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.05) 0%, rgba(186, 215, 1, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    position: relative;
}

.founder-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.founder-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark-gray);
    margin: 0;
    padding-left: 2.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.founder-insights-list,
.founder-goals-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.founder-insights-list li,
.founder-goals-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.03) 0%, rgba(186, 215, 1, 0.03) 100%);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.founder-insights-list li:hover,
.founder-goals-list li:hover {
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.08) 0%, rgba(186, 215, 1, 0.08) 100%);
    transform: translateX(5px);
}

.founder-insights-list li i,
.founder-goals-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.founder-insights-list li,
.founder-goals-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.ecosystem-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.ecosystem-pillar {
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.05) 0%, rgba(186, 215, 1, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(205, 25, 104, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.ecosystem-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(205, 25, 104, 0.15);
    border-color: rgba(205, 25, 104, 0.3);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #cd1968 0%, #bad701 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(205, 25, 104, 0.25);
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--white);
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem 0;
}

.pillar-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
}

.ecosystem-conclusion {
    text-align: center;
    font-size: 1.15rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(205, 25, 104, 0.1);
}

.founder-message-block {
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.05) 0%, rgba(186, 215, 1, 0.05) 100%);
    border: 2px solid rgba(205, 25, 104, 0.2);
}

.founder-message-quote {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.founder-message-quote i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.founder-message-quote p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    font-weight: 500;
}

.founder-message-conclusion {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(205, 25, 104, 0.1);
    text-align: center;
}

/* Responsive Founder Story */
@media (max-width: 1024px) {
    .founder-story-section {
        padding: 80px 0;
    }
    
    .founder-header-card {
        padding: 2.5rem;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-titles {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .founder-title-separator {
        display: none;
    }
    
    .ecosystem-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .founder-story-block {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .founder-story-section {
        padding: 60px 0;
    }
    
    .founder-header-card {
        padding: 2rem 1.5rem;
    }
    
    .founder-name {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .founder-titles {
        font-size: 0.9rem;
    }
    
    .founder-story-block {
        padding: 1.75rem 1.5rem;
    }
    
    .story-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .story-block-icon {
        width: 50px;
        height: 50px;
    }
    
    .story-block-icon i {
        font-size: 1.25rem;
    }
    
    .story-block-title {
        font-size: 1.5rem;
    }
    
    .story-block-content {
        font-size: 1rem;
    }
    
    .founder-quote {
        padding: 1.25rem 1.5rem;
    }
    
    .founder-quote i {
        font-size: 1.5rem;
        top: 0.75rem;
        left: 1.25rem;
    }
    
    .founder-quote p {
        font-size: 1.05rem;
        padding-left: 2rem;
    }
    
    .ecosystem-pillar {
        padding: 1.5rem;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .pillar-icon i {
        font-size: 1.75rem;
    }
    
    .pillar-title {
        font-size: 1.15rem;
    }
    
    .pillar-description {
        font-size: 0.9rem;
    }
    
    .founder-message-quote {
        padding: 2rem 1.5rem;
    }
    
    .founder-message-quote i {
        font-size: 2.5rem;
        top: 1rem;
        left: 1.5rem;
    }
    
    .founder-message-quote p {
        font-size: 1.1rem;
        padding-left: 2.5rem;
    }
    
    .founder-message-conclusion {
        font-size: 1.05rem;
    }
}

/* CTA Section - Split Background Style */
.cta-section {
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.cta-left {
    background: linear-gradient(135deg, #cd1968 0%, #d63384 100%);
    position: relative;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.cta-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-left:hover::before {
    opacity: 1;
}

.cta-left:hover {
    transform: scale(1.02);
}

.cta-right {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    position: relative;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.cta-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-right:hover::before {
    opacity: 1;
}

.cta-right:hover {
    transform: scale(1.02);
}

.cta-content-inner {
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.cta-left:hover .cta-icon-wrapper,
.cta-right:hover .cta-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2.5rem 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 25, 104, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-left .cta-button {
    color: #cd1968;
}

.cta-right .cta-button {
    color: #0d6efd;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

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

@media (max-width: 1024px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-modern-visual {
        order: 1;
    }
    
    .about-modern-content {
        order: 2;
    }
    
    .about-image-container {
        min-height: 500px;
    }
    
    .about-overlay-modern {
        right: -20px;
        width: 35%;
    }
    
    .about-stats-badge {
        left: -20px;
        padding: 1.75rem 2rem;
    }
    
    .about-cta-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .feature-card {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .stat-card-icon i {
        font-size: 1.75rem;
    }
    
    .stat-card-number .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
    
    .stat-card-label {
        font-size: 1rem;
    }
    
    .donate-cta-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .donate-cta-card {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-foundation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 60px 0 0;
        margin-bottom: 3rem;
    }
    
    .about-foundation-text {
        padding-right: 0;
    }
    
    .purpose-goal-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0 60px;
    }
    
    .pgv-card {
        padding: 2rem 1.5rem;
    }
    
    .why-sport-text-content {
        margin-bottom: 3rem;
    }
    
    .sport-impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-connector {
        flex-direction: column;
        width: 100%;
    }
    
    .connector-line {
        width: 3px;
        height: 40px;
    }
    
    .impact-card {
        padding: 2rem 1.5rem;
    }
    
    .section:has(.sports-promotion-grid) {
        background-attachment: scroll;
    }
    
    .sports-promotion-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sp-card-inner {
        padding: 2.5rem 2rem;
        gap: 1.5rem;
    }
    
    .sp-icon {
        width: 70px;
        height: 70px;
    }
    
    .sp-icon i {
        font-size: 1.75rem;
    }
    
    .sp-title {
        font-size: 1.3rem;
    }
    
    .sp-description {
        font-size: 0.95rem;
    }
    
    
    .cta-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .cta-left,
    .cta-right {
        padding: 60px 40px;
    }
    
    .cta-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }
    
    .cta-icon-wrapper i {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1.15rem 2.25rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
    }
    
    .hero-slide-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-slide-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-slide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-slider-nav {
        display: none;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        display: none;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
    
    .hero-premium {
        padding: 180px 0 100px;
        min-height: auto;
    }
    
    .hero-premium-content {
        padding: 0 0.5rem;
    }
    
    .hero-premium-badge {
        font-size: 0.8rem;
        padding: 0.7rem 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero-premium-title {
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }
    
    .hero-premium-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
        line-height: 1.8;
    }
    
    .hero-premium-cta {
        flex-direction: column;
        width: 100%;
        margin-bottom: 3rem;
        gap: 0.85rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1.05rem 1.75rem;
        font-size: 1rem;
    }
    
    .floating-shape {
        display: none;
    }
    
    .hero-scroll-down {
        bottom: 30px;
    }
    
    .about-modern-header {
        margin-bottom: 40px;
    }
    
    .about-modern-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .about-modern-subtitle {
        font-size: 1rem;
    }
    
    .about-modern-grid {
        gap: 2.5rem;
    }
    
    .feature-modern-item {
        padding: 1.25rem;
    }
    
    .about-image-container {
        min-height: 400px;
    }
    
    .about-overlay-modern {
        top: 20px;
        right: -15px;
        width: 35%;
        max-width: 220px;
        border-width: 4px;
    }
    
    .overlay-badge {
        width: 40px;
        height: 40px;
        top: -10px;
        right: -10px;
    }
    
    .overlay-badge i {
        font-size: 1rem;
    }
    
    .about-stats-badge {
        bottom: 20px;
        left: -15px;
        padding: 1rem 1.25rem;
        gap: 1.25rem;
        border-width: 3px;
    }
    
    .stats-number {
        font-size: 2rem;
        padding-right: 1rem;
    }
    
    .stats-label span {
        font-size: 0.95rem;
    }
    
    .stats-label p {
        font-size: 0.9rem;
    }
    
    .about-cta-modern {
        padding: 1.75rem;
        flex-direction: column;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content i {
        font-size: 1.75rem;
    }
    
    .cta-phone {
        font-size: 1.25rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .feature-card {
        padding: 1.5rem 1.25rem;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 2.5rem;
    }
    
    .stat-card {
        padding: 1.75rem 1.25rem;
    }
    
    .stat-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stat-card-icon i {
        font-size: 1.5rem;
    }
    
    .stat-card-number .stat-number {
        font-size: 2rem;
    }
    
    .stat-suffix {
        font-size: 1.25rem;
    }
    
    .stat-card-label {
        font-size: 0.9rem;
    }
    
    .donate-cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .donate-cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .donate-title {
        font-size: 1.75rem;
    }
    
    .donate-btn {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        min-height: 400px;
        padding: 160px 0px 90px;
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: 3rem;
        margin-bottom: 1.75rem;
    }
    
    .breadcrumb-nav {
        padding: 0.875rem 1.75rem;
        gap: 0.75rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.9rem;
    }
    
    .about-foundation-content {
        padding: 40px 0 0;
        margin-bottom: 2.5rem;
    }
    
    .purpose-goal-values-grid {
        padding: 0 0 40px;
        gap: 1.25rem;
    }
    
    .pgv-card {
        padding: 1.75rem 1.5rem;
    }
    
    .pgv-header {
        gap: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .pgv-icon {
        width: 55px;
        height: 55px;
    }
    
    .pgv-icon i {
        font-size: 1.35rem;
    }
    
    .pgv-title {
        font-size: 1.15rem;
    }
    
    .pgv-description {
        font-size: 0.9rem;
    }
    
    .why-sport-section {
        padding: 60px 0;
    }
    
    .why-sport-header {
        margin-bottom: 3rem;
    }
    
    .why-sport-intro {
        font-size: 1.1rem;
    }
    
    .why-sport-main-content {
        gap: 2.5rem;
    }
    
    .why-sport-text-card {
        padding: 2rem;
    }
    
    .sport-impact-grid {
        gap: 1.5rem;
    }
    
    .impact-card {
        padding: 2rem 1.5rem;
    }
    
    .impact-icon {
        width: 70px;
        height: 70px;
    }
    
    .impact-icon i {
        font-size: 1.75rem;
    }
    
    .impact-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .impact-description {
        font-size: 0.9rem;
    }
    
    .connector-icon {
        width: 45px;
        height: 45px;
    }
    
    .connector-icon i {
        font-size: 1.1rem;
    }
    
    .connector-line {
        height: 35px;
    }
    
    .sports-promotion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .sp-card-inner {
        padding: 1rem 1.5rem;
        gap: 1.25rem;
    }
    
    .sp-icon {
        width: 65px;
        height: 65px;
    }
    
    .sp-icon i {
        font-size: 1.5rem;
    }
    
    .sp-title {
        font-size: 1.2rem;
    }
    
    .sp-description {
        font-size: 0.9rem;
    }
    
    .cta-left,
    .cta-right {
        padding: 50px 30px;
    }
    
    .cta-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .cta-icon-wrapper i {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.05rem;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo1 {
        height: 45px !important;
    }
    
    .logo2 {
        height: 35px !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 90px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 0;
        margin: 0 1.25rem;
        justify-content: flex-start;
    }
    
    .nav-link.active {
        color: var(--primary-color);
        background: transparent;
        font-weight: 600;
    }
    
    .nav-link.active::before {
        display: block;
        width: 25%;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 2px;
        bottom: 0;
        left: 0;
        transform: none;
    }
    
    .nav-donate-btn {
        width: 100%;
        margin-left: 0;
        justify-content: center;
        padding: 1rem 1.5rem !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .menu-toggle.active span {
        background: var(--white);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .footer-main {
        border-radius: 40px 40px 0 0;
        padding: 60px 0 0;
    }
    
    .footer-logo-img {
        height: 100px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-premium {
        padding: 180px 0 100px;
    }
    
    .hero-premium-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.1rem;
        gap: 0.5rem;
    }
    
    .hero-premium-subtitle {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer-main {
        border-radius: 30px 30px 0 0;
        padding: 50px 0 0;
    }
    
    .footer-company {
        padding-bottom: 30px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-separator {
        margin: 40px 0 25px 0;
    }
    
    .footer-credits {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-card-number .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
    
    .donate-cta-card {
        padding: 2rem 1.5rem;
    }
    
    .donate-title {
        font-size: 1.5rem;
    }
    
    .page-hero {
        min-height: 350px;
        padding: 140px 0px 80px;
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb-nav {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.85rem;
    }
    
    .breadcrumb-sep {
        font-size: 0.85rem;
    }
    
    .purpose-goal-values-grid {
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .pgv-card {
        padding: 1.5rem 1.25rem;
    }
    
    .pgv-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
        flex-direction: column;
    }
    
    .pgv-icon {
        width: 50px;
        height: 50px;
    }
    
    .pgv-icon i {
        font-size: 1.25rem;
    }
    
    .pgv-title {
        font-size: 1.1rem;
    }
    
    .pgv-description {
        font-size: 0.85rem;
    }
    
    .why-sport-section {
        padding: 40px 0;
    }
    
    .why-sport-header {
        margin-bottom: 2rem;
    }
    
    .why-sport-title {
        font-size: 2rem;
    }
    
    .why-sport-highlight {
        padding: 0.5rem 1.5rem;
        font-size: 1.5rem;
    }
    
    .why-sport-intro {
        font-size: 1rem;
    }
    
    .why-sport-main-content {
        gap: 2rem;
    }
    
    .why-sport-text-card {
        padding: 1.5rem;
    }
    
    .why-sport-description {
        font-size: 1rem;
    }
    
    .sport-impact-grid {
        gap: 1.25rem;
    }
    
    .impact-card {
        padding: 1.75rem 1.25rem;
    }
    
    .impact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .impact-icon i {
        font-size: 1.5rem;
    }
    
    .impact-title {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
    }
    
    .impact-description {
        font-size: 0.85rem;
    }
    
    .connector-icon {
        width: 40px;
        height: 40px;
    }
    
    .connector-icon i {
        font-size: 1rem;
    }
    
    .connector-line {
        height: 30px;
    }
    
    .sports-promotion-grid {
        margin-top: 2rem;
    }
    
    .sp-card {
        padding: 1.75rem 1.25rem;
    }
    
    .sp-icon {
        width: 60px;
        height: 60px;
    }
    
    .sp-icon i {
        font-size: 1.5rem;
    }
    
    .cta-left,
    .cta-right {
        padding: 40px 25px;
    }
    
    .cta-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .cta-icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

/* ===================================
   ACTIVITIES PAGE STYLES
   =================================== */

/* Training Programs Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.activity-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(205, 25, 104, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(205, 25, 104, 0.15);
    border-color: var(--primary-color);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(205, 25, 104, 0.2);
    transition: all 0.4s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(205, 25, 104, 0.3);
}

.activity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.activity-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.activity-card:hover .activity-title {
    color: var(--primary-color);
}

.activity-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.activity-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.activity-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.activity-features li i {
    color: var(--primary-color);
    font-size: 0.85rem;
}


/* Gallery Slider Section */
.gallery-slider-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease, visibility 1s ease;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.gallery-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.gallery-slider-prev,
.gallery-slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-slider-prev:hover,
.gallery-slider-next:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.gallery-slider-prev i,
.gallery-slider-next i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.gallery-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.gallery-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.gallery-slider-dot:hover {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles for Gallery Slider */
@media (max-width: 768px) {
    .gallery-slider-section {
        height: 400px;
    }
    
    .gallery-slider-nav {
        padding: 0 1rem;
    }
    
    .gallery-slider-prev,
    .gallery-slider-next {
        width: 40px;
        height: 40px;
    }
    
    .gallery-slider-prev i,
    .gallery-slider-next i {
        font-size: 1rem;
    }
    
    .gallery-slider-dots {
        bottom: 1.5rem;
    }
    
    .gallery-slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-slider-section {
        height: 300px;
    }
    
    .gallery-slider-prev,
    .gallery-slider-next {
        display: none;
    }
}

/* Responsive Styles for Activities Page */
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activity-card {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Contact Information Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(205, 25, 104, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(205, 25, 104, 0.15);
    border-color: rgba(205, 25, 104, 0.3);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.1) 0%, rgba(205, 25, 104, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: linear-gradient(135deg, #cd1968 0%, #d63384 100%);
    transform: scale(1.1);
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon i {
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-info-card p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.address-link {
    display: inline-block;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(205, 25, 104, 0.1);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Form Styles */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(205, 25, 104, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(205, 25, 104, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 0;
}

.form-group.error .error-message {
    display: block;
}

.error-message:empty {
    display: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Form Actions */
.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #cd1968 0%, #d63384 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(205, 25, 104, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 25, 104, 0.4);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Messages */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    display: none;
    align-items: flex-start;
    gap: 1rem;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-message h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message p {
    margin: 0;
    font-size: 0.95rem;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.success-message i {
    color: #28a745;
}

.error-message-box {
    background: #f8d7da;
    border: 2px solid #e74c3c;
    color: #721c24;
}

.error-message-box i {
    color: #e74c3c;
}

/* Map Container */

/* Responsive - Contact Page */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .contact-card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-info-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.75rem;
    }
    
    .contact-form-header p {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-submit {
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===================================
   DONATE PAGE STYLES
   =================================== */

/* Donation Hero Section */
.donate-hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('../images/cricket/bg1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
}

.donate-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(205, 25, 104, 0.7) 100%);
    z-index: 0;
}

.donate-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.donate-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.donate-hero-badge img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

.donate-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.donate-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


/* Donation Button Section */
.donate-button-section {
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.05) 0%, rgba(214, 51, 132, 0.05) 100%);
}

.donate-button-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.donate-button-content {
    padding: 3rem 2rem;
}

.donate-button-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.donate-button-description {
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.donate-button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.donate-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #cd1968 0%, #d63384 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(205, 25, 104, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.donate-button-primary:hover::before {
    width: 400px;
    height: 400px;
}

.donate-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 25, 104, 0.4);
}

.donate-button-icon {
    font-size: 1.25rem;
    z-index: 1;
    position: relative;
}

.donate-button-text {
    z-index: 1;
    position: relative;
    font-weight: 700;
}

.donate-button-arrow {
    font-size: 1.125rem;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.donate-button-primary:hover .donate-button-arrow {
    transform: translateX(3px);
}

.donate-button-note {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.donate-button-note i {
    color: #28a745;
    font-size: 1rem;
}

/* How Donations Help Section */
.donations-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.donations-help-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(205, 25, 104, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.donations-help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cd1968 0%, #d63384 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.donations-help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(205, 25, 104, 0.2);
    border-color: rgba(205, 25, 104, 0.3);
}

.help-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.1) 0%, rgba(205, 25, 104, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.donations-help-card:hover .help-card-icon {
    background: linear-gradient(135deg, #cd1968 0%, #d63384 100%);
    transform: scale(1.1) rotate(5deg);
}

.help-card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.donations-help-card:hover .help-card-icon i {
    color: var(--white);
}

.donations-help-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.donations-help-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Responsive - Donate Page */
@media (max-width: 1024px) {
    .donations-help-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .donate-hero-section {
        min-height: 400px;
        padding: 160px 0 90px;
        background-attachment: scroll;
    }
    
    .donate-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .donate-hero-description {
        font-size: 1.1rem;
    }
    
    .donations-help-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donations-help-card {
        padding: 2rem 1.5rem;
    }
    
    .help-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .help-card-icon i {
        font-size: 1.75rem;
    }
    
    .donations-help-card h3 {
        font-size: 1.35rem;
    }
    
    .donate-button-content {
        padding: 2.5rem 1.5rem;
    }
    
    .donate-button-title {
        font-size: 2rem;
    }
    
    .donate-button-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .donate-button-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .donate-button-primary {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .donate-button-note {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .donate-hero-section {
        min-height: 350px;
        padding: 140px 0 80px;
    }
    
    .donate-hero-title {
        font-size: 2rem;
    }
    
    .donate-hero-description {
        font-size: 1rem;
    }
    
    .donate-button-title {
        font-size: 1.75rem;
    }
    
    .donate-button-row {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .donate-button-primary {
        padding: 1.125rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .donate-button-note {
        text-align: center;
        font-size: 0.9rem;
    }
}

/* ===================================
   GALLERY PAGE STYLES
   =================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4 / 3;
    background: var(--light-gray);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(205, 25, 104, 0.3);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.8) 0%, rgba(214, 51, 132, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Responsive - Gallery Page */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-overlay i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
}

/* ===================================
   QUOTE SECTION
   =================================== */

.quote-section {
    padding: 4rem 0;
    /* background: #e3f2fd; */
    position: relative;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}

.quote-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 400;
    color: #1565c0;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    quotes: """ """;
}

.quote-text::before {
    content: open-quote;
    font-size: 1.2em;
    color: #1565c0;
}

.quote-text::after {
    content: close-quote;
    font-size: 1.2em;
    color: #1565c0;
}


@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-content {
        padding: 2rem 1.5rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
}

/* ===================================
   PRODUCT DETAIL SECTIONS (ACTIVITIES)
   =================================== */

.product-detail-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.product-detail-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-detail-alt {
    background: var(--white);
}

/* Centered Header Section */
.product-detail-header {
    max-width: 1100px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
}

.product-detail-header .product-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(205, 25, 104, 0.1);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: 'Poppins', sans-serif;
}

.product-detail-header .product-detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.product-detail-header .product-detail-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.product-detail-header .product-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.product-detail-header .product-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.product-detail-image {
    position: relative;
}

.product-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: transform 0.4s ease;
}

.product-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(205, 25, 104, 0.2);
}

.product-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.product-image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.95) 0%, rgba(186, 215, 1, 0.95) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(205, 25, 104, 0.3);
    backdrop-filter: blur(10px);
}

.product-image-badge i {
    font-size: 1rem;
}

.product-detail-content {
    position: relative;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.spec-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 2px solid rgba(205, 25, 104, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(205, 25, 104, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(205, 25, 104, 0.15);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d63384 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(205, 25, 104, 0.3);
}

.spec-content {
    text-align: left;
}

.spec-content h4 {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.spec-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.product-benefits {
    margin-bottom: 2.5rem;
}

.product-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 0.2rem 0;
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.product-uses {
    margin-bottom: 2.5rem;
}

.product-uses h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.uses-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.use-tag {
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.1) 0%, rgba(186, 215, 1, 0.1) 100%);
    color: var(--dark-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(205, 25, 104, 0.2);
    transition: all 0.3s ease;
}

.use-tag:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d63384 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(205, 25, 104, 0.3);
}

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d63384 100%);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(205, 25, 104, 0.3);
    position: relative;
    overflow: hidden;
}

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

.product-cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.product-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(205, 25, 104, 0.4);
}

.product-cta-btn i {
    transition: transform 0.3s ease;
}

.product-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-detail-wrapper {
        gap: 3rem;
    }
    
    .product-detail-header .product-detail-title {
        font-size: 2.5rem;
    }
    
    .product-image-container img {
        height: 450px;
    }
    
    .product-detail-header .product-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .product-detail-section {
        padding: 4rem 0;
    }
    
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-detail-header {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .product-detail-header .product-number {
        font-size: 6rem;
        top: -1.5rem;
    }
    
    .product-detail-header .product-detail-title {
        font-size: 2.2rem;
    }
    
    .product-image-container img {
        height: 400px;
    }
    
    .product-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-header .product-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 3rem 0;
    }
    
    .product-detail-header .product-number {
        font-size: 5rem;
    }
    
    .product-detail-header .product-detail-title {
        font-size: 1.8rem;
    }
    
    .product-detail-header .product-detail-subtitle {
        font-size: 1.1rem;
    }
    
    .product-detail-header .product-detail-description {
        font-size: 1rem;
    }
    
    .product-image-container img {
        height: 300px;
    }
    
    .product-detail-header .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .spec-item {
        padding: 1rem;
    }
    
    .product-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===================================
   IMPACTFUL QUOTE SECTION (DONATE PAGE)
   =================================== */

.impactful-quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    overflow: visible;
    height: auto;
    position: relative;
}

.quote-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-icon-wrapper i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.impactful-quote-text {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    color: var(--dark-gray);
    line-height: 1.7;
    font-style: italic;
    position: relative;
}

.impactful-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d63384 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(205, 25, 104, 0.3);
    position: relative;
    overflow: hidden;
}

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

.impactful-cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.impactful-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(205, 25, 104, 0.4);
}

.impactful-cta-btn i {
    transition: transform 0.3s ease;
}

.impactful-cta-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .impactful-quote-content {
        padding: 2rem 1.5rem;
    }
    
    .impactful-quote-text {
        font-size: 1.3rem;
    }
    
    .impactful-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* ===================================
   BANK DETAILS SECTION
   =================================== */

.bank-details-section {
    padding: 80px 0;
}

.bank-details-wrapper {
    max-width: 1100px;
    margin: 3rem auto 0;
}

.bank-details-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(205, 25, 104, 0.1);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.bank-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cd1968 0%, #bad701 100%);
}

.bank-qr-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.qr-code-wrapper {
    text-align: center;
}

.qr-code-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(205, 25, 104, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.qr-code-image:hover {
    transform: scale(1.05);
}

.qr-code-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bank-details-content {
    position: relative;
}

.bank-details-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(205, 25, 104, 0.1);
}

.bank-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.1) 0%, rgba(186, 215, 1, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.bank-details-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.bank-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bank-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.03) 0%, rgba(186, 215, 1, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(205, 25, 104, 0.1);
    transition: all 0.3s ease;
}

.bank-detail-item:hover {
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.08) 0%, rgba(186, 215, 1, 0.08) 100%);
    border-color: rgba(205, 25, 104, 0.2);
    transform: translateX(5px);
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.detail-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    word-break: break-word;
}

.account-number,
.ifsc-code,
.vpa-code {
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.bank-details-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(205, 25, 104, 0.05) 0%, rgba(186, 215, 1, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.bank-details-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.bank-details-note .note-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-details-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.note-action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.note-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.note-btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.note-btn-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.note-btn-email {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.note-btn-email:hover {
    background: #b81a5a;
    border-color: #b81a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(205, 25, 104, 0.3);
}

/* Responsive Bank Details */
@media (max-width: 1024px) {
    .bank-details-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }
    
    .bank-qr-section {
        order: 1;
    }
    
    .bank-details-content {
        order: 2;
    }
    
    .qr-code-image {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .bank-details-section {
        padding: 60px 0;
    }
    
    .bank-details-card {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .bank-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .bank-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .bank-details-title {
        font-size: 1.5rem;
    }
    
    .bank-details-list {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .bank-detail-item {
        padding: 1rem;
    }
    
    .detail-label {
        font-size: 0.8rem;
    }
    
    .detail-value {
        font-size: 1rem;
    }
    
    .account-number,
    .ifsc-code,
    .vpa-code {
        font-size: 1.1rem;
    }
    
    .qr-code-image {
        max-width: 220px;
    }
    
    .bank-details-note {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .bank-details-note i {
        margin-top: 0;
    }
    
    .note-action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .note-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }
}

/* ===================================
   BIRTHDAY CELEBRATION SECTION
   =================================== */

.birthday-celebration-section {
    padding: 5rem 0;
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.birthday-celebration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 0;
}

.birthday-celebration-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.birthday-celebration-section .container {
    position: relative;
    z-index: 1;
}

.birthday-text-content {
    text-align: center;
    padding: 3rem 2.5rem;
}

.birthday-main-text {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    margin: 0 0 2.5rem 0;
    font-family: var(--font-primary);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.birthday-main-text .highlight-orange {
    color: #ff6b35;
    font-weight: 700;
}

.birthday-donate-btn {
    display: block;
    width: 100%;
    max-width: 600px;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #ff6b35 0%, #e85a2b 100%);
    color: var(--white);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

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

.birthday-donate-btn:hover::before {
    width: 400px;
    height: 400px;
}

.birthday-donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.birthday-support-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-primary);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .birthday-celebration-section {
        padding: 3rem 0;
    }
    
    .birthday-text-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .birthday-main-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .birthday-donate-btn {
        margin: 0 auto 2rem;
        padding: 1.25rem 2rem;
    }
    
    .birthday-support-text {
        text-align: center;
    }
}

