body {
    margin: 0;
    padding: 0;
    background-color: #ECE8E7;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://nmsadguru.org/temp/images/grainy.webp'); /* Updated path */
    background-size: 300px;
    background-repeat: repeat;
    background-attachment: fixed; /* Helps with performance */
    opacity: 0.25;
    pointer-events: none;
    z-index: -1;
}
/* Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5px 8px;
    background: #FFFFFF;
    position: fixed;
    width: 90%;
    top: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6100;
    border-radius: 40px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease-in-out;
}

/* Logo Styling */
.logo {
    font-size: 21px;
    font-weight: 600;
    color: #006200;
    margin-left: 0.5rem;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-grow: 1;
    justify-content: center;
    font-weight: 500;
    margin-left: -6rem;
}

.nav-links li {
    display: inline;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #2E2E2E;
    font-size: 15px;
    transition: color 0.3s ease-in-out;
    display: block;
}

.nav-links a:hover {
    color: #008f00;
}

/* Hamburger Menu - Mobile View */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}



@media (max-width: 899px) {
    .hamburger {
        display: block;
        margin-right: 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border-radius: 10px;
        padding: 10px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .logo {
        
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .navbar {
        width: 80%;
        top: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
    }

    .logo {
        font-size: 20px;
        text-align: left;
    }
}

/* Full-page menu styling */
.full-page-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 6%;
    z-index: 6000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.2s ease-in-out;
    font-family: 'Manrope', sans-serif;
    overflow-y: auto;
    flex-direction: row;
}

/* When menu is open */
.menu-open .full-page-menu {
    opacity: 1;
    visibility: visible;
}

/* Left section (Main menu) */
.menu-content {
    margin-top: -3rem;
    width: 60%;
}

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-content li {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    position: relative;
}

.menu-content li span {
    font-size: 1rem;
    font-weight: lighter;
    color: #aaa;
}

.menu-content a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-content a:hover {
    color: #a3a3ff;
}

.menu-content .year {
    font-size: 1rem;
    color: #2eb872;
}

/* Right section (Sidebar menu) */
.side-menu {
    width: 30%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.side-menu h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.side-menu li {
    margin-bottom: 0.8rem;
}

.side-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
}

.side-menu a:hover {
    color: white;
}

.donate-btn {
    background: #7452DE;
    color: white;
    border: none;
    padding: 0.4rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 10rem;
}

.donate-btn:hover {
    background: #5a3bc4;
}

.donate-btn::after {
    content: "→";
    font-size: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: -2rem;
}

.social-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.extra-menu-items {
    display: none;
}

/* Ensure dropdown is hidden by default */
.dropdown-content {
    display: none;
}


@media (max-width: 899px) {
    .full-page-menu {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 3rem 2rem;
    }

    .extra-menu-items {
        display: block;
        margin-bottom: 0rem;
        text-align: left; /* Align text to the left */
    }

    .extra-menu-items h3 {
        font-size: 1.2rem;
        color: white;
        margin-bottom: 0rem;
    }

    .extra-menu-items ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
    }

    .extra-menu-items li {
        font-size: 30px;
        margin-bottom: 0rem;
    }

    .extra-menu-items a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }

    .extra-menu-items a:hover {
        color: #a3a3ff;
    }

    .menu-content {
        width: 100%;
        text-align: left; /* Align text to the left */
    }
    .menu-content ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
        gap: 1rem;
    }

    .menu-content li {
        font-size: 2rem;
        border-bottom: none;
    }

    .side-menu {
        width: 100%;
        text-align: center;
        margin-top: 2rem;
    }


    .social-links a {
        color: #aaa;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
        margin-top: -5rem;

    }
}

/* Underline effect */
.menu-content li::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Adjustments for smaller screens */
@media (max-width: 899px) {
    .menu-content li::after {
        width: 700%; /* Reduce width for smaller screens */
        bottom: -5px; /* Adjust spacing */
    }
}

@media (max-width: 480px) {
    .menu-content li::after {
        width: 600%; /* Further reduce width */
        bottom: -3px; /* Adjust spacing */
        height: 0.5px; /* Make the line thinner */
    }
}

