/* Reset & Global Styles */

@font-face{
    font-family: Duplet;
    src: url('assets/Duplet-Font-Family/Duplet-Regular-BF642a340663b06.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Duplet;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 1% 5%;
    align-items: center;
    /* padding: 15px 4%;  CAN BE USED LATER */ 
    background-color: #FBEDE5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1400px; /* Prevents stretching on large screens */
    margin: 0 auto; /* Centers the navbar */
}
.mobile-donate-btn {
    display: none; /* Hidden by default on desktop */
}
/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    white-space: nowrap; /* Prevents wrapping */
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px; /* Adjusted spacing */
    list-style: none;
    align-items: center;
    margin-top: 15px;
}

/* Navigation Links - Styling */
.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 15px; /* Better clickable area */
}

.nav-links a:hover {
    color: #ffffff;
}

/* CTA Button */
.cta {
    padding: 24px 48px;
    background-color: #F58802;
    color: white;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta:hover {
    background-color: #e65c00;
}

/* 🔹 Responsive Design */
/* First, add these styles for the hamburger menu */
.hamburger-menu {
    display: none; /* Hidden by default for desktop */
    flex-direction: column;
    /* gap: 6px; */
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: row; /* Change to row to keep logo and hamburger side by side */
        justify-content: space-between;
        padding: 15px 20px;
        position: relative;
        align-items: center;
    }

    .logo {
        /* Adjust logo size if needed */
        max-width: 120px; /* Adjust based on your logo size */
        /* height: 10px; */
    }

    .hamburger-menu {
        display: flex;
        position: static; /* Remove absolute positioning */
        right: auto;
        top: auto;
    }

    /* Hamburger menu animation when active */
    .hamburger-menu.menu-open span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger-menu.menu-open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.menu-open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #FBEDE5;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        margin: 0;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
        gap: 30px;
    }

    .nav-links li {
        margin: 10px 0;
        opacity: 0;
        animation: fadeIn 0.5s ease forwards;
    }

    /* Animation for menu items */
    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Adjust CTA buttons for mobile */
    .cta {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Additional mobile optimization for smaller screens */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        max-width: 100px; /* Further reduce logo size for smaller screens */
    }

    .hamburger-menu span {
        width: 25px; /* Slightly smaller hamburger menu */
    }
}

/* Main Container */
#MainScroll1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color: #FFBE3D;
    height: 600px;
    border-radius: 0px 0px 0px 150px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4% 0%;
    position: relative;
    overflow: hidden;
}
.MobileBanner{
    visibility: hidden;
    display: none;
    }

#MainScroll1TextDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
    z-index: 2;
}
#MainScroll1TextDiv2{
    visibility: hidden;
    display: none;
}
#MainScroll1PhotoDiv {
    position: relative;
    width: 50%;
    /* height: 951px; */
    display: flex;
    /* justify-content: flex-end; */
    display: flex;
    align-items: end;
    flex-direction: column;
    justify-content: center;
}

#MainScroll1PhotoDiv img {
    max-width: 60%;
    height: auto;
    position: relative;
    /* text-align: end; */
    z-index: 2;
    border-radius: 30px;
    animation: float 3s ease-in-out infinite;
}


/* Heading */
#HeadingText h1 {
    color: #000;
    font-size: 80px;
    font-weight: bolder;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Paragraph */
#ParaText {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
}

/* CTA Button */
#CtaBtnText button {
    display: flex;
    width: 140px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #F58802;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#CtaBtnText button:hover {
    background: #d66c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1280px) {
    #HeadingText h1 {
        font-size: 70px;
    }


    #MainScroll1PhotoDiv::before {
        width: 400px;
        height: 400px;
        right: -30px;
        top: -30px;
    }
}

@media (max-width: 1024px) {
    
    #MainScroll1 {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
        border-radius: 0px 0px 100px 100px;
    }
    
    
    #MainScroll1TextDiv{
        visibility: hidden;
        position: absolute;
        max-width: 100%;
        width: 100%;
        align-items: left;
        text-align: left;
        padding-left: 3%;
        padding-bottom: 3%;
    }
    #MainScroll1PhotoDiv{
        max-width: 100%;
        width: 100%;
    }
    #MainScroll1PhotoDiv::before {
        width: 300px;
        height: 300px;
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%);
    }

    #HeadingText h1 {
        font-size: 60px;
    }
}

