/* ===================================
   SURRANI FOUNDATION - STYLES
   Modern Professional Theme
   Color: White Background, Black Text, #137752 Accent
   Font: Poppins
   =================================== */

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

/* ===================================
   COLORS & VARIABLES
   =================================== */
:root {
    --primary-color: #137752;
    --text-color: #000000;
    --text-light: #333333;
    --text-lighter: #666666;
    --bg-light: #f8f8f8;
    --bg-lighter: #f0f0f0;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

::selection {
	background: var(--primary-color);
	color: var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	color: var(--white);
}

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

/* track */
::-webkit-scrollbar-track {
	background: var(--bg-lighter);
}

/* thumb */
::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 10px;
}

/* hover */
::-webkit-scrollbar-thumb:hover {
	background: #0f5e42; /* slightly darker green */
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-color);
}

p {
    color: var(--text-lighter);
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-color);
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(55, 119, 82, 0.25);
}

.btn-secondary {
    padding: 12px 32px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(55, 119, 82, 0.25);
}

/* Modern Donate Button */
.btn-donate-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f5a3f 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-donate-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-donate-modern:hover::before {
    left: 100%;
}

.btn-donate-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 119, 82, 0.3);
}

.btn-donate-modern:active {
    transform: translateY(0);
}

.btn-donate-modern i {
    font-size: 1.8rem;
}

.donate-icon {
    font-size: 1.8rem;
    display: block;
}

.donate-text {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.donate-subtext {
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0.95;
    display: block;
}

/* ===================================
   NAVIGATION
   =================================== */
nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 40px;
}

.nav-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-logo-section:hover {
    opacity: 0.8;
}

.nav-logo-section img {
    height: 60px;
    width: auto;
}

.company-name {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-surrani-text {
    font-family: 'Agraham', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}
.nav-foundation-text {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 300;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom:10px ;

}
.surrani-text {
  font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    color: var(--primary-color);
}

.foundation-text {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 300;
    color: var(--primary-color);
}

.nav-logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-right .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    padding: 10px 24px !important;
}