.donate-button {
    position: fixed;
    bottom: 40px;
    right: 50px;
    background-color: #7452DE;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Manrope', sans-serif;
    z-index: 5000;
}

.donate-button:hover {
    background-color: #7452DE;
    transform: scale(1.05);
}

.arrow {
    font-size: 18px;
    font-weight: bold;
}


/* Main container */
.app-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background image */
.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Content container */
.content-container {
    display: flex;
    align-items: center;
    gap: 26rem;
    padding: 0px;
    margin-top: 17rem;
    margin-left: -5rem;
}

/* Text overlay */
.text-overlay {
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 5vw, 42px);
    line-height: 1.2;
    max-width: 50%;
    padding: 40px 60px;
    text-align: left;
}

/* Card container */
.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
}

/* Button group */
.button-group {
    display: flex;
    gap: 10px;
    font-family: 'Manrope', sans-serif;

}

.info-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
}

/* Card */
.info-card {
    background: #27272785;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    width: 100%;
}

.card-img {
    width: 65px;
    height: 65px;
    border-radius: 5px;
}

.card-text p {
    margin: 0;
    color: white;
    text-align: left;
    margin-top: auto;
}

@media (max-width: 1228px) {
    .content-container {
        flex-direction: row; /* Ensures row layout */
        flex-wrap: wrap; /* Allows wrapping */
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .text-overlay {
        max-width: 60%; /* Adjust width */
        padding: 30px 50px; /* Slightly reduce padding */
        text-align: left;
    }

    .card-container {
        flex-direction: column; /* Keep cards in row */
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        margin-left: 0; /* Reset margin */
        gap: 15px;
    }

    .button-group {
        justify-content: center; /* Center buttons */
        flex-wrap: wrap; /* Allow wrapping */
    }

    .info-card {
        width: auto; /* Allow flexible width */
        max-width: 280px; /* Set max width */
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        margin-left: 1rem;
    }
    .text-overlay {
        max-width: 100%;
    }
    .card-container {
        align-items: flex-start;
        margin-left: 4rem;
    }
    .button-group {
        justify-content: flex-start;
    }
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff7d; /* Semi-transparent */
    backdrop-filter: blur(16px);
    width: 150px;
    border-radius: 8px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    margin-top: 1.5rem;
}

.dropdown-menu li {
    padding: 2px 10px;
}

.dropdown-menu li a {
    color: rgb(0, 0, 0);
    font-size: 15px;
    transition: 0.3s;
    margin-top: 2px;
    margin-bottom: 1px;
}

.dropdown-menu li a:hover {
    color: black;
}

.show {
    display: flex;
}

/* Mobile Menu Icon */
.menu-icon {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.menu-icon .line {
    width: 25px;
    height: 2.1px;
    background-color: #2E2E2E;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-bottom: 0.6rem !important;
}

/* Cross (X) effect when active */
.menu-icon.active .line:nth-child(1) {
    transform: rotate(60deg) translate(5.9px, 5px);
}

.menu-icon.active .line:nth-child(2) {
    transform: rotate(-60deg) translate(5.9px, -5.5px);
}


/* Overlay background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black; /* Semi-transparent black */
    z-index: 5;
    display: none;
}

/* Navbar */


/* Show overlay when menu is open */
.menu-open .overlay {
    display: block;
}

/* Empower Section */
.empower-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0%;
    background-color: transparent;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 30rem;
    margin-left: -4rem;
    margin-top: 5rem;
}

.content-wrapper {
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    gap: 0px;
}



.text-content {
    max-width: 350px;
    z-index: 1000;
}

.text-content h1 {
    font-size: 56px;
    color: #272727;
    line-height: 62px;
}

.text-content p {
    font-size: 1.11rem;
    color: #272727;
    font-weight: 600;
    margin-top: -2rem;
}

.explore-btn {
    display: inline-block;
    margin-top: 0px;
    padding: 12px 24px;
    background-color: #7452DE;
    color: #ECE8E7;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.11rem;
}