@media screen and (max-width: 720px){
     /* Main Scroll Section */
    #MainScroll1 {
        flex-direction: column;
        text-align: center;
        height: 300px;
        /* padding: 20px; */
        /* height: 50px; */
        /* height: 50px; */
    }
    #MainScroll1PhotoDiv {
        align-items: center;
 
    }
.DesktopBanner{
    visibility: hidden;
    display: none;
}
.MobileBanner{
    visibility:visible;
    display:block;
    /* height: 10%; */
    }
#MainScroll1PhotoDiv img {
    order: 1;
    height: 300px;
    /* height: 10px; */
}


    #MainScroll1TextDiv {
        /* max-width: 100%; */
        order: 2;    
    }
    /* TEXT HEADING ONLY FOR MOBILE */
    #MainScroll1TextDiv2 {
        /* max-width: 100%; */
        visibility: visible;
        display: flex;
        flex-direction: column;
        padding: 5%;
    }
    #CtaBtnText2 button {
    display: flex;
    width: 100px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #F58802;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#CtaBtnText2 button:hover {
    background: #d66c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}
#HeadingText2 H1{
    font-weight: bolder;
    font-size: 40PX;
}
#ParaText2 p{
    font-size: 16px;
}
#HeadingText h1 {
    font-size: 36px;
}

#ParaText {
    font-size: 14px;
}

}

/* ABOUT US */
#AboutUsDiv {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    padding-right: 1%;
    padding-top: 1%;
    padding-bottom: 1%;
}

.AboutUsPic {
    width: 100%;
    height: 90%;
    /* border-radius: 20px; */
    border-top-right-radius: 60%;
    border-bottom-right-radius: 60%;
    overflow: hidden;
}

.AboutUsPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.AboutUsText {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.AboutUsHeading h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.AboutUsPara p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    #AboutUsDiv {
        grid-template-columns: 1fr 1.5fr;
        gap: 25px;
    }
    
    .AboutUsHeading h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    #AboutUsDiv {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 15px;
    }

    .AboutUsPic {
        max-width: 500px;
        margin: 0 auto;
    }

    .AboutUsHeading h1 {
        font-size: 2rem;
        text-align: left;
    }

    .AboutUsPara p {
        font-size: 0.9rem;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    #AboutUsDiv {
        padding: 15px 10px;
    }

    .AboutUsPic {
        max-width: 100%;
    }

    .AboutUsHeading h1 {
        font-size: 2rem;
        text-align: left;
    }
    .AboutUsPara p {
        text-align: left;
    }
}
/* CTA SECTION */
.Cta-Section {
    background-color: #FFBE3D;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.Cta-Section-Heading {
    color: #000;
    text-align: center;
    font-family: 'Duplet', sans-serif;
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.Cta-Section-Btn {
    display: inline-flex;
    padding: 0.8rem 1.25rem;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #F58802;
    color: #000;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

.Cta-Section-Btn:hover {
    background-color: #e65c00;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .Cta-Section {
        padding: 2rem 1.5rem;
    }
    
    .Cta-Section-Heading {
        font-size: 1.625rem; /* 26px */
    }
}

@media screen and (max-width: 768px) {
    .Cta-Section {
        padding: 1.5rem 1rem;
        min-height: 180px;
        margin: 10% 0;
    }
    
    .Cta-Section-Heading {
        font-size: 1.375rem; /* 22px */
    }
    
    .Cta-Section-Btn {
        padding: 0.7rem 1.1rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .Cta-Section {
        padding: 1.25rem 0.75rem;
        min-height: 160px;
    }
    
    .Cta-Section-Heading {
        font-size: 1.125rem; /* 18px */
        line-height: 1.3;
    }
    
    .Cta-Section-Btn {
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
        margin-top: 1rem;
    }
}

/* WHAT WE DO */

/* Main Container */
.what-we-do {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

/* Heading */
.section-heading {
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    padding: 20px;
}

/* Accordion Container */
.accordion-container {
    display: grid;
    gap: 10px;
    /* border-radius: 50%; */
}

/* Accordion Items */
.accordion-item {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* Header (Always Visible) */
.accordion-header {
    font-size: 20px;
    font-weight: bold;
    color: black;
    text-align: left;
}

/* Active State */
.accordion-item.active {
    background-color: #ff9000;
    color: white;
}

/* Main Content (Initially Hidden) */
.accordion-content {
    display: none;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    background-color: #ff9000;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    color: white;
}

/* Show content when active */
.accordion-item.active .accordion-content {
    display: grid;
}

/* Hide the header when the section is active */
.accordion-item.active .accordion-header {
    display: none;
}

/* Text Section */
.text-section {
    text-align: left;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-content: space-between;
    color: #000;
    padding-right: 21%;
}
.text-section h2{
    font-weight: bolder;
}
/* Image Section */
.image-section{
    display: flex;
    justify-content: right;
}
.image-section img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 0;
    height: 20%;
    /* display: flex; */
    /* margin-left: 200px; */
}

/* Button Styling */
.read-more {
    text-decoration: underline;
    cursor: pointer;
    color: black;
    font-weight: bold;
    margin-top: 10%;
}
.What-We-Do-Card-Line{
    display: flex;
    height: 1px;
    background-color: #000;
    margin-top: 4%;
    margin-bottom: 2%;
}

.read-more:hover {
    color: white;
}

/* STATISTICS SECTION */

#stats-section {
    position: relative;
    height: auto; /* Changed from fixed height */
    height: 700px; /* Minimum height instead of fixed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;    
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.stats-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-image: url("assets/Images/StatsBackground.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: black;
    padding: 40px 20px;
}

.main-stat {
    padding-left: 5%;
    margin-bottom: 40px;
}

.main-stat h1 {
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
}

.main-stat p {
    font-size: 24px;
    margin-top: 10px;
}

.stats {
    display: flex;
    justify-content:space-between;
    margin: 0 auto;
    flex-wrap: wrap; 
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
    /* gap: 20px; Added gap for better spacing */
}

.stat {
    text-align: center;
    /* flex: 1; */
    min-width: 200px; /* Minimum width for each stat */
}

.stat h2 {
    font-size: 32px;
    margin: 5px 0;
}

.stat p {
    font-size: 18px;
}

.count {
    font-size: 3rem;
}

/* Tablet Breakpoint */
@media screen and (max-width: 968px) {
    .main-stat h1 {
        font-size: 60px;
    }

    .count {
        font-size: 2.5rem;
    }

    .stat h2 {
        font-size: 28px;
    }

    .stat p {
        font-size: 16px;
    }
}

/* Mobile Breakpoint */
@media screen and (max-width: 710px) {
    #stats-section {
        min-height: auto;
        padding: 20px 0;
    }

    .stats-content {
        padding: 30px 15px;
    }

    .main-stat {
        padding-left: 0;
        text-align: left;
        margin-bottom: 30px;
        margin-left: 20px;
    }

    .main-stat h1 {
        font-size: 40px; /* Reduced size for mobile */
    }

    .main-stat h1 span[style*="font-size: 10rem"] {
        font-size: 60px !important; /* Override inline style */
    }

    .main-stat p {
        font-size: 18px;
    }

    .stats {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .stat {
        width: 100%;
        text-align: left;
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .stat h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .count {
        font-size: 2rem;
    }

    .stat p {
        font-size: 14px;
        margin: 5px 0;
    }
}

/* Small Mobile Breakpoint */
@media screen and (max-width: 375px) {
    .main-stat h1 span[style*="font-size: 10rem"] {
        font-size: 40px !important;
    }

    .stat h2 {
        font-size: 20px;
    }

    .count {
        font-size: 1.8rem;
    }
}
/* SUPPORT US */

.support-us-section {
    /* text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    position: relative;
    display: flex;
    flex-direction: column; */
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10%; */
}
.support-us-content{
    display: flex;
    flex-direction: column;
    /* padding: 200%; */
}

.support-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 80px;
    color: #333;
    text-align: left;
}

.support-cards-container {
    display: flex;
    justify-content: center;
    /* gap: 30px; */
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0% 10%; */
}

.support-card {
    background-color: white;
    border-radius: 15px;
    border: 10px solid red;
    padding: 50px;
    width: 350px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-10px);
}

.support-icon {
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon img {
    width: 60px;
    height: 60px;
}

.support-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.support-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-card button {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 12px 80px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.support-card button:hover {
    background-color: #e68a00;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .support-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .support-card {
        width: 100%;
        max-width: 650px;
        margin-bottom: 20px;
    }
}
.support-us-section {
    text-align: center;
    padding: 80px 20px 50px; /* Increased top padding to accommodate floating icon */
    background-color: #f9f9f9;
}

.support-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* Important for positioning */
}

.support-card {
    background-color: white;
    border-radius: 15px;
    padding: 80px 30px 30px; /* Increased top padding */
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid #000000; /* Added border */
    position: relative; /* For icon positioning */
}

.support-icon {
    position: absolute;
    top: -40px; /* Half outside the card */
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* Ensures icon is on top */
    border: 2px solid rgb(0, 0, 0); /* Creates a white border effect */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Adds depth */
}

.support-icon img {
    width: 50px;
    height: 50px;
}

/* VIDEO SECTION */

/* VIDEO SECTION */
.video-section {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 50px;
}

.video-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-container h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: left;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .video-section {
        padding: 0 20px;
        margin: 30px auto;
    }

    .video-container h2 {
        font-size: 2rem;
        text-align: center;
    }
}

