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

html,
body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    color: #151515;
    overflow-x: hidden;
    max-width: 100%;
    font-size: 16px;
}

a {
    text-decoration: none;
}

ul li {
    margin-bottom: 4px;
}
#main-wrapper {
    float: left;
    width: 100%;
    overflow: clip;
}

/* Header */
.top-header {
    background: white;
}

.logo img {
    max-width: 120px;
}

.donate-btn {
    background: #0087ff;
    padding: 8px 22px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

/* Navbar */
.main-nav {
    background: #111;
    white-space: nowrap;
}

.main-nav .nav-link {
    color: white;
    font-size: 14px;
    padding: 10px 18px;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    background: #ff6a00;
    color: white;
}

.mobile-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.navbar-toggler {
    border-color: #000;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.main-nav {
    background: #111;
}

.navbar-nav .nav-link {
    padding: 12px 20px;
}


/* Hero Section */
.hero-section {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: right;
    color: white;
    padding-left: 20px;
}

.hero-content .title {
    color: #fed700;
    font-size: 55px;
    font-weight: bold;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
}

.hero-content .sub {
    max-width: 600px;
    font-size: 28px;
    line-height: 40px;
    margin: 0 0 0 auto;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
}

.yellow {
    color: #fed700;
}

/* Info Boxes */
.info-box {
    background: white;
    border-top: 8px solid #c74600;
    text-align: center;
    display: block;
    overflow: hidden;
    /* IMPORTANT for zoom */
    transition: transform 0.3s ease;
}

.info-box img {
    transition: transform 0.4s ease-in-out;
}

/* Hover Zoom */
.info-box:hover img {
    transform: scale(1.08);
}

/* Title */
.info-box h4 {
    background: #c74600;
    color: white;
    margin: 0;
    padding: 10px;
}

/* Footer */
.main-footer {
    background: #0057b7;
    /* Blue */
    padding: 40px 20px;
    color: white;
    margin-top: 50px;
}

.footer-title {
    font-size: 14px;
}

.footer-tagline {
    font-size: 18px;
     font-weight: bold;
    letter-spacing: 1px;
}

.footer-social {
    margin-top: 10px;
}

.social-icon {
    display: inline-block;
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #fed700;
}


/* HERO IMAGE */
.about-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTENT WRAPPER */
.about-wrapper {
    background: white;
    padding: 50px 12%;
    margin-top: -5px;
}

/* TITLE STYLE */
.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 150px;
    height: 3px;
    background: #ff7c00;
    display: block;
    margin-top: 8px;
}

/* TEXT */
.about-text {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

/* GALLERY SECTION */
.newsletter-gallery {
    padding: 40px 8%;
    background: white;
}

.gallery-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.gallery-title::after {
    content: "";
    width: 120px;
    height: 3px;
    background: #ff7c00;
    display: block;
    margin: 10px auto 0;
}

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

.gallery-item {
     max-height: 300px; /* Change as you need */
    display: flex;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

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

/* Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.06);
}

/* Make the bottom left image wide like screenshot */
.gallery-item.wide {
    grid-column: span 2;
}

.donate-right {
    height: 450px;
}

.donate-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

  .left-img {
        background-image: url('/assets/img/contact-us.avif');
        background-size: cover;
        background-position: center;
        min-height: 600px; /* your requested min-height */
    }


    .orange-line {
        width: 100%;
        height: 3px;
        background-color: #d35400;
        margin: 10px 0 25px;
    }

    textarea {
        height: 150px !important;
    }
/* ========== RESPONSIVE FIXES ========== */

@media(max-width: 991px) {
    .hero-section {
        height: 400px;
    }

    .hero-content .title {
        font-size: 42px;
    }

    .hero-content .sub {
        font-size: 22px;
        line-height: 32px;
    }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.wide {
        grid-column: span 2;
    }
    
}

@media(max-width: 767px) {
    .hero-section {
        height: 350px;
        text-align: center;
        padding: 0 20px;
    }

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

    .hero-content .title {
        font-size: 34px;
    }

    .hero-content .sub {
        font-size: 18px;
        line-height: 26px;
    }

    .donate-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

       .about-wrapper {
        padding: 40px 20px;
    }
}

@media(max-width: 480px) {
    .hero-content .title {
        font-size: 30px;
    }

    .hero-content .sub {
        font-size: 16px;
        line-height: 22px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .social-icon {
        font-size: 18px;
        margin: 0 8px;
    }

      .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.wide {
        grid-column: span 1;
    }

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