.image-content { 
    position: relative;
    max-width: 500px;
    height: 400px; /* Adjust height as needed */
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Farmer {
    width: 190%;
    margin-top: 24rem;
}


.info-boxes {
    position: absolute;
    top: 45%;
    left: 105%;
    transform: translateY(-20%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: auto;
}

.info-box {
    display: flex;
    flex-direction: row; /* Ensures horizontal alignment */
    align-items: center; /* Aligns items vertically */
    background: transparent; /* Transparent background */
    padding: 12px;
    max-width: 380px;
    width: fit-content; /* Adjust width dynamically */
    gap: 10px; /* Adds spacing between icon and text */
    margin-left: -8rem;
}

.info-box-2 {
    display: flex;
    flex-direction: row; /* Ensures horizontal alignment */
    align-items: center; /* Aligns items vertically */
    background: transparent; /* Transparent background */
    padding: 12px;
    border-radius: 8px;
    max-width: 380px;
    width: fit-content; /* Adjust width dynamically */
    gap: 10px; /* Adds spacing between icon and text */
    margin-left: 2.5rem;
}

.icon {
    width: 62px; /* Icon size */
    height: 62px;
    display: flex;
    align-items: center;
}


.info-box p {
    margin: 0; /* Removes default margin */
    font-size: 0.95rem; /* Adjust font size for readability */
    color: #333; /* Ensures text is visible */
    line-height: 1.5;
    max-width: 490px; /* Restricts text width for better alignment */
    width: 19.5rem !important;
    font-weight: 600;
}

.info-box-2 p {
    margin: 0; /* Removes default margin */
    font-size: 0.95; /* Adjust font size for readability */
    color: #333; /* Ensures text is visible */
    line-height: 1.5;
    max-width: 490px; /* Restricts text width for better alignment */
    width: 14rem !important;
    font-weight: 600;
}

@media (max-width: 1228px) and (min-width: 768px) {
    .empower-section {
        padding: 60px 5%; /* Adjust padding for better fit */
        margin-bottom: 20rem;
        margin-left: 0;
    }
    
    .content-wrapper {
        flex-direction: row; /* Stack elements for better fit */
        align-items: center;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
        text-align: left;
    }

    .text-content h1 {
        font-size: 48px;
        line-height: 54px;
    }

    .text-content p {
        font-size: 1rem;
        margin-top: -1rem;
    }

    .explore-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .image-content {
        max-width: 100%;
        height: auto;
    }

    .Farmer {
        width: 100%;
        margin-top: 8rem;
    }

    .info-boxes {
        position: relative;
        top: 4rem;
        left: -5rem;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 2rem;
    }

    .info-box, .info-box-2 {
        max-width: 100%;
        width: 90%;
        margin-left: -10;
        justify-content: center;
        text-align: left;
    }

    .icon {
        width: 50px;
        height: 50px;
    }

    .info-box p, .info-box-2 p {
        font-size: 0.9rem;
        width: auto !important;
    }
}

/* Responsive Styles for screens less than 768px */
@media screen and (max-width: 768px) {
    .empower-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 50px 20px;
        margin-left: 0;
        margin-bottom: 10rem;
        margin-top: 2rem;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        align-items: left;
    }

    .text-content {
        max-width: 100%;
        text-align: left;
        margin-right: auto;
    }

    .text-content h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .text-content p {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .explore-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .image-content {
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .Farmer {
        width: 100%;
        height: auto;
        margin-top: 2rem;
    }

    .info-boxes {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        margin-top: 2rem;
    }

    .info-box, .info-box-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }

    .icon {
        width: 50px;
        height: 50px;
        margin-right: auto;
    }

    .info-box p, .info-box-2 p {
        width: 100% !important;
        font-size: 0.9rem;
        margin-right: auto;
        text-align: left;
    }
}

/* Impact Studies */
.impact-studies {
    background-color: transparent;
    display: flex;
    flex-direction: column; /* Align elements in a vertical column */
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Manrope', sans-serif; /* Font family from Figma */
    text-align: center;
    width: 60%;
    max-width: 900px;
    margin: auto;
}

.impact-studies h2 {
    color: #7452DE;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
}

.impact-studies p {
    font-size: 15px;
    color: #272727;
    margin-bottom: 3rem;
    font-weight: 600;
}

.study-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    padding: 0rem;
    border-radius: 10px;
    position: relative;
    width: 100%;
    gap: 1rem;
}

.study-image {
    width: 45%;
    height: 100%;
    background-color: #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.study-text {
    width: 45%;
    text-align: left;
    margin-right: auto;
}

.study-text h3 {
    font-size: 34px;
    color: #272727;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.study-text h3 img {
    width: 20px;
    margin-right: 10px;
}

.study-text p {
    font-size: 1rem;
    color: #272727;
}

.slider-nav {
    position: absolute;
    bottom: -10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.slider-nav button {
    background-color: white;
    border: none;
    width: 30px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    color:#272727;
    font-weight: 700;
}

.slider-nav button:hover {
    background-color: #d1d1d1;
}

/* Responsive styles for screens under 768px */
@media (max-width: 768px) {
    .impact-studies {
        width: 90%;
        height: auto;
        padding: 3rem 1rem;
    }

    .impact-studies h2 {
        font-size: 24px; /* Slightly smaller heading */
    }

    .impact-studies p {
        font-size: 14px;
        margin-bottom: 2rem;
    }

    .study-container {
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .study-image {
        width: 90%;
        height: auto;
    }

    .study-text {
        width: 90%;
        text-align: center;
        margin: 0;
    }

    .study-text h3 {
        font-size: 28px;
        justify-content: center;
    }

    .study-text h3 img {
        width: 18px;
        margin-right: 8px;
    }

    .study-text p {
        font-size: 0.9rem;
        text-align: left;
    }

    .slider-nav {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }

    .slider-nav button {
        width: 25px;
        height: 35px;
        font-size: 0.9rem;
    }
}


/*WE-EMPOWER section . moving cards*/
.we-empower-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent;
    font-family: 'Manrope', sans-serif; /* Font family from Figma */
    margin-top: 4rem;
}

.empower-text {
    position: absolute;
    font-size: 6rem;
    font-weight: 600;
    color: #7452DE;
    text-align: center;
    transition: transform 0.5s ease;
    line-height: 8rem;
}

.card-we {
    position: absolute;
    width: 300px;
    height: 240px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.card-we img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
/* Default positioning */
.agriculture { top: -10%; left: 2%; position: absolute; }
.water { top: -8%; right: 2%; position: absolute; }
.community { bottom: -10%; left: 4%; position: absolute; }
.education { bottom: -12%; right: 4%; position: absolute; }

/* Responsive adjustments */
@media (max-width: 1200px) {
  .agriculture { top: -15%; left: -7%; }
  .water { top: -16%; right: -7%; }
  .community { bottom: -14%; left: -7%; }
  .education { bottom: -14%; right: -7%; }
}

@media (max-width: 992px) {
    .agriculture { top: -15%; left: -17%; }
    .water { top: -16%; right: -17%; }
    .community { bottom: -15%; left: -17%; }
    .education { bottom: -15%; right: -17%; }
  
}

@media (max-width: 768px) {
  .agriculture, .water, .community, .education {
    width: 45%;
    margin: 15px auto;
  }
  .agriculture { top: -17%; left: -31.5%; }
    .water { top: -18%; right: -31%; }
    .community { bottom: -17%; left: -31%; }
    .education { bottom: -18%; right: -31.5%; }
}

@media (max-width: 576px) {
  .agriculture, .water, .community, .education {
    width: 50%;
    height: 25%;
    margin: 20px 0;
    flex-direction: column;
  }
  .agriculture { top: -19%; left: -45%; }
    .water { top: -6%; right: -45%; }
    .community { bottom: -6%; left: -45%; }
    .education { bottom: -19%; right: -45%; }
}


/* SDGs Section */
.sdg-section {
    text-align: center;
    padding: 10px;
    font-family: 'Manrope', sans-serif; /* Font family from Figma */
    margin-top: 8rem;
}
.sdg-title {
    color: #7452DE;
    font-size: 28px;
    margin-bottom: 0px;
    font-weight: 600;
}
.sdg-description {
    color: #333;
    font-size: 15px;
    margin-bottom: 40px;
    font-weight: 600;
}
.sdg-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
.sdg-track {
    display: flex;
    gap: 20px;
    animation: sdg-scroll 20s linear infinite alternate;
}
.sdg-card {
    flex: 0 0 auto;
    width: 250px;
    padding: 10px;
    color: white;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sdg-card img {
    width: 140px;
    height: 140px;
}
.sdg-card p {
    text-align: left;
    color: #272727;
    font-size: 0.9rem;
    margin-bottom: auto;
}
.sdg-number {
    font-size: 4rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: rgba(39, 39, 39, 0.16);
    margin-top: -1rem;
    margin-right: -1rem;
}
@keyframes sdg-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-80%); }
}
@media (max-width: 768px) {
    .sdg-track {
        animation: sdg-scroll-mobile 17s linear infinite alternate;
    }
    .sdg-card {
        width: 250px;
    }
}
@keyframes sdg-scroll-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-27%); }
}