.nav-right .btn-primary:hover {
    background-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 119, 82, 0.25);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:active {
    transform: scale(0.9);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-menu.active {
    display: block;
    max-height: 500px;
    padding: 20px;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text-lighter);
    border-bottom: 1px solid var(--bg-lighter);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu .btn-primary {
    display: block !important;
    margin-top: 10px !important;
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
    padding: 12px 24px !important;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-menu .btn-primary:hover {
    background-color: #0d5c3f !important;
}

/* ===================================
   TABLET OPTIMIZATIONS (768px - 1024px)
   =================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Navigation */
    .navbar-container {
        gap: 20px;
        height: 75px;
    }

    .nav-logo-section img {
        height: 55px;
    }

    .company-name {
        font-size: 0.9rem;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .nav-right .btn-primary {
        padding: 8px 16px !important;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-right img {
        height: 500px;
    }

    /* About Section */
    .about {
        padding-top: 30px;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .about-image {
        height: 450px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        margin-top: 50px;
    }

    .mission-box,
    .vision-box {
        padding: 35px;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    /* Community Section */
    .community-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .community-left h2 {
        font-size: 2rem;
    }

    /* Impact Section */
    .impact-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .counter {
        font-size: 2.5rem;
    }

    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .story-card {
        padding: 25px;
    }

    /* Core Values Section */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .value-card {
        padding: 30px;
    }

    .values-highlight {
        margin-top: 50px;
    }

    .highlight-box {
        padding: 40px;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    /* Contact Section */
    .donation-form {
        max-width: 600px;
    }

    .form-group input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .donation-button {
        padding: 12px 40px;
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 80px 20px 40px;
    }

    .footer-surani-text {
        font-size: 3.5rem;
    }

    .footer-foundation-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .navbar-container {
        gap: 25px;
    }
}

@media (max-width:340px) {
    .nav-surrani-text{
        font-size: 18px;
    }
    .nav-foundation-text{
        font-size: 18px;
    }
}

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

    .nav-menu {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .navbar-container {
        height: 70px;
        gap: 20px;
    }

    .nav-logo-section img {
        height: 50px;
    }

    .company-name {
        display: flex;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 60px 20px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 119, 82, 0.1);
    border: 1px solid rgba(19, 119, 82, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    width: fit-content;
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
    text-shadow: none;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-lighter);
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    outline: none;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(19, 119, 82, 0.2);
}

.hero-buttons .btn-primary:hover {
    background-color: #0d5c3f;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(19, 119, 82, 0.3);
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-right img {
    max-width: 100%;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-right:hover img {
    transform: translateY(-10px);
}

.hero-stats-modern {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    transform: translateY(-80px);
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 119, 82, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(19, 119, 82, 0.2);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), rgba(19, 119, 82, 0.6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.stat-card .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-lighter);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .hero-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 40px 20px;
        margin-top: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 12px;
        flex-direction: column;
    }

    .hero-buttons button {
        width: 100%;
    }

    .hero-right {
        order: -1;
    }

    .hero-right img {
        max-height: 400px;
        object-fit: cover;
    }

    .hero-stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 40px 15px;
        transform: translateY(-50px);
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 30px 15px;
        margin-top: 30px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-left h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 30px 12px;
        transform: translateY(-40px);
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-card .stat-number {
        font-size: 1.5rem;
    }

    .stat-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        margin-top: 50px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item .stat-number {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}


@media (min-width:2560px) {
    .hero{
        min-height: 50vh;
    }
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: 80px 20px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #f5faf9 100%);
    padding-top: 40px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(19, 119, 82, 0.12);
    transition: transform 0.3s ease;
    width: 100%;
    height: 500px;
}

.about-image:hover {
    transform: translateY(-5px);
}

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

/* ===================================
   GALLERY STYLES
   =================================== */
.about-gallery {
    display: none;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(19, 119, 82, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 119, 82, 0.8), rgba(19, 119, 82, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.9;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.mission-box,
.vision-box {
    padding: 40px;
    background-color: transparent;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateX(10px);
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.mission-box ul,
.vision-box ul {
    list-style: none;
}

.mission-box li,
.vision-box li {
    padding: 12px 0;
    display: flex;
    gap: 12px;
    color: var(--text-lighter);
}

.mission-box li i,
.vision-box li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-content h2 {
        font-size: 2rem;
    }
}

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

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        border-radius: 15px;
        max-height: 350px;
    }

    .about-image img {
        height: 350px;
        object-fit: cover;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .mission-box,
    .vision-box {
        padding: 30px;
        border-radius: 12px;
    }

    .mission-box h3,
    .vision-box h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .mission-box ul {
        gap: 12px;
    }

    .mission-box li {
        font-size: 0.95rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .section-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 15px;
    }

    .about-container {
        gap: 20px;
    }

    .about-image {
        max-height: 280px;
        border-radius: 12px;
    }

    .about-image img {
        height: 280px;
    }

    .mission-vision {
        gap: 20px;
        margin-top: 30px;
    }

    .mission-box,
    .vision-box {
        padding: 20px;
    }

    .mission-box h3,
    .vision-box h3 {
        font-size: 1.2rem;
    }

    .mission-box ul {
        gap: 10px;
    }

    .mission-box li {
        font-size: 0.9rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .btn-primary {
        width: 100%;
        padding: 12px 24px;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.services .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.services .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.8rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 50px 20px;
    }

    .services .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 2.2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }
}

/* ===================================
   IMPACT SECTION
   =================================== */
.impact {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf8 100%);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.impact-stat {
    padding: 40px;
    background: transparent;
    border-radius: 16px;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(19, 119, 82, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    box-shadow: 0 20px 50px rgba(19, 119, 82, 0.15);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.impact-stat:hover::before {
    top: -30%;
    right: -30%;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.impact-stat p {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-lighter);
}

.success-stories {
    background-color: var(--white);
    border-radius: 12px;
    padding: 60px;
    border: 1px solid var(--border-color);
}

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

.story-card {
    text-align: center;
}

.story-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--text-color);
}

.story-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-text {
    color: var(--text-lighter);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
}

.stars {
    margin: 12px 0;
    font-size: 0.9rem;
}

.stars i {
    color: var(--primary-color);
}

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

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .counter {
        font-size: 2.5rem;
    }

    .success-stories {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .success-stories h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-card {
        padding: 0;
    }

    .story-card h4 {
        font-size: 1rem;
    }

    .story-role {
        font-size: 0.85rem;
    }

    .story-text {
        font-size: 0.9rem;
    }
}

/* ===================================
   CORE VALUES SECTION
   =================================== */
.core-values {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf8 100%);
    padding: 100px 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background: transparent;
    padding: 40px 30px;
    border-radius: 16px;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 20px 50px rgba(19, 119, 82, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), rgba(19, 119, 82, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-lighter);
    line-height: 1.7;
}

.values-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(19, 119, 82, 0.8) 100%);
    padding: 50px 40px;
    border-radius: 16px;
    color: var(--white);
    margin-top: 60px;
}

.highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===================================
   TEAM SECTION
   =================================== */
.team {
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.team-member:hover {
    box-shadow: 0 20px 40px rgba(55, 119, 82, 0.1);
    transform: translateY(-8px);
}

.team-member-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-image i {
    font-size: 4rem;
    color: var(--white);
}

.team-member-info {
    padding: 24px;
    text-align: center;
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--text-color);
}

.team-role {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-bottom: 16px;
    line-height: 1.6;
}

.team-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-lighter);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-socials a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .core-values {
        padding: 60px 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .values-highlight {
        padding: 40px 30px;
        margin-top: 40px;
    }

    .highlight-box h3 {
        font-size: 1.4rem;
    }

    .highlight-box p {
        font-size: 0.95rem;
    }
}

/* ===================================
   COMMUNITY SECTION
   =================================== */
.community-section {
    background-color: #2d2d2d;
    padding: 80px 20px;
}

.community-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.community-left {
    display: flex;
    align-items: center;
}

.community-left h2 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
}

.community-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.community-right p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.community-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.community-arrow i {
    color: #2d2d2d;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.community-arrow:hover {
    transform: scale(1.1) translateX(5px);
    background-color: var(--primary-color);
}

.community-arrow:hover i {
    color: var(--white);
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .community-content {
        gap: 60px;
    }

    .community-left h2 {
        font-size: 2.5rem;
    }

    .community-right p {
        font-size: 1rem;
    }
}

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

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

    .community-left h2 {
        font-size: 2rem;
    }

    .community-right p {
        font-size: 0.95rem;
    }

    .community-arrow {
        align-self: flex-start;
    }
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    background: linear-gradient(135deg, #f5faf9 0%, #ffffff 100%);
    padding: 100px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(19, 119, 82, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(19, 119, 82, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 119, 82, 0.85), rgba(19, 119, 82, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay p {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1024px) {
    .gallery {
        padding: 80px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-overlay p {
        font-size: 1.1rem;
    }
}

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .gallery-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .gallery-overlay p {
        font-size: 0.95rem;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background-color: var(--white);
    padding: 80px 20px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.donation-intro {
    font-size: 1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-align: center;
}

.donation-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.donation-form {
    background-color: transparent;
}

.form-label-row {
    margin-bottom: 12px;
    margin-top: 24px;
}

.form-label-row label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 119, 82, 0.1);
}

.donation-button {
    width: 100%;
    padding: 14px 28px;
    background-color: #000000;
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 30px;
}

.donation-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 119, 82, 0.2);
}

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

    .donation-container {
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .donation-intro {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .form-label-row label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .donation-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        margin-top: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .amount-options {
        flex-direction: column;
        gap: 12px;
    }

    .radio-option {
        padding: 10px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        margin: 0;
    }
}

/* ===================================
   PRIVACY POLICY PAGE
   =================================== */
.policy-section {
    background: linear-gradient(135deg, #f5faf9 0%, #ffffff 100%);
    padding: 100px 20px;
    min-height: calc(100vh - 400px);
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.policy-date {
    color: var(--text-lighter);
    font-size: 1rem;
    font-weight: 500;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-item {
    margin-bottom: 50px;
}

.policy-item h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-item p {
    color: var(--text-lighter);
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-item ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-item li {
    color: var(--text-lighter);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1rem;
}

.policy-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-item a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

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

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-item h2 {
        font-size: 1.4rem;
    }

    .policy-item p,
    .policy-item li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 15px;
    }

    .policy-header h1 {
        font-size: 1.5rem;
    }

    .policy-item h2 {
        font-size: 1.2rem;
    }

    .policy-item p,
    .policy-item li {
        font-size: 0.9rem;
    }

    .policy-item ul {
        margin-left: 20px;
    }
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background-color: var(--white);
    color: var(--text-color);
    padding: 100px 20px 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.footer-brand {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-company-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-company-name:hover {
    opacity: 0.8;
}

.footer-surani-text {
    font-family: 'Agraham', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 5rem;
}

.footer-foundation-text {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 300;
    color: var(--primary-color);
    font-size: 2rem;
    letter-spacing: 4px;
}

.footer-socials {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.footer-socials a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--text-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-color);
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer {
        padding: 40px 20px;
        min-height: auto;
    }

    .footer-container {
        gap: 40px;
    }

    .footer-surani-text {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .footer-foundation-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .footer-socials {
        gap: 20px;
    }

    .footer-socials a {
        font-size: 1.2rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        padding: 0 10px;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(19, 119, 82, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(19, 119, 82, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(19, 119, 82, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(19, 119, 82, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(19, 119, 82, 0.6);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

/* ===================================
   UTILITIES
   =================================== */
.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-light {
    color: var(--text-lighter);
}

.bg-light {
    background-color: var(--bg-light);
}

.rounded {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shadow-hover:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* ===================================
   MOBILE SMALL SCREENS (320px - 480px)
   =================================== */
@media (max-width: 480px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .navbar-container {
        height: 60px;
        padding: 0 15px;
        gap: 10px;
    }

    .nav-logo-section img {
        height: 45px;
    }

    .hero {
        padding: 50px 15px;
        margin-top: 40px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 40px;
    }

    .stat-item .stat-number {
        font-size: 1.4rem;
    }

    section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .community-section {
        padding: 50px 15px;
    }

    .community-content {
        gap: 30px;
    }

    .community-left h2 {
        font-size: 1.5rem;
    }

    .community-right p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .community-arrow {
        width: 50px;
        height: 50px;
    }

    .community-arrow i {
        font-size: 1.2rem;
    }

    .impact-stats {
        gap: 15px;
    }

    .counter {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 20px 15px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-box,
    .vision-box {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .donation-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .footer-surani-text {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .footer-foundation-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}