/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5ebdad;
    --secondary-color: #FF7B00;
    
    /* Use theme-aware variables */
    --dark-bg: var(--bg-primary);
    --card-bg: var(--bg-card);
    --text-primary: var(--text-primary);
    --text-secondary: var(--text-secondary);
    
    --accent-gradient: linear-gradient(135deg, #FF7B00 0%, #FF9933 100%);
    --accent-gradient-2: linear-gradient(135deg, #5ebdad 0%, #4aa99a 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #5ebdad;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(94, 189, 173, 0.3);
    border-bottom: 1px solid #5ebdad;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    padding-left: 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 55px;
    width: auto;
    background: var(--bg-primary);
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(94, 189, 173, 0.3);
}

.logo span {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF7B00;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FF7B00;
}

.donate-btn {
    background: #FF7B00 !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
}

.donate-btn:hover {
    background: #E56A00 !important;
    transform: translateY(-2px);
}

.donate-btn::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 56.25vw;
    min-height: 350px;
    max-height: 620px;
    background-image: url('../Data/slide/1.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0f172a;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

/* Alternate hero background */
.hero.alt-bg {
    background-image: url('../Data/streetschool/4.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(94, 189, 173, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 4.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.95),
                 0 0 30px rgba(0, 0, 0, 0.85),
                 1px 1px 5px rgba(0, 0, 0, 1);
}

.hero-title-bangla {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.95),
                 0 0 30px rgba(0, 0, 0, 0.85),
                 1px 1px 5px rgba(0, 0, 0, 1);
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-description-bangla {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FF7B00;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 123, 0, 0.5);
    background: #E56A00;
}

.btn-secondary {
    background: transparent;
    color: #FF7B00;
    border: 2px solid #FF7B00;
}

.btn-secondary:hover {
    background: #FF7B00;
    color: white;
    transform: translateY(-3px);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF7B00, transparent);
    border-radius: 2px;
}

.section-title-bangla {
    font-size: 2.2rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.bangla-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.impact-text-bangla {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.bangla-text {
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.bangla-cta {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

/* Sections */

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 189, 173, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.impact-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(94, 189, 173, 0.1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5ebdad, #FF7B00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(94, 189, 173, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(94, 189, 173, 0.1) 100%);
}

.impact-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.impact-card:hover .impact-icon {
    transform: scale(1.2) rotateY(360deg);
    color: #FF7B00;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: var(--accent-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-number {
    transform: scale(1.1);
}

.impact-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.impact-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(94, 189, 173, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.mission-card,
.vision-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(94, 189, 173, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 189, 173, 0.1), transparent);
    transition: left 0.6s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    left: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(94, 189, 173, 0.3);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
    color: #FF7B00;
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #B8F0AE 0%, #5ebdad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card p,
.vision-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

.mission-list,
.vision-list {
    list-style: none;
    margin-top: 1.5rem;
}

.mission-list li,
.vision-list li {
    padding: 1rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding-left: 0.5rem;
}

.mission-list li:hover,
.vision-list li:hover {
    background: rgba(94, 189, 173, 0.05);
    padding-left: 1rem;
    transform: translateX(5px);
}

.mission-list li i,
.vision-list li i {
    color: var(--primary-color);
    margin-top: 0.3rem;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mission-list li:hover i,
.vision-list li:hover i {
    color: #FF7B00;
    transform: scale(1.2);
}

.mission-list strong,
.vision-list strong {
    color: var(--text-primary);
}

/* Coverage Section */
.coverage-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.coverage-section .section-title {
    color: #FF7B00;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.coverage-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.map-container {
    position: relative;
    background: linear-gradient(135deg, rgba(94, 189, 173, 0.1) 0%, rgba(255, 123, 0, 0.05) 100%);
    padding: 2rem;
    border-radius: 30px;
    border: 2px solid rgba(94, 189, 173, 0.2);
    box-shadow: 0 20px 60px rgba(94, 189, 173, 0.15);
    transition: all 0.5s ease;
}

.map-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(94, 189, 173, 0.25);
    border-color: var(--primary-color);
}

.bangladesh-map-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.bangladesh-map-iframe {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    display: block;
    background: var(--bg-primary);
}

.map-legend {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--card-bg);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-family: 'Hind Siliguri', sans-serif;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-color {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.legend-color.coverage-active {
    background: #FF7B00;
}

.legend-color.coverage-inactive {
    background: #679255;
}

.legend-text {
    font-size: 0.95rem;
    color: #0a0a0a;
    font-weight: 600;
}

.map-overlay-title {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5ebdad 0%, #4aa99a 100%);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(94, 189, 173, 0.4);
    font-family: 'Hind Siliguri', sans-serif;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coverage-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Hind Siliguri', sans-serif;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5ebdad 0%, #FF7B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.district-item {
    background: var(--card-bg);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 189, 173, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1rem;
}

.district-item:hover {
    background: rgba(94, 189, 173, 0.1);
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(94, 189, 173, 0.2);
}

.district-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.coverage-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.summary-card {
    background: linear-gradient(135deg, rgba(94, 189, 173, 0.15) 0%, rgba(255, 123, 0, 0.08) 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.summary-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(94, 189, 173, 0.25);
}

.summary-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #5ebdad 0%, #FF7B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.summary-label {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Programs Section */
.programs-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(94, 189, 173, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.program-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5ebdad, #FF7B00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-card:hover::after {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(94, 189, 173, 0.3);
    border-color: var(--primary-color);
}

.program-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.program-card ul {
    list-style: none;
}

.program-card li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.program-card strong {
    color: var(--primary-color);
}

.program-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.program-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.program-images img:hover {
    transform: scale(1.05);
}

.program-images-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.program-images-horizontal img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.program-images-horizontal img:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--accent-gradient);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Notices Section */
.notices-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.notice-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(94, 189, 173, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(94, 189, 173, 0.2);
    border-color: var(--primary-color);
}

.notice-card.important {
    border-color: #FF7B00;
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.05) 0%, var(--card-bg) 100%);
}

.important-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF7B00;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.notice-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.notice-category.general {
    background: rgba(94, 189, 173, 0.2);
    color: #5ebdad;
}

.notice-category.urgent {
    background: rgba(255, 123, 0, 0.2);
    color: #FF7B00;
}

.notice-category.scholarship {
    background: rgba(94, 189, 173, 0.2);
    color: #5ebdad;
}

.notice-category.medical {
    background: rgba(255, 123, 0, 0.2);
    color: #FF7B00;
}

.notice-category.event {
    background: rgba(94, 189, 173, 0.2);
    color: #5ebdad;
}

.notice-category.deadline {
    background: rgba(255, 123, 0, 0.2);
    color: #FF7B00;
}

.notice-category.other {
    background: rgba(94, 189, 173, 0.2);
    color: #5ebdad;
}

.notice-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.notice-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notice-description-box {
    background: rgba(94, 189, 173, 0.05);
    border-left: 3px solid var(--primary-color);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.notice-description-box h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notice-description-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.notice-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.notice-pdf-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.notice-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.notice-pdf-btn.view-btn {
    background: rgba(255, 123, 0, 0.1);
    color: #FF7B00;
    border: 1px solid rgba(255, 123, 0, 0.2);
}

.notice-pdf-btn.view-btn:hover {
    background: rgba(255, 123, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

.notice-pdf-btn.download-btn {
    background: rgba(94, 189, 173, 0.1);
    color: #5ebdad;
    border: 1px solid rgba(94, 189, 173, 0.2);
}

.notice-pdf-btn.download-btn:hover {
    background: rgba(94, 189, 173, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 189, 173, 0.3);
}

.notice-pdf-btn i {
    font-size: 1.1rem;
}

/* Old single button style - keep for backward compatibility */
.notice-pdf-btn:not(.view-btn):not(.download-btn) {
    background: rgba(255, 123, 0, 0.1);
    color: #FF7B00;
    border: 1px solid rgba(255, 123, 0, 0.2);
    text-decoration: none;
}

.notice-pdf-btn:not(.view-btn):not(.download-btn):hover {
    background: rgba(255, 123, 0, 0.2);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    background: var(--bg-primary);
    padding: 8px;
    border-radius: 10px;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 189, 173, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(94, 189, 173, 0.1);
    color: var(--text-secondary);
}

/* Page Header */
.page-header {
    background-image: url('../Data/bg/1.jpeg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

/* Team Page Header */
.team-page-header {
    background-image: url('../Data/teambg/1.jpeg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(94, 189, 173, 0.5) 100%);
}

.page-header h1,
.team-page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white !important;
    font-weight: 800;
    letter-spacing: -1px;
}

.page-header p,
.team-page-header p {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    color: white !important;
    font-weight: 600;
    line-height: 1.6;
}

/* About Page Styles */
.about-intro {
    padding: 5rem 0;
    background: var(--bg-primary);
    text-align: center;
    color: var(--text-primary);
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.our-origin {
    padding: 5rem 0;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.origin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.origin-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.image-grid img:first-child {
    grid-column: 1 / -1;
    height: 250px;
}

.image-grid img:hover {
    transform: scale(1.05);
}

.mission-vision-detailed {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.mission-card-detailed,
.vision-card-detailed {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(94, 189, 173, 0.1);
}

.mission-image img,
.vision-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.mission-detailed-list,
.vision-detailed-list {
    list-style: none;
    margin-top: 1.5rem;
}

.mission-detailed-list li,
.vision-detailed-list li {
    padding: 1rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(94, 189, 173, 0.1);
}

.mission-detailed-list li:last-child,
.vision-detailed-list li:last-child {
    border-bottom: none;
}

.mission-detailed-list li i,
.vision-detailed-list li i {
    color: var(--primary-color);
    margin-top: 0.3rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mission-detailed-list strong,
.vision-detailed-list strong {
    color: var(--text-primary);
}

.programs-detailed {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.program-section {
    margin-bottom: 4rem;
}

.program-header {
    text-align: center;
    margin-bottom: 2rem;
}

.program-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.program-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.program-details {
    margin-top: 2rem;
}

.program-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(94, 189, 173, 0.1);
    align-items: center;
}

.program-item.full-width {
    grid-template-columns: 1fr;
}

.program-item-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.program-item-content h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-item-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Team Page */
.team-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-grid.leadership {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.team-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(94, 189, 173, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(94, 189, 173, 0.2);
    border-color: var(--primary-color);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(94, 189, 173, 0.3);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-university {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-email {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.team-email:hover {
    color: var(--primary-color);
}

.ambassadors-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

/* Coming Soon Page */
.coming-soon {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(94, 189, 173, 0.2) 100%);
    margin-top: 70px;
}

.coming-soon-content {
    text-align: center;
    padding: 2rem;
}

.coming-soon-icon {
    font-size: 6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.coming-soon h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.coming-soon-desc {
    font-size: 1.1rem !important;
    margin-bottom: 3rem !important;
}

.coming-soon-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Street School Highlight Section */
.street-school-highlight {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.street-school-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.street-school-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(94, 189, 173, 0.2);
    transition: transform 0.3s ease;
}

.street-school-image img:hover {
    transform: scale(1.02);
}

.street-school-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bangla-heading {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.street-school-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.school-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.school-features li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.school-features i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(94, 189, 173, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

/* Gallery Page */
.gallery-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(94, 189, 173, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(94, 189, 173, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(94, 189, 173, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu,
    body .nav-menu,
    html body .nav-menu,
    [data-theme="light"] .nav-menu,
    [data-theme="dark"] .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #5ebdad !important;
        background: #5ebdad !important;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .nav-menu a,
    body .nav-menu a,
    html body .nav-menu a,
    [data-theme="light"] .nav-menu a,
    [data-theme="dark"] .nav-menu a {
        color: #ffffff !important;
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-shadow: none;
    }
    
    .nav-menu a:hover {
        background-color: rgba(94, 189, 173, 0.2) !important;
    }
    
    .logo span {
        font-size: 1rem;
        display: none;
    }
    
    .logo img {
        height: 65px;
    }
    
    .nav-wrapper {
        padding: 0.5rem 0;
        padding-left: 0;
    }
    
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        background-attachment: scroll;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-title-bangla {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-description-bangla {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-bangla {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .bangla-subtitle {
        font-size: 0.95rem;
    }
    
    /* Impact Section */
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-card {
        padding: 2rem 1.5rem;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    /* Mission & Vision */
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Coverage Section */
    .coverage-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .coverage-section .section-title {
        font-size: 2.2rem;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-summary {
        grid-template-columns: 1fr;
    }
    
    .map-overlay-title {
        font-size: 1.2rem;
        padding: 0.75rem 2rem;
    }
    
    .bangladesh-map-iframe {
        height: 500px;
    }
    
    .map-legend {
        position: static;
        margin-top: 1rem;
    }
    
    /* Programs */
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-images {
        grid-template-columns: 1fr;
    }
    
    .program-images img {
        height: 250px;
    }
    
    /* Street School */
    .street-school-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .street-school-image img {
        height: 300px;
    }
    
    .street-school-text h2 {
        font-size: 1.8rem;
    }
    
    .bangla-heading {
        font-size: 1.3rem;
    }
    
    /* About Page */
    .origin-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-intro h2 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-grid img {
        height: 250px;
    }
    
    .image-grid img:first-child {
        height: 300px;
    }
    
    /* Team Page */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Page Headers */
    .page-header,
    .team-page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Notices */
    .notices-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-card {
        padding: 1.5rem;
    }
    
    .notice-title {
        font-size: 1.3rem;
    }
    
    .notice-pdf-actions {
        flex-direction: column;
    }
    
    .notice-pdf-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Form Elements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on mobile */
    }
    
    /* Coming Soon */
    .coming-soon h1 {
        font-size: 2rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
    }
    
    /* Donation */
    .donation-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteer-content {
        grid-template-columns: 1fr;
    }
    
    .volunteer-form-wrapper {
        padding: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Section Padding */
    .impact-section,
    .mission-vision,
    .programs-section,
    .about-intro,
    .our-origin,
    .mission-vision-detailed,
    .programs-detailed,
    .donation-impact,
    .donation-methods,
    .volunteer-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-title-bangla {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-description-bangla {
        font-size: 0.85rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title-bangla {
        font-size: 1.2rem;
    }
    
    /* Cards */
    .impact-card,
    .mission-card,
    .vision-card,
    .program-card {
        padding: 1.5rem 1rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .impact-icon,
    .card-icon,
    .program-icon {
        font-size: 2rem;
    }
    
    /* Page Header */
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Images */
    .street-school-image img,
    .image-grid img {
        height: 200px;
    }
    
    .program-images img {
        height: 200px;
    }
    
    /* Notice Cards */
    .notice-card {
        padding: 1rem;
    }
    
    .notice-category {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    /* Forms */
    .volunteer-form-wrapper {
        padding: 1rem;
    }
    
    /* Donation Modal */
    .donation-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
    
    /* Smaller spacing */
    .impact-section,
    .mission-vision,
    .programs-section,
    .about-intro,
    .our-origin,
    .mission-vision-detailed,
    .programs-detailed,
    .donation-impact,
    .donation-methods,
    .volunteer-section {
        padding: 2rem 0;
    }
}

/* Tablet Specific Styles */
/* Tablet Devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-bangla {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .page-header h1,
    .team-page-header h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        max-width: 720px;
        padding: 0 2rem;
    }
    
    /* Cards remain readable on tablet */
    .impact-card,
    .program-card,
    .team-card {
        padding: 2rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 55px;
    }
}

/* Touch-friendly enhancements for mobile */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap target sizes for touch devices */
    .btn,
    .nav-menu a,
    .copy-btn,
    .notice-pdf-btn,
    .menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .impact-card:hover,
    .program-card:hover,
    .team-card:hover,
    .donation-card:hover {
        transform: none;
    }
    
    /* Better touch feedback */
    .btn:active,
    .nav-menu a:active,
    .copy-btn:active,
    .notice-pdf-btn:active {
        transform: scale(0.95);
        opacity: 0.8;
    }
    
    /* Disable parallax on touch devices for better performance */
    .hero {
        background-attachment: scroll;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Better table handling on mobile */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Donation Page Styles */
.donation-impact {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.donation-methods {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.section-subtitle-bengali {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.3rem;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.donation-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(94, 189, 173, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(94, 189, 173, 0.2);
    border-color: var(--primary-color);
}

.donation-card-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(94, 189, 173, 0.1) 0%, rgba(94, 189, 173, 0.1) 100%);
}

.donation-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.donation-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bengali-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

.donation-details {
    padding: 2rem;
}

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    color: var(--text-secondary);
}

.account-number {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(94, 189, 173, 0.2);
}

.account-number span {
    flex: 1;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.copy-btn {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(94, 189, 173, 0.3);
}

/* Volunteer Section */
.volunteer-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.volunteer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.volunteer-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.volunteer-benefits {
    list-style: none;
}

.volunteer-benefits li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.volunteer-benefits i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.volunteer-form-wrapper {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(94, 189, 173, 0.1);
}

.volunteer-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.volunteer-form select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(94, 189, 173, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.volunteer-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(94, 189, 173, 0.2);
}

.whatsapp-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #5ebdad;
}

/* Responsive for Donation Page */
@media (max-width: 768px) {
    .donation-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteer-content {
        grid-template-columns: 1fr;
    }
}

/* Donation Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--card-bg);
    margin: 3% auto;
    padding: 3rem;
    border: 1px solid rgba(94, 189, 173, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: var(--text-secondary);
    float: right;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    clear: both;
    padding-top: 1rem;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.3rem;
}

.donation-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.donation-modal-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(94, 189, 173, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.donation-modal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(94, 189, 173, 0.2);
    border-color: var(--primary-color);
}

.donation-modal-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(94, 189, 173, 0.1) 0%, rgba(94, 189, 173, 0.1) 100%);
}

.donation-modal-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.donation-modal-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.donation-modal-details {
    padding: 1.5rem;
}

/* Scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 2rem 1rem;
        max-height: 90vh;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
    
    .modal-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .donation-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donation-modal-card {
        margin-bottom: 0;
    }
    
    .donation-modal-header {
        padding: 1.5rem;
    }
    
    .donation-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .donation-modal-details {
        padding: 1.25rem;
    }
    
    .detail-item h4 {
        font-size: 1rem;
    }
    
    .account-number {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .account-number span {
        font-size: 1rem;
        word-break: break-all;
    }
    
    .copy-btn {
        width: 100%;
        padding: 10px;
    }
    
    .close-modal {
        font-size: 2.5rem;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 100;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        padding: 1.5rem 0.75rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
        padding-top: 2rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .donation-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .donation-modal-card h3 {
        font-size: 1.1rem;
    }
    
    .close-modal {
        font-size: 2rem;
    }
}

/* ============================================================= */
/* MOBILE MENU OVERRIDE - MUST BE AT END OF FILE                 */
/* This ensures mobile menu is visible in both light & dark mode */
/* ============================================================= */
@media screen and (max-width: 992px) {
    .nav-menu,
    html .nav-menu,
    body .nav-menu,
    .light-theme .nav-menu,
    .dark-theme .nav-menu,
    [data-theme="light"] .nav-menu,
    [data-theme="dark"] .nav-menu {
        background: #5ebdad !important;
        background-color: #5ebdad !important;
    }
    
    .nav-menu a,
    .nav-menu li a,
    html .nav-menu a,
    body .nav-menu a,
    .navbar .nav-menu a,
    .light-theme .nav-menu a,
    .dark-theme .nav-menu a,
    [data-theme="light"] .nav-menu a,
    [data-theme="dark"] .nav-menu a {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }
}

/* ============ HOMEPAGE HERO SLIDER ONLY ============ */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(94, 189, 173, 0.5);
    border: 2px solid var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: #FF7B00;
    border-color: #FF7B00;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(94, 189, 173, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 123, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slider-arrow.prev { left: 15px; }
    .slider-arrow.next { right: 15px; }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .hero {
        height: 60vh;
        min-height: 450px;
        max-height: 550px;
    }
}

/* Hero Overlay Content */
.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(94, 189, 173, 0.3) 100%);
    pointer-events: none;
}

.hero-text-box {
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(94, 189, 173, 0.1);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8fd5c9 0%, #5ebdad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(94, 189, 173, 0.3);
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #FF7B00;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(94, 189, 173, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    pointer-events: all;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #FF7B00 0%, #E56A00 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(94, 189, 173, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-hero:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 123, 0, 0.5);
}

.btn-secondary-hero {
    background: rgba(94, 189, 173, 0.1);
    color: white;
    border: 2px solid rgba(94, 189, 173, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(94, 189, 173, 0.2);
    border-color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(94, 189, 173, 0.3);
}

@media (max-width: 768px) {
    .hero-text-box {
        padding: 1.5rem;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-title-sub {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Our Story Section */
.our-story-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text {
    position: relative;
    padding-right: 0.5rem;
    padding-left: 2rem;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.story-text p:hover {
    border-left-color: rgba(94, 189, 173, 0.5);
    padding-left: 2rem;
}

.story-text .lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-primary);
    border-left-color: #FF7B00;
}

.story-text .highlight {
    background: linear-gradient(90deg, rgba(94, 189, 173, 0.1) 0%, transparent 100%);
    padding: 1.5rem;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 15px 15px 0;
    font-weight: 500;
    color: var(--text-primary);
    margin: 2rem 0;
}

.story-text .bold-statement {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #5ebdad 0%, #B8F0AE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-left: 4px solid #FF7B00;
    padding-left: 2rem;
    margin-top: 2.5rem;
}

.story-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.story-images {
    position: relative;
}

.story-images img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(94, 189, 173, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-images img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(94, 189, 173, 0.4);
    border-color: var(--primary-color);
}

.story-images::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, rgba(94, 189, 173, 0.2), rgba(255, 123, 0, 0.1));
    border-radius: 25px;
    z-index: -1;
}

@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .story-text p {
        font-size: 1.05rem;
    }
    
    .story-text .lead {
        font-size: 1.2rem;
    }
    
    .story-text .bold-statement {
        font-size: 1.25rem;
    }
}

/* Campaign Section */
.campaign-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.campaign-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 189, 173, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.campaign-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.campaign-section .section-subtitle {
    font-size: 1.2rem;
    color: #FF7B00;
    text-align: center;
    margin-bottom: 3rem;
}

.campaign-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.campaign-text {
    background: rgba(94, 189, 173, 0.02);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(94, 189, 173, 0.2);
    backdrop-filter: blur(10px);
}

.campaign-text h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B8F0AE 0%, #5ebdad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.campaign-text h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-text h4::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, #FF7B00, #E56A00);
    border-radius: 2px;
}

.campaign-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.campaign-messages {
    margin-top: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.campaign-messages li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(94, 189, 173, 0.05);
    border-radius: 10px;
    border-left: 3px solid #FF7B00;
    transition: all 0.3s ease;
}

.campaign-messages li:hover {
    background: rgba(94, 189, 173, 0.1);
    transform: translateX(5px);
}

.campaign-messages li i {
    color: #FF7B00;
    font-size: 1.3rem;
    margin-top: 4px;
    min-width: 24px;
}

.campaign-messages li strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.campaign-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.campaign-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.campaign-gallery img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(94, 189, 173, 0.4);
    border-color: rgba(94, 189, 173, 0.5);
}

.campaign-gallery img:first-child {
    grid-column: span 2;
    height: 250px;
}

@media (max-width: 992px) {
    .campaign-content {
        grid-template-columns: 1fr;
    }
    
    .campaign-gallery {
        order: -1;
    }
    
    .campaign-text {
        padding: 1.5rem;
    }
}

/* ========================================
   ADVISORS SECTION - PREMIUM 2026 DESIGN
   ======================================== */
.advisors-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.advisors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(94, 189, 173, 0.5), transparent);
}

.advisors-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 123, 0, 0.5), transparent);
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.advisor-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(94, 189, 173, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.advisor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(94, 189, 173, 0.1) 0%, transparent 50%, rgba(255, 123, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advisor-card:hover::before {
    opacity: 1;
}

.advisor-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(94, 189, 173, 0.25),
        0 0 50px rgba(94, 189, 173, 0.1);
    border-color: rgba(94, 189, 173, 0.5);
}

.advisor-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.advisor-card:hover .advisor-image img {
    transform: scale(1.1);
}

.advisor-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advisor-card:hover .advisor-overlay {
    opacity: 1;
}

.advisor-overlay i {
    font-size: 2.5rem;
    color: rgba(94, 189, 173, 0.8);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.advisor-card:hover .advisor-overlay i {
    transform: translateY(0);
}

.advisor-info {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.advisor-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #5ebdad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.advisor-card:hover .advisor-info h3 {
    background: linear-gradient(135deg, #5ebdad 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.advisor-title {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FF7B00;
    padding: 0.3rem 1rem;
    background: rgba(255, 123, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.advisor-details {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Street School Section Enhanced */
.street-school-highlight {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.street-school-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 189, 173, 0.08) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.street-school-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.street-school-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.street-school-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(94, 189, 173, 0.3) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.street-school-image:hover::before {
    opacity: 1;
}

.street-school-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.street-school-image:hover img {
    transform: scale(1.05);
}

.street-school-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B8F0AE 0%, #5ebdad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.street-school-text > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.school-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.school-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(94, 189, 173, 0.05);
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.school-features li:hover {
    background: rgba(94, 189, 173, 0.1);
    border-left-color: #FF7B00;
    transform: translateX(10px);
}

.school-features li i {
    color: #FF7B00;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.school-features li:hover i {
    transform: scale(1.2);
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(94, 189, 173, 0.15) 0%, transparent 100%);
    border-left: 4px solid #FF7B00;
    border-radius: 0 15px 15px 0;
    margin-top: 2rem;
}

/* How to Help Section Enhanced */
.how-to-help-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.how-to-help-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(94, 189, 173, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 123, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.help-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.help-way-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(30, 30, 30, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(94, 189, 173, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.help-way-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5ebdad, #FF7B00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.help-way-card:hover::before {
    transform: scaleX(1);
}

.help-way-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(94, 189, 173, 0.3);
    border-color: var(--primary-color);
}

.help-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(94, 189, 173, 0.2) 0%, rgba(94, 189, 173, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    border: 2px solid rgba(94, 189, 173, 0.2);
}

.help-way-card:hover .help-icon {
    background: linear-gradient(135deg, #5ebdad 0%, #B8F0AE 100%);
    color: white;
    transform: scale(1.1) rotate(10deg);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(94, 189, 173, 0.4);
}

.help-way-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.help-way-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Transparency Section Enhanced */
.transparency-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.transparency-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 2rem;
}

.transparency-text .lead {
    font-size: 1.3rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.9;
    padding: 0 2rem;
}

.transparency-features {
    display: grid;
    gap: 1.5rem;
}

.transparency-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(94, 189, 173, 0.1);
    transition: all 0.4s ease;
}

.transparency-feature:hover {
    background: rgba(94, 189, 173, 0.1);
    border-color: rgba(94, 189, 173, 0.3);
    transform: translateX(10px);
}

.transparency-feature i {
    font-size: 2rem;
    color: #FF7B00;
    background: rgba(255, 123, 0, 0.1);
    padding: 1rem;
    border-radius: 15px;
    min-width: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.transparency-feature:hover i {
    background: #FF7B00;
    color: white;
    transform: scale(1.1);
}

.transparency-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.transparency-feature p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section Enhanced */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #5ebdad 0%, #B8F0AE 50%, #A0E89A 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 189, 173, 0.1) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.2) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out reverse;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(94, 189, 173, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.cta-buttons .btn-primary {
    background: #FF7B00;
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.4);
}

.cta-buttons .btn-primary:hover {
    background: #E56A00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 123, 0, 0.5);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--text-primary);
}

.cta-buttons .btn-secondary:hover {
    background: var(--bg-primary);
    color: #5ebdad;
    transform: translateY(-5px);
}

/* Responsive for Advisors */
@media (max-width: 992px) {
    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .advisor-image {
        height: 220px;
    }
    
    .street-school-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .street-school-image img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .advisors-grid {
        grid-template-columns: 1fr;
    }
    
    .advisor-image {
        height: 280px;
    }
    
    .help-ways-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
/* ============================================
   NEW MODERN SECTIONS - REFERENCE DESIGN
   ============================================ */

/* Orange Text Utility */
.orange-text {
    color: var(--secondary-color) !important;
}

.white-text {
    color: white !important;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.what-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.what-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.what-item:hover img {
    transform: scale(1.05);
}

.what-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Our Vision Section */
.our-vision-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.vision-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.vision-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vision-item:hover img {
    transform: scale(1.1);
}

/* Values Section */
.values-section {
    padding: 0;
    background: var(--secondary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.value-box {
    background: var(--secondary-color);
    color: white;
    padding: 60px 40px;
    border: 1px solid rgba(94, 189, 173, 0.2);
}

.value-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.value-box p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Bangladesh Section */
.bangladesh-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.map-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.map-container img {
    max-width: 400px;
    width: 100%;
}

.coverage-text {
    flex: 1;
}

.coverage-text h3 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.coverage-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.coverage-stats {
    display: flex;
    gap: 40px;
}

.coverage-item {
    display: flex;
    flex-direction: column;
}

.coverage-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
}

.coverage-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Numbers Section */
.numbers-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.number-item {
    text-align: center;
}

.big-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

.number-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Our Impact Section */
.our-impact-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.impact-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.impact-text {
    flex: 1;
}

.impact-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.impact-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.impact-images {
    flex: 1;
}

.impact-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Care For Section */
.care-for-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.care-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.care-item.reverse {
    flex-direction: row-reverse;
}

.care-image {
    flex: 0 0 250px;
}

.care-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.care-content {
    flex: 1;
}

.care-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.care-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.care-content p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.care-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.care-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-secondary);
}

.care-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .what-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        flex-direction: column;
    }
    
    .impact-content {
        flex-direction: column;
    }
    
    .care-item,
    .care-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .care-image {
        flex: 0 0 auto;
    }
}

@media (max-width: 640px) {
    .what-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .big-number {
        font-size: 48px;
    }
    
    .value-box {
        padding: 40px 30px;
    }
    
    .value-box h3 {
        font-size: 24px;
    }
    
    .coverage-stats {
        flex-direction: column;
        gap: 20px;
    }
}
/* Happy Moment Section */
.happy-moment-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.moment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.moment-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moment-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Support CTA Section */
.support-cta-section {
    padding: 80px 0;
    background: var(--secondary-color);
    text-align: center;
}

.support-cta-section .section-title {
    font-size: 36px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: var(--bg-primary);
    color: var(--secondary-color);
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive for Happy Moment */
@media (max-width: 968px) {
    .moment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .moment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-cta-section .section-title {
        font-size: 28px;
    }
}