/* Impact Section */
.impact-section {
    padding: 50px 20px;
    text-align: center;
    font-family: 'Manrope', sans-serif; /* Font family from Figma */
    margin-top: 8rem;
}

.impact-title {
    color: #7452DE;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.impact-subtitle {
    font-size: 15px;
    color: #272727;
    margin-bottom: 35px;
    font-weight: 600;
}

/* Grid Layout */
.impact-grid {
    display: grid;
    grid-template-columns: 3.5fr 6.5fr; /* First row */
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.impact-grid.second {
    grid-template-columns: 6.5fr 3.5fr; /* Second row */
}

/* Impact Cards */
.impact-card,
.impact-card-2 {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    padding: 20px;
    font-weight: bold;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;
}

.impact-card::before,
.impact-card-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Typography */
.impact-number {
    font-size: 5rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
    color: white;
    margin-bottom: -1.2rem;
}

.impact-card p {
    font-size: 15px;
    margin-top: 5px;
    z-index: 2;
    position: relative;
    color: white;
    margin-bottom: -0.7rem;
    font-weight: 600;
}

@media screen and (max-width: 526px) {
    .impact-grid,
    .impact-grid.second {
        grid-template-columns: 1fr;
    }

    .impact-card,
    .impact-card-2 {
        height: 250px; /* Ensure all cards are of the same size */
        text-align: left;
        justify-content: center;
        align-items: left;
    }

    .impact-card p,
    .impact-card-2 p {
        font-size: 14px;
        margin-top: 5px;
        margin-bottom: -8rem !important;
    }
}

/* Annual Report Section */
.annual-report {
    text-align: center;
    padding: 150px 20px;
    font-family: 'Manrope', sans-serif; /* Font family from Figma */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: auto;
    margin-bottom: -1.6rem;
}

.header h2 {
    color: #7452DE;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-left: 9rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .header {
        width: 130%;
        margin-left: -3rem;

    }
    .view-all {
        margin-right: 3rem;
    }
    .header h2 {
        font-size: 1.5rem;
    }
}

