/* slider section  */
/* Slider Styling */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?q=80&w=1000');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.slide {
    display: none;
    height: 100%;
}

.slide.active {
    display: flex;
}

.slide-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.text-area {
    flex: 1;
    padding: 0 10%;
    color: white;
}

.text-area span {
    font-size: 1.2rem;
    font-weight: bold;
}

.text-area h1 {
    font-size: 3.5rem;
    margin: 15px 0;
    letter-spacing: 2px;
}

.btn-group .btn {
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 15px;
    display: inline-block;
    transition: 0.3s;
}

.btn-blue {
    background-color: #9b7d40;
    color: white;
}

.btn-orange {
    background-color: #9c9a99;
    color: white;
}

.image-area {
    flex: 1;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Cards Styling */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 10%;
    margin-top: -60px;
    /* Floating effect */
    position: relative;
    z-index: 20;
}

.card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.card:hover {
    background-color: #f4f2ee;
    color: rgb(0, 0, 0);
    transition: 0.5s;


}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #9b7d40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.card h3 {
    color: #9b7d40;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide-content {
        flex-direction: column;
    }

    .image-area {
        display: none;
    }

    /* Hide right image on small tablets */
    .text-area {
        padding: 50px 20px;
        text-align: center;
    }

    .text-area h1 {
        font-size: 2.5rem;
    }

    .cards-container {
        flex-direction: column;
        margin-top: 20px;
        padding: 20px;
    }
}

/* gf-section  */
.gf-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    max-width: 1300px;
    margin: 0 auto;
    gap: 40px;
    min-height: 500px;
}

/* Left Content Side */
.gf-content {
    flex: 1;
    min-width: 300px;
}

.gf-title {
    color: #9b7d40;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gf-line {
    width: 50px;
    height: 3px;
    background-color: #9b7d40;
    margin-bottom: 30px;
}

.gf-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.gf-mission-bold {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

/* Read More Button */
.gf-btn {
    display: inline-block;
    background-color: #9b7d40;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 10px;
}

.gf-btn:hover {
    background-color: #f4f2ee;
    color: black;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Right Image Side */
.gf-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gf-main-img {
    max-width: 100%;
    height: auto;
    /* Aapki image ka background black hai toh 
               border-radius add karke look better kar sakte hain */
    border-radius: 10px;
}

/* Responsive Design */

/* Laptop/Desktop (Default) - Image Right */

/* Mobile & Tablet View */
@media (max-width: 991px) {
    .gf-section {
        flex-direction: column;
        /* Stack vertically */
        text-align: center;
        padding: 40px 20px;
    }

    .gf-line {
        margin: 0 auto 25px;
    }

    .gf-image-box {
        order: -1;
        /* Mobile par image upar dikhegi */
        width: 100%;
    }

    .gf-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .gf-section {
        padding: 30px 15px;
    }

    .gf-title {
        font-size: 24px;
    }
}

/* hero-section */
.hero-section {
    position: relative;
    height: 100vh;
    /* Full screen height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #9b7d40;
    overflow: hidden;

    /* Background Image Settings */
    background-image: url('images/bg1.jpg');
    /* Replace with your image path */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* Isse image fix rahegi */
}

.hero-section p {

    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* Dark Overlay taaki text saaf dikhe */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust darkness here */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Button Styling */
.donate-btn {
    display: inline-block;
    background-color: #9b7d40;
    /* Orange color from your image */
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s;
}

.donate-btn:hover {
    background-color: #d7d6d5;
    transform: translateY(-2px);
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 1rem;
    }

    /* Mobile par parallax effect kabhi kabhi smooth nahi hota, toh ise disable kar sakte hain */
    .hero-section {
        background-attachment: scroll;
        height: 300px;
    }
}

/* gjf-achievement-section */
.gjf-achievement-section {
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.gjf-main-title {
    color: #9b7d40;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gjf-sub-description {
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.gjf-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gjf-cards-container {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    padding: 10px 0;
}

.gjf-card {
    min-width: calc(33.333% - 14px);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gjf-image-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gjf-content {
    padding: 25px 20px;
}

.gjf-card-title {
    color: #9b7d40;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.gjf-card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    height: 60px;
    overflow: hidden;
}

.gjf-read-more {
    display: inline-block;
    background-color: #9b7d40;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.gjf-read-more:hover {
    background-color: #d7d6d5;
    color: #000;
}

.gjf-nav-btn {
    position: absolute;
    background: #9b7d40;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    border-radius: 2px;
}

.gjf-prev {
    left: -10px;
}

.gjf-next {
    right: -10px;
}

@media (max-width: 992px) {
    .gjf-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .gjf-card {
        min-width: 100%;
    }

    .gjf-nav-btn {
        display: none;
    }

    .gjf-cards-container {
        overflow-x: auto;
    }
}

/* gf-strength-section */
#gf-strength-section {
    position: relative;
    min-height: 200px;
    background-image: url('images/bg1-counter.jpg');
    /* Apni image ka sahi path yaha dale */
    background-attachment: fixed;
    /* Parallax Effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay for better text visibility */
.gf-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    min-height: 600px;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gf-content-wrapper {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

.gf-main-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: capitalize;
    line-height: 1.2;
}

.gf-sub-text {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Grid for Blue Boxes */
.gf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gf-stat-box {
    background-color: #9b7d40;
    /* Image wala exact blue color */
    padding: 50px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gf-stat-box:hover {
    transform: translateY(-10px);
    background-color: #eddebe;
}

.gf-counter {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.gf-stat-box span {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- RESPONSIVE DESIGN (Matching your screenshot) --- */

/* Tablet View */
@media (max-width: 992px) {
    .gf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gf-main-heading {
        font-size: 2.5rem;
    }
}

/* Mobile View (Jaisa aapne image me manga hai) */
@media (max-width: 576px) {
    #gf-strength-section {
        background-attachment: scroll;
        /* Mobile smooth scroll ke liye */
    }

    .gf-overlay {
        padding: 50px 15px;
    }

    .gf-main-heading {
        font-size: 2.2rem;
        padding: 0 10px;
    }

    .gf-sub-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Boxes ek ke niche ek ayenge aur bade dikhenge */
    .gf-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .gf-stat-box {
        padding: 70px 20px;
        /* Extra padding for larger appearance */
    }

    .gf-counter {
        font-size: 3rem;
        /* Mobile par numbers ko highlight karne ke liye */
    }
}

/* godjee-about-section */
/* Unique wrapper style to avoid conflicts */
.gj-foundation-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 20px;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.gj-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styles */
.gj-header {
    text-align: center;
    margin-bottom: 50px;
}

.gj-main-title {
    color: #9b7d40;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.gj-sub-text {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Content Grid */
.gj-content-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.gj-text-column {
    flex: 1;
    min-width: 300px;
}

.gj-image-column {
    flex: 0.8;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

/* Typography */
.gj-heading-blue {
    color: #9b7d40;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.gj-description {
    margin-bottom: 20px;
    font-size: 15px;
    text-align: justify;
}

/* Illustration Styles */
.gj-illustration-box {
    position: relative;
    text-align: center;
}

.gj-vector-img {
    max-width: 100%;
    height: auto;
}

.gj-donation-label {
    font-weight: 900;
    font-size: 24px;
    color: #000;
    margin-top: 10px;
    line-height: 1;
}

.gj-donation-label span {
    color: #666;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gj-main-title {
        font-size: 26px;
    }

    .gj-content-grid {
        flex-direction: column;
    }

    .gj-text-column,
    .gj-image-column {
        width: 100%;
    }

    .gj-heading-blue {
        font-size: 18px;
    }
}

/* doc-container-main */