/* Rest of the CSS remains the same as in the previous example */

/* MEET OUR BUDDIES */
.meet-buddies-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto; /* Centers the section while keeping heading left */
    /* align-items: center; */
    text-align: left;
    padding: 50px 50px;
    /* padding-left: 100px; */
    /* background-color: #f9f9f9; */
    max-width: 1400px;
    /* margin: 0 auto; */

}

.meet-buddies-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    padding-left: 1%;
}

.buddies-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 1% 1%;
}

.buddies-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    /* overflow: hidden; */
}

.buddy-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
    transition: transform 0.3s ease;
}

.buddy-card:hover {
    transform: translateY(-10px);
}

.buddy-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates a square aspect ratio */
}

.buddy-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.buddy-details {
    /* padding: 20px; */
    text-align: left;
    margin-top: 5%;
}

.buddy-details h3 {
    margin-bottom: 10px;
    color: #333;
}

.buddy-details p {
    color: #666;
}

/* Navigation Buttons */
.buddies-carousel-prev,
.buddies-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.buddies-carousel-prev {
    left: 10px;
}

.buddies-carousel-next {
    right: 10px;
}

/* Responsive Design */
/* @media screen and (max-width: 768px) {
    .buddies-carousel-track {
        flex-direction: column;
        align-items: center;
    }

    .buddy-card {
        flex: 0 0 100%;
        max-width: 350px;
    }
} */
 @media screen and (max-width: 768px) {
    .buddies-carousel-container,
    .team-carousel-container {
        overflow: hidden;
        width: 100%;
    }
    .meet-buddies-section h2, .team-carousel-container{
        text-align: center;
    }

    .buddies-carousel-track,
    .team-carousel-track {
        display: flex;
        flex-direction: row; /* Ensure horizontal layout */
        transition: transform 0.5s ease;
        width: 100%;
    }

    .buddy-card,
    .team-member-card {
        flex: 0 0 100%; /* Each card takes full width */
        max-width: 100%;
        margin-right: 0; /* Remove any margins */
    }
}
/* OUR TEAM */