.view-all {
    text-decoration: none;
    font-size: 15px;
    color: #272727;
    font-weight: 600;
    text-align: right;
    margin-left: 3rem;

}

.subtext {
    font-size: 15px;
    color: #272727;
    margin: 10px 0 30px;
    font-weight: 600;
}

/* Report Container */
.report-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Wrapper to Stack Card and Content Vertically */
.report-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 340px; /* Matches card width */
}

/* Report Card */
.report-card {
    background: white;
    border-radius: 8px;
    width: 108%;
    overflow: hidden;
    text-align: center;
    padding: 13px;
    display: flex;
    flex-direction: column; /* Ensures elements stack when needed */
    align-items: center;
}

/* Top Section: Text + Image */
.report-top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between; /* Aligns text and image */
}

/* Report Content (Text) */
.report-content {
    text-align: left;
    margin-bottom: -11rem;
}

.report-content h3 {
    font-size: 18.5px;
    color: #272727;
    font-weight: 600;
    text-align: left;
}

/* Image */
.report-card img {
    width: 65%; /* Adjust width as needed */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Year */
.report-year {
    width: 100%; /* Ensures it spans the full width */
    text-align: left; /* Aligns text to the left */
    margin-top: 6px;
}

.report-year h1 {
    font-size: 4.8rem;
    margin: 0;
    margin-bottom: -1rem;
    font-weight: 500;
    color: #272727;
}



/* Extra Content (Placed Directly Below Card) */
.report-extra-content {
    margin-top: 0px;
    text-align: left;
    width: 115%;
}

.report-extra-content p {
    text-align: left;
    width:75%;
    font-size: 12px;
    font-weight: 600;
    color: #272727;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-top: 10px;
}

.view-highlights {
    text-decoration: none;
    background-color: #7452DE;
    color: white;
    padding: 8px 15px;
    border-radius:40px;
    font-size: 14px;
    display: inline-block;
}

.view-highlights i {
    margin-left: 5px;
}

.download {
    text-decoration: none;
    color: #6a2c91;
    margin-left: auto;
}

/* Hover Effects */
.view-highlights:hover {
    background-color: #4e1f6a;
}

.download:hover {
    color: #4e1f6a;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .report-container {
        flex-direction: column;
        align-items: center;
        padding: 0.7rem;
    }
}

/*Partners cards section*/
.partners-section {
    padding: 10px 10px;
    background-color: transparent;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 8rem;
}
.partners-section h2 {
    color: #7452DE;
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: -0.5rem;
}
.partners-section p {
    color: #272727;
    font-size: 15px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}
.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 200%;
    max-width: 1900px; /* Prevent excessive stretching on large screens */
    margin: 0 auto; /* Center the carousel */
}

@media (max-width: 768px) {
    .carousel-container {
        width: 2000%; /* Adjust width for tablets */
    }
}

.report-wrapper-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30px; /* Matches card width */
}

@media (max-width: 480px) {
    .report-wrapper-2 {
        margin: 1rem;
        width: 10rem !important;
    }
}

.carousel {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}
.card {
    display: inline-block;
    width: 10rem !important; /* Making width and height equal */
    height: 8rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.card img {
    max-width: 150%;
    max-height: 100%;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-20%); }
}

/*how we work */
.how-we-work {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    background: transparent;
    margin: 0;
    padding: 0;
}

.how-we-work {
    padding: 40px 20px;
}

.work-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.work-image-container {
    width: 350px;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.image-slider {
    display: flex;
    flex-direction: column;
    transition: transform 1s ease-in-out;
}

.work-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.text-container {
    text-align: left;
    max-width: 400px;
}

.step {
    font-size: 12px;
    color: #666;
    margin-bottom: -0.5rem;
}

.text-container h3 {
    font-size: 36px;
    margin: 5px 0;
    color: #272727;
    font-weight: 700;
}

.dots-container {
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

@media (max-width: 500px) {
    .work-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-container {
        max-width: 100%;
    }
}

/* Museum Section Styling */
.museum-section {
    position: relative;
    height: 100vh; /* Full screen height */
    background: linear-gradient(to bottom, transparent 50%, #4d3d36 55%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Manrope', sans-serif; /* Font family from Figma */
    margin-top: 12rem;
}
.museum-title {
    font-size: 10rem;
    font-weight: 600;
    color: #4F423E;
    position: absolute;
    top: -11rem;
    z-index: 2;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .museum-title {
        font-size: 9rem;
        top: -3rem;
    }
}

@media screen and (max-width: 992px) {
    .museum-title {
        font-size: 7rem;
        top: -2rem;
    }
}

@media screen and (max-width: 768px) {
    .museum-title {
        font-size: 5rem;
        top: -1rem;
    }
}

@media screen and (max-width: 480px) {
    .museum-title {
        font-size: 3rem;
        top: 0rem;
    }
}


/* Image Container (Initial Small Circle) */
.image-container {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    overflow: hidden;
    transition: all 1s ease-in-out;
    z-index: 1;
}

/* Image Styling */
.museum-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Expanded Image Effect */
.image-container.expand {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}

/*Museum section 2*/
.museum-card {
    display: flex;
    align-items: center;
    background: #4d3d36;
    color: #fff;
    border-radius: 10px;
    max-width: 800px;
    margin: auto;
    font-family: 'Manrope', sans-serif; /* Font family from Figma */

}

/* Both image and text will take equal width */
.museum-image-container {
    position: relative;
    flex: 1; /* Takes 50% width */
    max-width: 100%;
    height: 100%;
    overflow: hidden;
}

.museum-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text container takes equal space */
.museum-text {
    flex: 1; /* Takes 50% width */
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers text vertically */
    text-align: left; /* Ensures text is left-aligned */
    padding: 3.2rem; /* Keeps padding for spacing */
}

.museum-text p {
    font-size: 20px;
    line-height: 2rem;
    color: #FFFFFF;
    font-weight: 600;
    padding-left: 2rem;
    padding-right: 2.5rem;
}


.read-more {
    background: #4d3d36;
    border: 1px solid white; /* Add a visible white border */
    padding: 8px 12px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 70px;
    margin-top: 10px;
    font-weight: 400;
    margin-left: 2rem;
}

.read-more:hover {
    background: white;
    color:#4d3d36 ;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 710px) {
    .museum-card {
        flex-direction: column;
        text-align: center;
        margin: 1.5rem;
    }

    .museum-image-container, .museum-text {
        max-width: 100%;
        text-align: left;
    }
     
    .museum-image-container {
        margin-top: 2rem;
    }

    .museum-text {
        
        margin-top: 15px;
    }
}


/* Women Empowerment Section */
.empowerment-section {
    position: relative;
    font-family: 'Manrope', sans-serif;
    text-align: center;
    margin-top: 10rem;
    padding: 0 2rem; /* Adds padding for smaller screens */
}

.subheading {
    color: #7452DE;
    font-size: clamp(20px, 3vw, 28px); /* Scales based on screen size */
    font-weight: 700;
    text-transform: uppercase;
}

.heading {
    color: #272727;
    font-size: clamp(26px, 4vw, 38px); /* Responsive font size */
    font-weight: 700;
    margin-top: -1rem;
}

.image-container-2 {
    position: relative;
    width: 100%;
    max-width: 1500px; /* Reduced max-width for better fit */
    margin: auto;
}

.main-image {
    width: 100%;
    object-fit: cover;
    margin-top: -3rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .empowerment-section {
        margin-top: 5rem;
    }

    .subheading {
        font-size: 28px;
    }

    .heading {
        font-size: 36px;
        margin-top: -1rem;
    }

    .main-image {
        margin-top: -2rem;
    }
}

@media (max-width: 768px) {
    .empowerment-section {
        margin-top: 4rem;
        padding: 0 1.5rem;
    }

    .subheading {
        font-size: 28px;
    }

    .heading {
        font-size: 34px;
        margin-top: -0.5rem;
    }

    .main-image {
        margin-top: -1rem;
    }
}

@media (max-width: 480px) {
    .empowerment-section {
        margin-top: 3rem;
        padding: 0 1rem;
    }

    
    .heading {
        font-size: 32px;
        margin-top: 0;
    }

    .subheading {
        font-size: 28px;
    }

    .main-image {
        margin-top: 0;
    }
}


/* Director's Desk section */
.profile-container {
    display: flex;
    align-items: center; /* Align items vertically */
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    justify-content: flex-start; /* Ensure alignment to the left */
    width: fit-content; /* Prevent unnecessary stretching */
}

.profile-container img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    text-align: left; /* Ensure text is left-aligned */
}

/* Ensure no auto-centering */
.container, .parent-container {
    display: flex;
    justify-content: flex-start;
}

.profile-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #7452DE;
    margin: 0;
}

.profile-info p {
    font-size: 12px;
    color: #535353;
    margin: 0;
}



/*Before Footer Form */
.form-sec {
    font-family: 'Manrope', sans-serif;
    margin-bottom: 8rem;
}

/* Flexbox container */
.form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    background-color: white !important;
    padding: 2rem;
    border-radius: 10px;
}