.our-team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}
.our-team-section {
    text-align: left; /* Changed from center to left */
    /* padding: 50px 20px; */
    max-width: 1400px; /* Added to control width */
    margin: 0 auto; /* Centers the section while keeping heading left */
    text-align: left;
    padding: 20px 50px;
    /* padding: 50px 20px; */
    /* background-color: #f9f9f9; */
    background-color: white;
}

.our-team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    padding-left: 0; /* Ensures no unexpected padding */
}

.team-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.team-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.team-member-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
}

.team-member-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates a square aspect ratio */
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.team-member-details {
    /* padding: 20px; */
    padding-top: 5%;
    text-align: center;
    text-align: left;
}

.team-member-details h3 {
    margin-bottom: 10px;
    color: #333;
}

.team-member-details p {
    color: #666;
}

/* Navigation Buttons */
.team-carousel-prev,
.team-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.team-carousel-prev {
    left: 10px;
}

.team-carousel-next {
    right: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Buddies Carousel */
    .meet-buddies-section,
    .our-team-section {
        padding: 20px 10px;
    }

    .buddies-carousel-container,
    .team-carousel-container {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .buddies-carousel-track,
    .team-carousel-track {
        display: flex;
        flex-direction: row;
        transition: transform 0.5s ease;
        width: 100%;
    }

    .buddy-card,
    .team-member-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
        padding: 0 10px; /* Optional: add some spacing */
    }

    /* Navigation Buttons */
    .buddies-carousel-prev,
    .buddies-carousel-next,
    .team-carousel-prev,
    .team-carousel-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.3);
        color: white;
        border: none;
        padding: 10px;
        z-index: 10;
        border-radius: 50%;
    }

    .buddies-carousel-prev,
    .team-carousel-prev {
        left: 10px;
    }

    .buddies-carousel-next,
    .team-carousel-next {
        right: 10px;
    }
}
/* FOOTER */
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

.Footer-Main-Div{
    width: 1400px;
    height: 290px;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 3%;
    background-color: #FFBE3D;

}
.Footer-Cards{
    height: 150px;
    width: 260px;
    /* background-color: #333; */
}
.Footer-Logo{
    width: 150px;
}

/* RESPONSIVE CODE */
/* Mobile-First Responsive Design */

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

.hamburger-menu.menu-open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.menu-open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.menu-open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 768px) {
     /* Navbar  */
    .navbar {
        position: relative;
        display: flex;
        align-items: center;
    }

    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 20px;
        top: 30px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #FBEDE5;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 20px 0;
    }
    /* new code */
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
        position: relative;
        align-items: center;
    }

    /* Show mobile donate button */
    .mobile-donate-btn {
        display: block;
        padding: 12px 24px;
        background-color: #F58802;
        color: white;
        border-radius: 40px;
        font-size: 14px;
        margin: 0 15px;
        white-space: nowrap;
        margin-right: 50px;
        /* margin-top: 1; */
        margin-bottom: 1%;
    }

    /* Adjust navbar layout to accommodate the new button */
    .logo {
        max-width: 120px;
        margin-right: auto; /* Push logo to the left */
    }

    .hamburger-menu {
        display: flex;
        margin-left: 10px; /* Space between donate button and hamburger */
    }

    /* Hide the donate button in the nav-links since we have it in header */
    .nav-links li:nth-last-child(2) {
        display: none;
    }
  
   
    /* Add these new styles for the mobile donate button */




@media screen and (max-width: 480px) {
    .mobile-donate-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
}

/* Rest of your CSS remains the same */

    /* What We Do Section */
    .accordion-content {
        grid-template-columns: 1fr;
    }

    .image-section {
        margin-top: 20px;
    }
    .image-section img{
        /* margin: 0 auto; */
        /* position: relative; */
        display: none;
        left: 0;
        width: 50%;
        order: 1;
    }
    .text-section{
        order: 2;
    }
    /* Statistics Section */
   

    /* Support Us Section */
    .support-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .support-card {
        width: 90%;
        margin-bottom: 20px;
    }
    .support-us-section h2{
        text-align: center;
    }

    /* Footer */
    .Footer-Main-Div {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 20px;
    }

    .Footer-Cards {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* Add tablet-specific styles if needed */
}