/* Ensure .footer-left and .form-container have equal flex properties */
.footer-left {
    flex: 1;
    max-width: 40%;
}


h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #272727;

}


.form-container {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 1000px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .form-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .form-container {
        max-width: 100%;
    }
}
h3 {
    margin-bottom:7px;
}

p {
    font-size: 0.85rem;
    color: #272727;
    font-weight: 500;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures inputs are centered properly */
    width: 100%; /* Ensures form takes full width */
}

input, select {
    width: 100%;
    max-width: 200%; /* Prevents overflow issues */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #EFEFEF;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #EFEFEF;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    input, select {
        width: 100% !important; /* Ensures rule overrides other styles */
    }

    form {
        margin-top: -4rem;
        margin-left: -4rem;
        width: 200%;
    }
}


input::placeholder {
    color: #272727;
    opacity: 1; /* Ensures full visibility */
}

/* For better browser compatibility */
input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #272727;
}

input::-ms-input-placeholder { /* Microsoft Edge */
    color: #272727;
}


button {
    background-color: #7452DE;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    margin-right: auto;
}

button:hover {
    background-color: #5a3bb5;
}

#captcha-container {
    margin-top: 15px;
}



/* Footer section */
footer {
    background: url('./images/ghass 2.png') no-repeat center bottom; /* Ensures the image stays at the bottom */
    background-size: 100% auto; /* Ensures full width while keeping the aspect ratio */
    background-attachment: fixed; /* Fixes the image at the bottom */
    padding: 40px;
    color: #272727;
    text-align: center;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    footer {
        background-size: contain; /* Ensures the entire image is visible */
        background-position: center bottom;
    }
}

@media (max-width: 768px) {
    footer {
        background-size: cover; /* Allows the image to fill the container */
        background-position: center bottom;
    }
}

@media (max-width: 480px) {
    footer {
        background-size: contain; /* Ensures it remains proportionate */
        background-position: center bottom;
        background-attachment: scroll; /* Fix for mobile scrolling issues */
    }
}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items at the top */
    flex-wrap: nowrap; /* Prevent wrapping on large screens */
    max-width: 1200px;
    margin: auto;
    font-family: 'Manrope', sans-serif;
}

.footer-left {
    text-align: left;
    width: 20%;
    flex-shrink: 0; /* Prevent shrinking */
}

@media (max-width: 768px) {
    .footer-left {
        margin-bottom: 2rem !important;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-grow: 1; /* Take up remaining space */
    text-align: left;
    gap: 1rem;
    font-size: 13px;
    margin-bottom: 13.5rem;
}

.footer-links a {
    text-decoration: none; /* Remove underline */
    color: #2E2E2E; /* Set link color */
}

.footer-links a:hover {
    color: #006200; /* Optional: Slightly darker color on hover */
}


/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align items */
        text-align: center;
    }

    .footer-left {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-links {
        justify-content: center;
        text-align: center;
        margin-left: -1.5rem !important;
        text-align: left;

    }

    .footer-column {
        margin: 8px !important;
    }
}

.footer-logo {
    max-width: 11rem;
}
.contact-info {
    margin: 5px 0;
    font-size: 13px;
}

.footer-column {
    margin: 5px;
    min-width: 150px;
}
.footer-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin: 3px 0;
    text-decoration: none;
    cursor: pointer;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent white background */
    padding: 10px 20px;
    border-radius: 20px; /* Rounded edges */
    font-size: 14px;
    width: 80%;
    margin: auto;
    backdrop-filter: blur(5px); /* Subtle blur effect */
    font-family: 'Manrope', sans-serif;

}

.footer-bottom p {
    margin: 0;
    color: #333; /* Dark gray text color */
    font-weight: 500;
    font-size: 13px;

}

.footer-bottom a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;

}
