:root {
    --primary-color: #1A5276;
    /* Green - for main branding */
    --secondary-color: #194763;
    /* Blue - for secondary elements */
    --accent-color: #194763;
    /* Orange - for CTAs and highlights */
    --text-color: #fff;
    --black-color: #2C3E50;
    /* Dark blue-gray for text */
    --light-bg: #F8F9FA;
    /* Light background */
    --border-color: #E8E8E8;
    /* Light border color */
    --blue-shade-color: #1a53763f;
}

.visions {
    flex-direction: row-reverse;
}

#add-cart-detail {
    margin-right: 0.1vw;
    background-color: var(--primary-color);
    height: 100%;
    width: 8vw;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

#add-cart-detail:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
}

#add-cart-detail h2 {
    /* margin-top: 1vw; */
    /* text-align: center; */
    font-weight: 500;
    color: var(--text-color);
    font-family: Oswald, sans-serif;
}

#add-cart-detail h3 {
    /* margin-top: 1vw; */
    text-align: center;
    /* font-weight: 500; */
    font-size: 30px;
    color: var(--text-color);
    font-family: lato, sans-serif;
    width: 50%;
    border-bottom: 1px solid var(--border-color);
}

#add-cart-detail h5 {
    /* margin-top: 1vw; */
    text-align: center;
    /* font-weight: 500; */
    font-size: 1rem;
    color: var(--text-color);
    font-family: nunito, sans-serif;
    /* width: 50%; */
    /* border-bottom: 1px solid var(--border-color); */
}





#doante-now:hover {
    cursor: pointer;
}

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

a {
    text-decoration: none;
}

#total-zakat-show-div {
    margin-top: 5vw;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2vw;
}

.check-box3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    /*bottom: 250px !important;*/
    display: none;
}

.zakat-imgbar-h2 {
    margin-bottom: 30px;
}

.address-p {
    padding-right: 200px;
}

.header-logo {
    cursor: pointer;
}

.header2-logo {
    cursor: pointer;
}

.footerinner2 h3:hover {
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section Css */
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: absolute;
    left: 10%;
    top: 30%;
    max-width: 500px;
    background: var(--blue-shade-color);
    /* Using primary green */
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
}

.slide-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 18px;
    font-family: nunito, sans-serif;
    margin-bottom: 20px;
    line-height: 1.5;
}

.slide-content .btn {
    font-family: nunito, sans-serif;
    display: inline-block;
    padding: 12px 20px;
    margin-right: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    /* Orange for primary buttons */
    color: #fff;
}

.btn-primary:hover {
    background: white;
    color: var(--black-color);
    /* Darker orange on hover */
}

.btn-secondary {
    background: #fff;
    color: var(--black-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-color);

}

/* Circle Arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: var(--blue-shade-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
    color: white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--blue-shade-color);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    /* Orange for active bullet */
    opacity: 1;
}

/* navbar start */
nav {
    height: 8.6vw;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Two-Tier Header Design */
.main-header {
    display: none;
    /* Hide by default, show on mobile */
}

.header-top {
    background-color: #284C65;
    padding: 15px 20px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    width: 40px;
    height: 40px;
}

.header-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.donate-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.donate-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.header-bottom {
    background-color: white;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    min-height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.header-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.menu-section,
.search-section {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    position: relative;
    z-index: 1001;
}

.search-icon {
    position: absolute;
    right: 0;
    color: #666;
    font-size: 18px;
    pointer-events: none;
}

.menu-text {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}

.mobile-menu-toggle,
.mobile-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #666;
    font-weight: bold;
}


.mobile-search-toggle {
    color: #666;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.search-input {
    border: none;
    border-bottom: 2px solid var(--primary-color);
    padding: 8px 30px 8px 0;
    font-size: 14px;
    width: 200px;
    outline: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

.search-input:focus {
    border-bottom-color: var(--primary-color);
}

.search-input::placeholder {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

/* Hide desktop nav by default */
.desktop-nav {
    display: none;
}

/* Tablet Styles (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .cards-container {
        width: 90%;
        margin: 0 auto;
    }

    .card {
        width: 22vw;
        height: 35vw;
    }

    .card img {
        height: 15vw;
    }

    .card-content {
        margin-top: 12vw;
        height: 20vw;
        padding: 1.5vw;
    }

    .card-content h2 {
        font-size: 1.4vw !important;
    }

    .card-content button {
        font-size: 0.8vw;
        height: 2.8vw;
        width: 8vw;
    }

    .card-content a {
        font-size: 0.8vw;
    }

    .card-footer {
        font-size: 0.9vw;
        padding: 1vw;
    }
}

/* Quick Donate Section Styles */
main {
    max-width: 95%;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

main h4 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    /* margin-bottom: 30px; */
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

main>div {
    margin-bottom: 20px;
}

main select,
main input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    background: white;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

main select:focus,
main input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

main select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

main input {
    font-weight: 500;
}

main input::placeholder {
    color: #999;
    font-style: italic;
}

main button {
    width: 100%;
    padding: 18px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* margin-top: 10px; */
}

main button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

main button:active {
    transform: translateY(0);
}

/* Show desktop nav on larger screens */
@media (min-width: 769px) {
    .main-header {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu.active {
    left: 0;
}

.mobile-nav-header {
    background-color: var(--primary-color);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.mobile-nav-header h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin: 0;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-content {
    padding: 20px;
    padding-top: 50px;
    width: 100%;
    box-sizing: border-box;
    /* flex: 1; */
    display: flex;
    flex-direction: column;
}

.mobile-nav-section {
    margin-bottom: 30px;
}

.mobile-nav-section h4 {
    color: var(--primary-color);
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.mobile-nav-section h4:hover {
    color: var(--secondary-color);
    background-color: rgba(26, 82, 118, 0.05);
}

.mobile-nav-section h4.active {
    background-color: rgba(26, 82, 118, 0.1);
    border-radius: 8px;
}

.mobile-nav-section h4 i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 25px;
    color: var(--primary-color);
    margin-left: 10px;
    flex-shrink: 0;
}

.mobile-nav-section h4.active i {
    transform: rotate(180deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-links.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-nav-links.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-links.active li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-links.active li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-links.active li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-links.active li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-links.active li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav-links.active li:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-nav-links.active li:nth-child(8) {
    transition-delay: 0.45s;
}

.mobile-nav-links.active li:nth-child(9) {
    transition-delay: 0.5s;
}

.mobile-nav-links.active li:nth-child(10) {
    transition-delay: 0.55s;
}

.mobile-nav-links a {
    color: var(--black-color);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-nav-links i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.mobile-nav-actions {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--primary-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.mobile-donate-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    text-align: center;
}

.mobile-donate-btn:hover {
    background-color: var(--secondary-color);
}

.mobile-nav-contact {
    margin-top: 15px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-contact p {
    color: var(--black-color);
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif;
}

.mobile-nav-contact a {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

.navinner1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    height: 100%;
    background: white;
    /* box-shadow: 2px 2px 2px 2px rgba(23, 22, 22, 0.267); */
    /* Primary green */
}


.navinner1 img {
    width: 100%;
    height: 100%;
}

.navinner2 {
    font-family: Oswald, sans-serif;
    width: 40%;
    height: 100%;
    background: var(--light-bg);
    /* Light background */
}

.navinner2 i {
    font-size: 1vw;
    opacity: 1 !important;
    color: var(--primary-color);
}

.navinner2>div {
    display: flex;
    width: 100%;
    height: 50%;
}

.navinner2 h3 {
    font-weight: 600;
    font-size: 1.7vw;
    color: var(--black-color);
}

.appeals h3 {
    display: flex;
    color: var(--black-color);
    gap: 1px;
    margin-bottom: 0.5vw;
    justify-content: center;
    align-items: center;
}

.appeals {
    justify-content: center;
    gap: 4vw;
    align-items: end;
}

.appeals i {
    margin-top: 0.5vw;
    margin-left: 0.4vw;
}

#about {
    margin-right: 2vw;
}

.appeals h3:hover {
    cursor: pointer;
    color: var(--primary-color);
}

.navinner3 button:hover {
    background-color: var(--secondary-color);
    /* Darker green */
    cursor: pointer;
}

.navinner3 i {
    font-size: 1.1vw;
}

.navinner2>div>div {
    display: flex;
    justify-content: space-between;
    padding: 0px 2.3vw;
    width: 100%;
}

.navinner2>div>div>div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 30vw;
}

#btn {
    display: none;
    margin-left: 5vw;
}

.inputdiv {
    justify-content: start !important;
}

.navinner2 input::placeholder {
    color: #666666;
}

.navinner2 input {
    font-family: Oswald;
    font-size: 1.3vw;
    width: 52%;
    border: none;
    border-bottom: 0.2vw solid var(--primary-color);
    background: transparent;
}

.navinner2 p {
    padding: 2px;
    font-size: 1.3vw;
    opacity: 0.6;
    position: relative;
}

/* .navinner2 p::after {
    content: "";
    position: absolute;
    right: 0;
    height: 1.5vw;
    border-right: 1px solid #666666;
} */

.navinner2 small {
    font-size: 0.8vw;
    opacity: 0.6;
}

.navinner2 small:hover {
    cursor: pointer !important;
    color: var(--primary-color);
}

.navinner3 {
    cursor: pointer;
    font-family: lato, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 19%;
    height: 100%;
    margin-bottom: 0px !important;
    background-color: var(--blue-shade-color);
    color: white;
}

.navinner3 p {
    font-size: 0.8vw;
    opacity: 0.9;
    color: var(--primary-color);
}

.navinner3 a {
    text-decoration: none;
    opacity: 0.9;
    /* color: white; */
    color: var(--primary-color);
}

.secondnav button:hover {
    cursor: pointer;
    background-color: var(--secondary-color);
}

main button:hover {
    cursor: pointer;
    background-color: var(--secondary-color);
}

.navinner3 strong {
    letter-spacing: 0vw;
    font-weight: 700;
    font-size: 1vw;
    color: white;
}

header>div button {
    width: 15vw;
    height: 3.5vw;
    border: none;
    color: white;
    font-size: 1vw;
    font-family: Lato, sans-serif;
    font-weight: 900;
    background-color: var(--primary-color);
    /* Orange button */
    color: white;
    position: absolute;
    z-index: 9999;
    top: 95%;
    right: 2%;
}

.navinner3 button {
    background-color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8vw;
    height: 3.3vw;
    letter-spacing: 0.1vw;
    border: none;
    line-height: 16px;
    font-family: Lato, sans-serif;
    width: 85%;
    color: white;
}

.with-icon {
    color: #666666;
    outline: none;
    position: relative;
}

#search-icon {
    position: absolute;
    left: 45%;
    color: #666666;
    font-size: 1vw;
    font-weight: 600;
    top: 50%;
    transform: translateY(-50%);
}

#btn {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #F8F9FA;
    outline: none;
    color: black;
    border: none;
}

#inputOuter {
    position: absolute;
    height: 30vw;
    width: 48vw;
    top: 3.2vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99999999;
    overflow-y: scroll;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%) !important;
    border: 1px solid var(--border-color);
}

#inputOuter1 {
    position: absolute;
    height: 37vw;
    width: 48vw;
    top: 3.2vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99999999;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%) !important;
    border: 1px solid var(--border-color);
}

#inputOuter div,
#inputOuter1>div {
    margin-left: 5%;
    width: 90%;
}

#inputOuter h3,
#inputOuter1 h3 {
    font-family: Oswald, sans-serif;
    color: var(--black-color);
    font-size: 1.5vw;
}

#inputOuter h6,
#inputOuter1 h6 {
    margin-top: 1vw;
    font-family: Oswald, sans-serif;
    color: var(--black-color);
    font-size: 1vw;
    font-weight: 400;
}

#inputOuter button,
#inputOuter1 button {
    font-size: 0.8vw;
    margin-top: 0.4vw;
    padding: 0.5vw 1.3vw;
    color: white;
    background-color: var(--primary-color);
}

#inputOuter button:hover {
    background-color: #1E6B23;
}

#inputOuter1 button:hover {
    background-color: #1E6B23;
}

#inputOuter1 button i,
#inputOuter button i {
    font-size: 1.1vw;
    color: white !important;
    font-weight: 700;
}

#inputOuter h5,
#inputOuter1 h5 {
    margin-top: 1vw;
    padding: 0.3vw 0vw;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    font-family: lato, sans-serif;
    font-size: 0.8vw;
    text-transform: uppercase;
    letter-spacing: 0.2vw;
    color: var(--black-color);
}

.sarchinput {
    margin-top: 1vw;
    font-size: 1vw;
    border-bottom: 2px solid var(--primary-color);
    outline: none;
    position: relative;
    width: 43.2vw !important;
    background: transparent;
}

.search-input3 i {
    position: absolute !important;
    right: 0vw !important;
    top: 0.8vw;
    font-size: 1.3vw;
    z-index: 9909090;
    color: var(--primary-color);
}

.search-input3 {
    width: 100%;
    position: relative;
}

.inputOuter {
    display: flex;
    height: 12vw;
    margin-top: 1vw;
}

.inputOuter>div {
    height: 10vw;
    width: 30%;
}

.h2 {
    padding: 0.4vw 0vw;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    font-family: Oswald, sans-serif;
    font-size: 1.6vw;
    text-transform: uppercase;
    letter-spacing: 0.2vw;
}

.h2:hover {
    cursor: pointer;
    color: var(--primary-color) !important;
    transition: all 0.4s ease-in-out;
}

.h2.green {
    color: var(--primary-color);
}

.h2.pink {
    color: #C2185B;
    /* Deep pink */
}

.h2.blue {
    color: var(--secondary-color);
}

#btn i {
    color: var(--black-color);
    font-size: 1.4vw;
}

#btn h3 {
    font-family: lato, sans-serif;
    color: var(--black-color);
    font-size: 1vw;
}

header {
    height: 100%;
    width: 100%;
    background-color: var(--light-bg);
}

header>div {
    height: 50vw !important;
    width: 100%;
}

header>div img {
    margin-top: 0.1%;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%) !important;
}

#icons {
    height: 5vw;
    width: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    gap: 0.7vw;
    right: 1vw;
    z-index: 9999;
}

#icons>div {
    padding: 0.5vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0px 0px 2px 2px rgba(128, 128, 128, 0.267);
}

#icons i {
    font-size: 1.7vw;
    color: var(--primary-color);
}

#icons i:hover {
    color: black;
}

/* navbar css end */

/* Quick Donate */
main {
    height: 9vw;
    display: flex;
    top: 3vw;
    background-color: var(--light-bg);
    z-index: 999;
    justify-content: center;
    gap: 1vw;
    align-items: center;
    font-family: lato, sans-serif;
    border-bottom: 1px solid var(--border-color);
}

main select {
    width: 18vw;
    height: 3.5vw;
    font-family: lato, sans-serif;
    padding: 0vw 1vw;
    font-size: 0.8vw;
    appearance: none;
    background-image: url(images/scroll-down.png);
    background-position: right 1vw center;
    background-size: 0.9vw;
    background-repeat: no-repeat;
    outline: none;
    border: 1px solid var(--primary-color);
    background-color: white;
}

main input {
    width: 18vw;
    height: 3.5vw;
    font-family: lato, sans-serif;
    padding: 0vw 1vw;
    font-size: 0.8vw;
    outline: none;
    border: 1px solid var(--primary-color);
    background-color: white;
}

main button {
    width: 15vw;
    height: 3.5vw;
    border: none;
    color: white;
    font-size: 0.8vw;
    background-color: var(--primary-color);
}

main h4 {
    font-family: Oswald;
    font-weight: 400;
    font-size: 1.8vw;
    color: var(--black-color);
}

/* give your zakat css */
section {

    margin-top: 3vw;
    height: 45vw;
    position: relative;
    background-color: var(--text-color);
}

.secimg {
    position: absolute;
    top: -2vw;
    z-index: 9999;
    width: 30vw;
    left: 36%;
}

.thirdimg {
    width: 5vw;
    margin-left: 48.5%;
    margin-top: 5vw;
}

section h2 {
    padding-top: 2vw;
    font-family: oswald;
    opacity: 0.8;
    text-transform: uppercase;
    font-size: 2vw;
    text-align: center;
    color: var(--black-color);
}

section p {
    margin-top: 1vw;
    line-height: 1.7vw;
    font-family: lato;
    text-align: center;
    padding: 0vw 3vw;
    font-size: 1vw;
    color: var(--black-color);
}

.cards-container {
    width: 85%;
    height: 55%;
    margin-left: 9%;
    position: relative;
    overflow: visible !important;
}

.cardSwiper {
    width: 100%;
    height: 100%;
    margin-top: 2vw;
}

.cards {
    display: flex;
    margin-top: 2vw;
    transition: transform 0.8s ease-in-out;
    gap: 1.5vw;
    justify-content: center;
}

.card {
    width: 16.7vw;
    height: 27vw;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.card img {
    width: 100%;
    top: 0vw;
    position: absolute;
    height: 12vw;
    object-fit: cover;
}

.card-content {
    margin-top: 9vw;
    height: 16vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1vw;
    text-align: center;
    color: white;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
}

.card-content.red {
    background: #C2185B;
    /* Deep pink */
}

.card-content.red:hover {
    background: #8C0E41;
    transition: all 0.3s ease-in-out;
}

.card-content.green:hover {
    background: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.card-content.green {
    background: var(--primary-color);
}

.card-btn.green {
    color: var(--primary-color);
}

.card-footer.green {
    color: var(--primary-color);
}

.card-btn.red {
    color: #C2185B;
}

.card-footer.red {
    color: #C2185B;
}

.card-content h2 {
    font-size: 1.7vw !important;
    color: white !important;
}

.card-btn:hover {
    color: var(--black-color);
}

.card-btn {
    height: 2.5vw;
    width: 7vw;
}

.card-btn i {
    font-size: 1vw;
}

.card-content button {
    background: white;
    border: none;
    font-family: Lato, sans-serif;
    font-size: 0.7vw;
    font-weight: 900;
    margin-bottom: 0.5vw;
    cursor: pointer;
}

.card-content a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 0.7vw;
}

.card-content h2 {
    font-size: 1.7vw;
}

.card-footer {
    background: white;
    text-align: center;
    padding: 0.8vw;
    font-size: 0.8vw;
    font-weight: bold;
    color: var(--black-color);
    border-top: 2px solid var(--border-color);
}

.card h2 {
    font-size: 1.8vw;
    font-family: Oswald, sans-serif !important;
}

.card {
    position: relative;
    font-family: lato, sans-serif;
}

/* Card Slider Navigation */
.card-next,
.card-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px !important;
    height: 50px !important;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-next {
    right: -25px;
    right: 3vw !important;
}

.card-prev {

    /* z-index: 9999999099 !important; */
    left: 3vw !important;
}

.card-next::after,
.card-prev::after {
    font-size: 18px !important;
    font-weight: bold;
    color: white;
}

.card-next:hover,
.card-prev:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

/* .swiper {
    overflow: visible !important;
    width: 80% !important;
} */

.card-pagination {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.card-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.7;
    width: 12px;
    height: 12px;
    margin: 0 5px;
}

.card-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* More Ways To Give Css */
.aside2 img {
    height: 100%;
    width: 100%;
}

.aside2 {
    height: 35vw;
    width: 100%;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.aside2 h2 {
    padding-top: 4vw;
    /* margin-top: 2vw; */
    font-family: Oswald, sans-serif;
    font-size: 2.6vw;
    text-align: center;
    color: var(--black-color);
}

.cards2 {
    margin-top: 2vw;
    height: 22vw;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cards2>div {
    height: 25vw;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1vw;
    padding: 2vw 0vw;
    text-align: start;
    /* background: white; */
    margin: 0 0.5vw;
    /* border-radius: 8px; */
    /* border: 1px solid var(--border-color); */
}

.cards2 img {
    width: 3vw;
    height: 3vw;
}

.cards2 a {
    color: var(--secondary-color);
    text-decoration: none;
}

.cards2 a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

.cards2 h3 {
    color: var(--primary-color);
    font-family: nunito, sans-serif;
    font-weight: 700;
    font-size: 1.3vw;
}

.cards2 p {
    font-family: lato, sans-serif;
    font-weight: 400;
    color: var(--black-color);
    font-size: 1vw;
    line-height: 1.8vw;
}

.inform {
    text-align: center;
    font-family: Oswald, sans-serif;
    color: var(--black-color);
    font-size: 1vw;
}

/* AMWT Project & More */
.box2 {
    /* margin-top: 2vw; */
    background-color: var(--light-bg);
    height: 6vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    border-bottom: 1px solid var(--border-color);
}

.box2 p {
    background-color: #FFFFFF;
    height: 3vw;
    width: 8vw;
    font-family: lato, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.box2 p:hover {
    color: var(--accent-color);
    background-color: #f5f5f5;
}

.box2 h2 {
    margin-right: 1vw;
    font-family: lato, sans-serif;
    font-weight: 900;
    color: var(--black-color);
    font-size: 1.5vw;
}

/* footer 1 css */
.footer {
    height: 19vw;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 2vw;
    background-color: var(--light-bg);
}

.footer>div {
    margin: 0 0.5vw;
    /* padding: 0vw 2vw; */
}

.footer h2 {
    font-family: nunito, sans-serif;
    font-size: 1.3vw;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1vw;
}

.footer a {
    color: var(--primary-color) !important;
}

.footer input {
    position: absolute;
    height: 100%;
    width: 100%;
    padding-left: 0.5vw;
    border: 1px solid var(--border-color);
    background: white;
}

.inputfooter {
    height: 2.5vw;
    display: flex;
    width: 20vw;
    margin-top: 2vw;
    align-items: center !important;
    position: relative;
}

.inputfooter>div {
    height: 100%;
}

.input-div {
    width: 87%;
}

.input-button {
    width: 13%;
}

.footer button {
    font-size: 0.7vw;
    height: 100%;
    width: 13%;
    color: white;
    font-weight: 900;
    border: none;
    background-color: var(--primary-color);
}

.footer input::placeholder {
    font-size: 0.9vw;
    color: var(--black-color);
    font-weight: 700;
    font-family: lato, sans-serif;
}

.footer p {
    font-family: nunito, sans-serif;
    color: var(--black-color);
    font-weight: 700;
    font-size: 0.7vw;
    line-height: 1vw;
    opacity: 0.8;
}

.footerinner1 {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    width: 20%;
    padding: 0vw 1vw;
}

.footerinner2,
.footerinner3 {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 0.5vw;
}

.footerinner2 h3,
.footerinner3 h3 {
    font-family: Lato, sans-serif;
    font-weight: 500;
    color: var(--black-color);
    font-size: 0.8vw;
}

.footerinner1 img {
    width: 8vw;
}

.footerinner4 {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1vw;
}

.footerinner4 h3 {
    font-family: Lato, sans-serif;
    font-weight: 900;
    color: var(--black-color);
    font-size: 1.5vw;
}

.footerinner5 {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1vw;
}

.footerinner5 small {
    font-family: lato, sans-serif;
    font-size: 1vw;
    color: var(--black-color);
    font-weight: bold;
}

.footerinner5 h5 {
    font-family: lato, sans-serif;
    letter-spacing: 0.2vw;
    color: var(--black-color);
    font-size: 1vw;
}

.footerinner5 h4 {
    font-family: lato, sans-serif;
    color: var(--black-color);
    font-size: 1vw;
}

.footerinner5 i {
    font-family: lato, sans-serif;
    font-size: 1.5vw;
    color: var(--primary-color);
}

.footerinner5 i:hover {
    color: var(--accent-color);
    cursor: pointer;
}

.donatesec {
    margin-top: 2vw;
    height: 11vw;
    width: 100%;
    padding: 1vw 0vw;
}

.donatesec>h2 {
    font-family: Oswald, sans-serif;
    font-size: 3vw;
    text-align: center;
    opacity: 0.8;
    text-transform: uppercase;
}

.donatesec>h3 {

    font-family: Lora, sans-serif;
    font-size: 1.5vw;
    text-align: center;
    opacity: 0.9;
    font-weight: 600;
}

/* footer last css */
footer {
    height: 2.5vw;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 0vw 8vw;
}


footer p {
    font-family: nunito, sans-serif;
    font-size: 0.7vw;
}

footer>div {
    padding: 1vw;
}

.privacy-policy {
    display: flex;
}

.privacy-policy p {
    padding: 0vw 1vw;
    border-right: 1px solid var(--border-color);
}



.zakatimg {
    width: 3.5vw;
}

.regularimg {
    margin-left: 2vw;
    width: 9.5vw;
}


.foooterlastinner {
    display: flex;
    align-items: center;
    justify-content: space-around;
}



footer a {
    color: var(--primary-color);
}

footer a:hover {
    color: var(--accent-color);
}

/* second Navbar Css */
.secondnav i {
    color: var(--primary-color) !important;
}

.secondnav {
    width: 100%;
    display: none;
    height: 3vw;
    position: fixed;
    top: 0;
    background-color: white;
    z-index: 999999;
    font-family: oswald;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    gap: 1.5vw;
    align-items: center;
}

.secondnav button {
    height: 2.8vw;
    width: 10vw;
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-family: Lato, sans-serif;
    font-weight: 700;
    font-size: 0.8vw !important;
}

.secondnav button i {
    color: #fff !important;
    font-size: 1.1vw;
}

.img {
    height: 100% !important;
    width: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.img>img {
    height: 80%;
    width: 80%;
}

.border {
    font-family: Oswald, sans-serif;
    font-size: 0.9vw;
    font-weight: 700;
    height: 100%;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    color: var(--black-color);
}

.secondnav small {
    font-size: 0.9vw !important;
    color: var(--black-color);
}

.secondnav small:hover {
    color: var(--primary-color);
    cursor: pointer !important;
}

.secondnav>div {
    display: flex;
    align-items: center !important;
    justify-content: center;
    height: 100%;
    border-right: 1px solid var(--border-color);
}

.secondnav h5 {
    display: flex;
    align-items: center !important;
    justify-content: center;
    color: var(--black-color);
}

.secondnav h5:hover {
    color: var(--primary-color);
    cursor: pointer;
}

/* AboutUS Css */
.AboutUS {
    height: 50vw;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    font-family: nunito, sans-serif;
    background-color: var(--light-bg);
}

.AboutUS>div {
    height: 100%;
    width: 50%;
    padding-top: 5vw;
    padding-left: 2vw;
}

.aboutinner1 {
    position: relative;
}

.aboutimg1 {
    margin-left: 28%;
    height: 80%;
    border-radius: 20px;
    width: 65%;
    object-fit: cover;
}

.aboutimg2 {
    height: 30%;
    border-radius: 20px;
    width: 45%;
    left: 53%;
    bottom: 15vw;
    position: absolute;
}

.side-colour {
    position: absolute;
    height: 40%;
    top: 13vw;
    left: 28%;
    z-index: -1;
    width: 5vw;
    background-color: var(--primary-color);
}

.trophy {
    height: 7vw;
    width: 13vw;
    background-color: white;
    position: absolute;
    bottom: 20%;
    border-radius: 20px;
    left: 60%;
    padding: 1vw;
    position: relative;
    border: 1px solid var(--border-color);
}

.trophy h2 {
    color: var(--primary-color);
    font-size: 2.6vw;
}

.trophy img {
    height: 3vw;
    position: absolute;
    right: 2vw;
    top: 1.5vw;
}

.trophy p {
    font-family: Lato, sans-serif;
    font-size: 0.8vw;
    opacity: 0.5;
    color: var(--black-color);
}

.aboutinner2 {
    padding-right: 10vw;
}

/*.aboutinner2>div {*/
    /* padding-right: 2vw; */
/*    height: 25%;*/
/*}*/

.aboutinner2 h5 {
    font-family: nunito, sans-serif;
    font-size: 0.8vw;
    color: var(--primary-color);
    font-weight: 700;
}

.aboutinner2 h2 {
    font-size: 2vw;
    color: var(--black-color);
}

.aboutinner2 p {
    font-size: 16px;
    opacity: 0.6;
    margin-top: 1vw;
    line-height: 1.5vw;
    color: var(--black-color);
}

.check-arrow {
    margin-top: 1vw;
    display: flex;
    justify-content: space-between;
}

.check-arrow h6 {
    font-size: 0.9vw;
    margin-top: 0.5vw;
    opacity: 0.7;
    color: var(--black-color);
}

.check-arrow i {
    color: var(--primary-color);
    font-weight: 400;
    opacity: 1;
    margin-right: 0.3vw;
    font-size: 1.2vw !important;
}

.review {
    margin-top: 2vw;
    display: flex;
    gap: 10vw;
}

.review img {
    object-fit: cover;
    height: 3vw;
    width: 3vw;
    position: absolute;
    border-radius: 50%;
}

.review h4 {
    font-size: 2vw;
    color: var(--black-color);
}

.review h5 {
    color: var(--black-color);
    opacity: 0.6 !important;
}

.review>div {
    position: relative;
}

.review-img1 {
    z-index: 1;
}

.review-img2 {
    z-index: 2;
    left: 2vw;
}

.review-img3 {
    left: 4vw;
    z-index: 4;
}

.review-img4 {
    z-index: 6;
    left: 6vw;
}

.aboutinner2 button {
    margin-top: 2vw;
    background-color: var(--primary-color);
    height: 3vw;
    width: 7.5vw;
    border-radius: 5px;
    font-size: 0.8vw;
    color: white;
    border: none;
}

.aboutinner2 button:hover {
    background-color: var(--secondary-color);
    cursor: pointer !important;
}

/* faq section css */
.section {
    position: relative;
    /* background: url("bg-image.jpg") center/cover no-repeat; */
    padding: 60px 20px;
    font-family: nunito, sans-serif;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
}

.faq-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    z-index: 1;
}

/* Left side */
.faq-left h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black-color);
}

.accordion {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    font-size: 1vw;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    outline: none;
    transition: background 0.3s ease, color 0.3s ease;
    color: var(--black-color);
}

.accordion-header:hover {
    background: #f3f3f3;
}

.accordion-header.active {
    background: var(--primary-color);
    color: #fff;
}

.accordion-header span {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active span {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.active {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.accordion-content p {
    padding: 20px 20px 20px;
    color: var(--black-color);
    transform: translateY(-5px);
    transition: all 0.3s ease 0.1s;
}

.accordion-content.active p {
    transform: translateY(0);
}

.accordion-content.open {
    padding-top: 10px;
}

/* Right side images */
.faq-right {
    position: relative;
}

.faq-right .big-img {
    width: 75%;
    margin-left: 3vw;
    border-radius: 15px;
    border: 4px solid var(--border-color);
    overflow: hidden;
}

.faq-right .big-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq-right .small-img {
    position: absolute;
    top: 40px;
    right: -70px;
    width: 300px;
    border-radius: 15px;
    border: 5px solid #fff;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-right .small-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq-color {
    height: 30vw;
    width: 1.2vw;
    border-radius: 15px;
    background-color: rgba(42, 125, 46, 0.2);
    /* Primary green with transparency */
    position: absolute;
    top: 3vw;
    z-index: -1;
    right: 2vw;
}

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

    .faq-right {
        text-align: center;
        align-items: center;
    }

    .faq-right .small-img {
        position: static;
        margin: 20px auto 0;
    }
}

/* counter section */
.stats-section {
    background: var(--blue-shade-color);
    /* Light green background */
    padding: 50px 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 50px auto;
    font-family: nunito, sans-serif;
}

.stat-box {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1vw;
    color: var(--black-color);
}

.stat-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    position: relative;
}

.stat-icon::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed #fff;
    border-radius: 50%;
}

.stat-icon i {
    font-size: 42px;
    color: #fff;
    z-index: 1;
}

.stat-number {
    font-size: 2vw;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.stat-text {
    font-size: 16px;
    color: var(--black-color);
}

@media (max-width: 768px) {
    .stats-section {
        flex-direction: column;
        gap: 40px;
    }
    #icons{
        display: none;
    }
}

/* infobar css */
/* Main infobar styling */


/* infobar css */

/* infobar2 */
/* Main infobar2 styling */
.infobar2 {
    position: absolute;
    top: 8.6vw;
    margin-left: 25.2vw;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99999999;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}

.infobar2 h3 {
    font-family: nunito, sans-serif;
    border-bottom: 2px solid var(--primary-color);
}

.infobar2 a {
    text-decoration: none;
    color: var(--black-color);
}

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

.infobar {
    position: absolute;
    /* width: 12vw; */
    top: 8.6vw;
    margin-left: 50.5vw;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99999999;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1vw;
    padding: 2vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}


.infobar3 {
    position: absolute;
    top: 8.6vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    height: 30vw;
    width: 82vw;
    margin-left: 8.4vw;
    background: white;
    box-shadow: var(--card-shadow);
    border-radius: 12px;
    padding: 30px;
    font-family: nunito, sans-serif;
    display: flex;
    gap: 30px;
    z-index: 1000;
    border-top: 4px solid var(--primary-color);
}

.infobar3.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.infobar h3 {
    font-family: nunito, sans-serif;
    font-size: 16px;
    border-bottom: 2px solid var(--primary-color);
}

.infobar a {
    text-decoration: none;
    color: var(--black-color);
}

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





/* infobar2 */

.clickable-item {
    text-decoration: none;
    color: var(--black-color);
}





.info3inner1 {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.upcoming-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.volunter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 25px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 5px 15px var(--blue-shade-color);
}

.volunter h2 {
    font-size: 1.2vw;
    font-weight: 700;
}

.volunter p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.events-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.events {
    height: 20vw;
    background: var(--light-bg);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}



.eventinner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.eventinner:last-child {
    margin-bottom: 0;
    padding: 1vw;
    border-radius: 15px;
    background-color: var(--blue-shade-color);
    border-bottom: none;
}

.eventinner i {
    font-size: 20px;
    color: var(--primary-color);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.eventinner h3 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.events small {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
    padding-left: 52px;
}

.events a {
    /* color: var(--secondary-color) !important; */
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

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

/* Right Section */
.info2inner2 {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upcoming-mega-events {
    background: var(--blue-shade-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.upcoming-mega-events:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.upcoming-mega-eventinner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.upcoming-mega-eventinner i {
    font-size: 24px;
    color: var(--primary-color);
    background: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upcoming-mega-eventinner h3 {
    font-size: 18px;
    color: var(--text-dark) !important;
    font-weight: 600;
}

.upcoming-mega-events p {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    line-height: 1.5;
    padding-left: 65px;
}

.upcoming-h2 {
    color: white !important;
}

/* Demo trigger button */
.nav-trigger {
    position: relative;
    display: inline-block;
    margin: 50px;
}

.trigger-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trigger-btn:hover {
    background: #1E6B23;
    transform: translateY(-2px);
}

.info2inner1>div {

    height: 100%;
    border-right: 1px solid rgba(128, 128, 128, 0.572);
    width: 33.33333333333333%;
}



.info2inner2 {
    margin-left: 10%;
    height: 40%;
    width: 80%;
    border-top: 1px solid gray;
    display: flex;

}

/* .info2inner2>div {

    height: 100%;
    width: 25%;
    padding: 1vw 2vw;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1vw;

} */

.info2inner2 h2 {
    color: black;
    opacity: 0.8;
    text-transform: uppercase;
    font-family: oswald, sans-serif;
    font-weight: 600;
    font-size: 2.2vw;

}

.info2inner2 h4 {
    color: black;
    opacity: 0.8;
    text-transform: uppercase;
    font-family: oswald, sans-serif;
    font-weight: 600;
    font-size: 1.3vw;

}

.info2inner2 p {
    font-size: 1vw;
}

.info2inner2 button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    font-size: 0.8vw;
    text-transform: uppercase;
    padding: 0.6vw 1vw;
}

.info2inner2 button:hover {
    background-color: #057e6c;
    cursor: pointer;
}


/* Main infobar3 styling - matching previous infobar */
/* Main infobar3 styling - same as previous but with different classes */

.getinvolved-inner1 {
    display: flex;
    width: 70%;
    gap: 3vw;
    padding-right: 2vw;
    border-right: 1px solid rgba(128, 128, 128, 0.2);
}

.getinvolved-col1,
.getinvolved-col2 {
    flex: 1;
}

.getinvolved-col3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

/* Headings with icons */
.getinvolved-col1 h3,
.getinvolved-col2 h3,
.getinvolved-col3 h3 {
    font-family: Oswald, sans-serif;
    font-size: 1.4vw;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 0.8vw;
    display: flex;
    align-items: center;
    gap: 0.5vw;
}

.getinvolved-col1 h3 i,
.getinvolved-col2 h3 i,
.getinvolved-col3 h3 i {
    color: var(--primary-color);
    font-size: 1.3vw;
}

/* Links styling */
.getinvolved-col1 p,
.getinvolved-col2 p,
.getinvolved-col3 p {
    font-family: Lato, sans-serif;
}

.getinvolved-col1 a,
.getinvolved-col2 a,
.getinvolved-col3 a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1vw;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.getinvolved-col1 a:hover,
.getinvolved-col2 a:hover,
.getinvolved-col3 a:hover {
    color: var(--primary-color);
}

/* Right section - upcoming projects */
.getinvolved-upcoming {
    width: 30%;
    padding-left: 2vw;
}

.getinvolved-upcoming h2 {
    font-family: Oswald, sans-serif;
    font-size: 1.8vw;
    color: var(--black-color);
    margin-bottom: 1.5vw;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5vw;
}

.getinvolved-project {
    background: var(--light-bg);
    padding: 1.5vw;
    border-radius: 8px;
    margin-bottom: 1.5vw;
    border-left: 4px solid var(--accent-color);
}

.getinvolved-project h4 {
    font-family: Oswald, sans-serif;
    font-size: 1.2vw;
    color: var(--black-color);
    margin-bottom: 0.8vw;
    display: flex;
    align-items: center;
    gap: 0.5vw;
}

.getinvolved-project h4 i {
    color: var(--primary-color);
}

.getinvolved-project p {
    font-family: Lato, sans-serif;
    font-size: 0.9vw;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1vw;
}

.getinvolved-project button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6vw 1.2vw;
    border-radius: 4px;
    font-size: 0.8vw;
    font-family: Lato, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3vw;
}

.getinvolved-project button:hover {
    background: #1E6B23;
    transform: translateX(3px);
}

.getinvolved-project button i {
    font-size: 1vw;
}

/* Color variations for different sections */
.welfare i {
    color: #2A7D2E !important;
}

.disabilities i {
    color: #D35400 !important;
}

.women-empowerment i {
    color: #C2185B !important;
}

.education i {
    color: #1A5276 !important;
}

.medical i {
    color: #27AE60 !important;
}

.cataract i {
    color: #2980B9 !important;
}

.judiciary i {
    color: #8E44AD !important;
}

.water i {
    color: #3498DB !important;
}

.polio i {
    color: #E74C3C !important;
}



/* ddddddddddddddddddddddd */



.events h3 {
    font-size: 0.8vw;
    font-family: nunito, sans-serif;
    opacity: 0.8;
}

.eventinner {
    display: flex;
    gap: 1vw;
    /* justify-content: center; */
}


.info3inner1 button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    font-size: 1vw;
    text-transform: uppercase;
    padding: 0.9vw 1vw;
}


/* 

/* Contact-us Form  */
.Contact-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Lato', sans-serif;
}

.Contact-us h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.Contact-us>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

.formbox {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.form-input,
.form select,
.form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-input:focus,
.form select:focus,
.form textarea:focus {
    border-color: #2a7d2e;
    outline: none;
}

.form textarea {
    height: 150px;
    resize: vertical;
}

.label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.check-box {
    margin: 20px 0;
}

.check-box>div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.check-box input {
    margin-right: 10px;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.recaptcha-box input {
    margin-right: 10px;
}

.recaptcha-logo {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.recaptcha-logo img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form button:hover {
    background: var(--secondary-color);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 600;
}

.contact-info h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-weight: 600;
}

.contact-info h4 {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
    font-weight: 600;
}

.contact-info p {
    margin: 5px 0;
    color: #666;
    line-height: 1.5;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.member {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .formbox {
        flex-direction: column;
    }

    .form,
    .contact-info {
        width: 100%;
    }
}





/* zakat calculator */


.image-zakat {
    height: 15vw;
    width: 100%;
    background-size: cover;
    background-image: url();
    background-repeat: no-repeat;
    background: linear-gradient(rgba(20, 151, 199, 0.44), rgba(50, 148, 218, 0.312)),
        url(https://images.unsplash.com/photo-1573975589049-52dac668ce21?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) center/cover no-repeat;
    position: relative;
    opacity: .8;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #C5DAC7; */

}


.image-zakat h3 {
    /* color: var(--primary-color); */
    font-size: 3vw;
    font-family: nunito, sans-serif;
    color: #fff;
    font-weight: 900;
}

.zakat-imagebar {
    height: 30vw;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1vw;
    align-items: start;
    background-color: #F1F1F1;
}

.zakat-imagebar>div {
    margin-top: 2vw;
    height: 80%;
    width: 80%;
    background-color: #fff;
}

.zakat-imagebar img {
    height: 100%;
    width: 100%;
}

.zakat-img-div {
    position: relative;
    height: 75% !important;
}

.zakat-imagebar button {
    height: 3vw;
    font-family: Lato, sans-serif;
    font-size: 0.9vw;
    color: #fff;
    width: 13vw;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 45%;
    left: 15vw;
}

.zakat-imagebar button:hover {
    background-color: #056456;
    transition: all 0.4s ease-in-out;
}

.zakat-imagebar button a {
    text-decoration: none !important;
}

.zakat-text {
    padding: 3.5vw 3.5vw;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.zakat-text h3 {
    font-size: 1.2vw;
    font-family: Lora;
    font-weight: 400;
}

.zakat-text p {
    font-family: Lato, sans-serif;
    font-size: 0.9vw;
    line-height: 1.4vw;
    opacity: 0.7;
}

.zakat-text h5 {
    border: 1px solid black;
    opacity: 0.5;
    width: 100%;
}

.zakat-text a {
    /* color: #057e6c !important; */
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

.zakat-text .view {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

.h21 {
    border: none;
    height: 5vw;
    background-color: #F1F1F1;
    font-family: Oswald, sans-serif;
    font-size: 1.5vw;
    text-align: center;
    letter-spacing: 0vw;
}

.h21 span {
    color: var(--primary-color);
    text-decoration: underline;
}

.zakat-already {
    height: 20vw;
    width: 100%;
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zakat-already>div {
    height: 70%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    justify-content: center;
    border: 1px solid rgba(128, 128, 128, 0.277);
}

.zakat-already>div h2 {
    font-family: Oswald, sans-serif;
    font-size: 2vw;

}

.zakat-already>div input {
    font-family: Lato, sans-serif;
    width: 28vw;
    padding: 0.2vw 2.5vw;
    height: 3vw;
    font-size: 1vw;
    outline: none;
    border: 0.2vw solid rgba(128, 128, 128, 0.277);
}

.zakat-already>div button {
    font-family: Lato, sans-serif;
    height: 3vw;
    outline: none;
    width: 14vw;
    font-size: 1vw;
    color: #fff;
    background-color: var(--primary-color);
}

.zakat-already>div>div {
    display: flex;
    gap: 1vw;
    position: relative;
}

.zakat-already>div span {
    position: absolute;
    font-size: 1vw;
    top: 32%;
    font-family: lato;
    left: 2%;
}

.zakat-already>div input::placeholder {
    color: var(--primary-color);
}

.calculator {
    height: 55vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculator>div {
    border: 1px solid rgba(128, 128, 128, 0.277);
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculator>div>div {
    width: 100%;
}

.calc-inner1 {
    height: 8vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1vw;
}

.calc-inner1>h3 {
    text-align: center;
    font-family: Oswald, sans-serif;
    font-weight: 600;
    font-size: 2vw;
}

.calc-inner1>div {
    display: flex;
    justify-content: center;
    /* gap: 5vw; */
}

.calc-inner1>div>div {
    width: 32%;
    display: flex;
    gap: 1vw;
    border-right: 1px solid rgba(128, 128, 128, 0.277);
    text-align: center;
    align-items: center;
    justify-content: center;
}

.calc-inner1 h6 {
    color: var(--primary-color);
    font-family: Lato, sans-serif;
    font-size: 1vw;
}

.calc-inner1 p {
    font-family: Lato, sans-serif;
    font-weight: 700;
    font-size: 1vw;
}

.calc-inner1 span {
    font-weight: 400;
    font-size: 0.8vw;
}

.calc-inner2 {
    height: 35vw;
    display: flex;
    justify-content: space-around;
}

.calc-inner2>div {
    height: 100%;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.calc-inner2 h3 {
    font-family: Lato, sans-serif;
    letter-spacing: 0.2vw;
    opacity: 0.8;
    font-size: 1vw;
    text-transform: uppercase;
}

.calc-inner2 select {
    appearance: none;
    width: 100%;
    height: 3.2vw;
    border-radius: 3px;
    font-family: Lato, sans-serif;
    font-size: 0.9vw;
    padding: 0vw 1vw;
    border: 1px solid rgba(128, 128, 128, 0.277);
    background-image: url(images/scroll-down.png);
    background-position: right 1vw center;
    background-size: 0.9vw;
    background-repeat: no-repeat;
    background-color: #FAFAFA;
    outline: none;
}

.calc-inner2>div>div {
    height: 3.2vw;
    border: 1px solid rgba(128, 128, 128, 0.277);
    display: flex;
    background-color: #FAFAFA;
    font-family: Lato, sans-serif;
    font-weight: 700;
    color: rgb(102, 102, 102);
}

.calc-text {
    width: 70%;
    font-size: 0.9vw;
    display: flex;
    justify-content: space-between;
    padding: 0vw 1vw;
    align-items: center;
    border-right: 1px solid rgba(128, 128, 128, 0.277);
}

.calc-input {
    width: 30%;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.calc-input input {
    background-color: #FAFAFA;
    width: 100%;
    padding: 0vw 0.5vw;
    font-size: 1vw;
    outline: none;
    color: var(--primary-color);
    /* height: 100%; */
}

.calc-input input::placeholder {
    color: var(--primary-color);

}

.calc-inner2inner {
    padding: 1.5vw 0vw;
    justify-content: start !important;
    gap: 1.1vw;
}

.calc-inner3 {
    margin-top: 1vw;
    height: 6vw;
    width: 100% !important;
    border-top: 1px solid rgba(128, 128, 128, 0.277);
    border-bottom: 1px solid rgba(128, 128, 128, 0.277);
    display: flex;
    align-items: center;
    font-family: Lato, sans-serif;
}

.calc-inner3>div {
    border-right: 1px solid rgba(128, 128, 128, 0.277);
    height: 40%;
    width: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
}

.calc-inner3 h3 {
    font-size: 1vw;
}

.calc-inner3 h2 {
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--primary-color);
}

.calc-inner4 {
    height: 8vw;
    width: 80%;
    display: flex;
    align-items: center;
    font-family: Lato, sans-serif;
}

.calc-inner4>div {
    height: 80%;
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.calc-inner4 button {
    height: 50%;
    font-size: 1vw;
    font-weight: 500;
    width: 90%;
}

.calc-btn1 {
    background-color: var(--blue-shade-color);
}

.calc-btn1:hover {
    cursor: pointer;
    color: var(--border-color);
    background-color: var(--secondary-color) !important;
}

.calc-btn2 {
    color: #fff;
    background-color: var(--primary-color);
}

.calc-btn2:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
}

.calc-card {
    height: 35vw;
    width: 100%;
    background-color: #F1F1F1;
}

.calc-imgbar {
    background-color: #F1F1F1;
    height: 28vw;
    width: 100%;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 1vw;

}

.chotadiv {
    height: 92%;
    width: 40%;
    background-color: #fff;
    position: relative;
    padding: 3vw 2vw;
}

.imgbar-img1 {
    height: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0.2;
    z-index: -1;
    right: 0;
}

.donate-bar {
    opacity: 0;
    visibility: hidden;
    transform: translatex(10px);
    transition: all 0.3s ease;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    height: 100%;
    width: 30%;
    padding: 0.5vw 2vw;
    background-color: #ECECEC;
    overflow: scroll;
}



.donate-bar>h3 {
    font-family: Oswald, sans-serif;
    font-size: 1.5vw;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 1px solid black;
}

.donate-bar>h3>i {
    font-weight: 900 !important;
}

.donate-bar>h4 {
    font-family: Lato, sans-serif;
    font-size: 1.3vw;
    margin-top: 1vw;
    font-weight: 400;
}

#zakat-calc {
    margin-top: 1vw;
    display: flex;
    flex-direction: column;
}

#add-another {
    background-color: var(--blue-shade-color) !important;
}

#checkout {
    background-color: var(--primary-color) !important;
    color: var(--text-color);
}

#zakat-calc a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 3.5vw;
}

#zakat-calc>div {
    padding: 1vw 1.5vw;
    height: 9vw;
    width: 100%;
    display: flex;
    /* gap: 1vw; */
    border-bottom: 1px solid gray;
    justify-content: space-between;
    background-color: white;
}

#zakat-calc p {
    font-family: Lato, sans-serif;
    font-size: 1vw;
}

#zakat-calc>div>div {
    display: flex;
    flex-direction: column;
    /* al */
    justify-content: space-around;
}

#zakat-calc h3 {
    font-family: Oswald, sans-serif;
    font-size: 1.5vw;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
}

#zakat-calc>div>div>div {
    display: flex;
}

#zakat-calc>div>div>div div {
    width: 2vw;
    height: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-size: 1.2vw; */
    font-family: Lato, sans-serif;
    border: 0.2vw solid var(--primary-color);
}

#zakat-calc>div>div>div div i {
    color: #FFFFFF;
    font-weight: 900;
}

#minus:hover {
    background-color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

#minus i:hover {
    color: #fff !important;
    transition: all 0.4s ease-in-out;
}

#plus:hover {
    background-color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

#plus i:hover {
    color: #fff !important;
    transition: all 0.4s ease-in-out;
}

.abc {
    margin-top: 1vw;
    /* float:inline-end; */
}

.all-calc {
    margin-top: 1vw;
    padding: 1vw 1.5vw;
    height: 9vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}

.all-calc h3 {
    font-family: Oswald, sans-serif;
    font-size: 1.5vw;
    text-transform: uppercase;
    font-weight: 600;
}

.all-calc>div {
    display: flex;
    justify-content: space-between;
}

.all-calc button {
    height: 3vw;
    width: 49%;
    font-size: 0.8vw;
    font-family: Lato, sans-serif;
    font-weight: 700;
}

#cancel {
    z-index: 99999999999999;
    position: fixed;
    right: 10%;
    border-radius: 10px;
    cursor: pointer;
    /* height: 3vw;
    width: 4vw; */

    /* background-color: #ECECEC; */

}

#cancel i {
    font-size: 2vw;
    font-weight: 900;
}

/* Donation Cart Styles */
.zakat-pay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: white;
    /* border-radius: 8px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.zakat-pay>div:first-child {
    flex: 1;
}

.zakat-pay h3 {
    font-family: Oswald, sans-serif;
    font-size: 1.2vw;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--black-color);
}

.zakat-pay p {
    font-family: Lato, sans-serif;
    font-size: 1vw;
    color: #666;
    margin-bottom: 10px;
}

.counter-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.counter-box .minus,
.counter-box .plus {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.counter-box .minus:hover,
.counter-box .plus:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.counter {
    font-family: Lato, sans-serif;
    font-size: 1vw;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.zakat-pay .amount {
    font-family: Oswald, sans-serif;
    font-size: 1.3vw;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.zakat-pay .remove {
    font-family: Lato, sans-serif;
    font-size: 0.9vw;
    color: #e74c3c;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.zakat-pay .remove:hover {
    color: #c0392b;
}

#add-another:hover {
    background-color: var(--primary-color) !important;
    color: var(--text-color);
    cursor: pointer;
}

#checkout:hover {
    background-color: var(--secondary-color) !important;
    cursor: pointer;
}


.chotadiv {
    height: 92%;
    width: 40%;
    background-color: #fff;
    position: relative;
    padding: 3vw 2vw;
}

.imgbar-img1 {
    height: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0.2;
    z-index: -1;
    right: 0;
}

.chotadiv>h2 {
    font-family: Oswald, sans-serif;
    font-size: 4vw;
    color: var(--primary-color);
    line-height: 4vw;
    text-transform: uppercase;
}

.chotadiv>h3 {
    margin-top: 0.5vw;
    font-family: Oswald, sans-serif;
    height: 4vw;
    padding-left: 0.6vw;
    width: 40%;
    background-color: var(--blue-shade-color);
    font-size: 2.5vw;
    color: var(--primary-color);
}

.chotadiv>button {
    height: 3vw;
    width: 28%;
    font-family: Lato, sans-serif;
    font-size: 0.9vw;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    margin-top: 2vw;

}

.chotadiv>button:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
}

.chotadiv i {
    font-size: 1vw;
}

.baradiv {
    background-color: #fff;
    height: 95%;
    width: 40%;
    padding: 3vw 3vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.baradiv>h3 {
    font-family: Oswald, sans-serif;
    font-size: 2vw;

}

.baradiv>p {
    font-family: Lato, sans-serif;
    color: rgb(116, 116, 116);
    line-height: 1.5vw;
    font-size: 0.9vw;
}

.baradiv>div {
    border-top: 1px solid rgba(128, 128, 128, 0.254);
}

.baradiv a {
    color: var(--primary-color);
    cursor: pointer;

}

.baradiv>h6 {
    color: var(--primary-color);
    font-size: 0.9vw;
    font-weight: 400;
    font-family: Lato, sans-serif;
}

.chotadiv2 {
    height: 85%;
    width: 40%;
    padding: 3vw 3vw;
    background-color: #fff;
}

.baradiv2 {
    padding: 3vw 3vw;
    height: 89%;
    width: 40%;
    background-color: #fff;
}

.calc-imgbar2 h2,
.calc-imgbar3 h2 {
    font-family: Oswald, sans-serif;
    font-size: 2vw;
    text-transform: uppercase;
}

.calc-imgbar2 p,
.calc-imgbar3 p {
    font-family: Lato, sans-serif;
    color: rgb(116, 116, 116);
    line-height: 1.3vw;
    margin-top: 1vw;
    font-size: 0.9vw;
}

.calc-imgbar2 {
    background-color: #F1F1F1;
    height: 20vw;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1vw;
}

.calc-imgbar3 {
    background-color: #F1F1F1;
    height: 23vw;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1vw;
}

.calc-imgbar3 img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.chotadiv3 {
    height: 85%;
    width: 40%;
    background-color: #fff;
}

.baradiv3 {
    padding: 3vw 3vw;
    height: 89%;
    width: 40%;
    background-color: #fff;
}

.calc-imgbar4 {
    background-color: #F1F1F1;
    height: 40vw;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1vw;
}

.baradiv4 {
    height: 95%;
    width: 40%;
    background-color: #fff;
}

.chotadiv4 {
    height: 92%;
    width: 40%;
    padding: 5vw 3vw;
    background-color: #fff;
}

.baradiv4 img {
    height: 100%;
    width: 100%;
}

.chotadiv4>h4 {
    font-family: Lora, sans-serif;
    font-weight: 400;
    font-size: 1.2vw;
}

.chotadiv4>h5 {
    font-family: Lato, sans-serif;
    margin-top: 1.2vw;
    font-size: 0.9vw;
    line-height: 1.2vw;
    color: rgb(116, 116, 116);
    font-weight: 700;

}

.chotadiv4>p {
    font-size: 1vw;
    word-spacing: 0.5vw;
    line-height: 1.4vw;
    opacity: 0.7;
    margin-top: 1vw;
}

/* About Page Styles */

.about-header {
    height: 50vh;
    background: linear-gradient(rgba(36, 231, 19, 0.5), rgba(28, 59, 36, 0.5)),
        url('https://images.unsplash.com/photo-1506905925346-14b1e0d0d6b6?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.about-header-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-header-content p {
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-main-content {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.about-image-section {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.05);
}

.about-content-section {
    padding: 20px 0;
}

.about-content-wrapper {
    max-width: 500px;
}

.about-subtitle {
    margin-bottom: 15px;
}

.about-subtitle span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}

.about-content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
}

.about-leadership {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.leader-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.leader-info strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-color);
    font-family: 'Lato', sans-serif;
}

li>strong {
    color: var(--black-color);
    list-style: none;
}

.leader-info span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

/* Roman Urdu Section */
.roman-urdu-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 40px;
}

.roman-urdu-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.roman-urdu-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Lato', sans-serif;
}

.roman-urdu-leadership {
    display: flex;
    gap: 30px;
}

.leader-info-urdu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.leader-info-urdu strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-color);
    font-family: 'Lato', sans-serif;
}

.leader-info-urdu span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

/* Mission Section */
.mission-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.mission-content>p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

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

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-point i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.mission-point h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.mission-point p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Lato', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    #cancel i {
        font-size: 20px;
    }

    .about-header-content h1 {
        font-size: 2.5rem;
    }

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

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

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

    .about-leadership,
    .roman-urdu-leadership {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .mission-point {
        flex-direction: column;
        text-align: left;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .about-header {
        height: 40vh;
    }

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

    .about-main-content {
        padding: 40px 0;
    }

    .mission-section {
        padding: 40px 0;
    }

    .roman-urdu-section {
        padding: 20px;
    }

    .swiper-button-next {
        display: none !important;
    }

    .swiper-button-prev {
        display: none !important;
    }

}


/* ongoing project page */


.imagesection {
    margin-top: 5vw;
    height: 45vw;
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
}

.imagesection-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    /* border: 1px solid red; */

}

.imagesection img {
    width: 80%;
    border-radius: 15px;
    height: 80%;
    object-fit: cover;
}

.imagesection-text {
    padding: 5vw;
    width: 50%;
}


.imagesection-text ul{
    margin-left: 10px;
}

.imagesection h3 {
    /* text-align: center; */
    font-family: nunito, sans-serif;
    color: var(--primary-color);
    font-size: 2.5vw;
    font-weight: 700;
    margin-top: 1vw;

}

.imagesection p {
    margin-top: 1vw;
    font-family: nunito, sans-serif;
    font-size: 1.2vw;
    line-height: 2vw;
}




/* Add Cart inforamtion section */

.information {
    height: 100vw;
    display: flex;
}

.informationinner1 {
    height: 100%;
    /* overflow: scroll; */
}

.informationinner1 {
    width: 40%;
    padding: 20px;
}

.informationinner1>h3 {
    font-family: Oswald, sans-serif;
    font-size: 2vw;
    margin-top: 2vw;
    margin-bottom: 1.5vw;
    text-transform: uppercase;
}

.informationinner2 {
    width: 60%;
}

.informationinner1>div {
    width: 100%;
    padding: 1.2vw;
    max-height: 90%;
    background-color: #ECECEC;
    overflow-y: auto;
}

/* .informationinner1>div>div {
    display: flex;
    background-color: #fff;
    padding: 1.2vw;
    gap: 1vw;
    border-bottom: 1px solid rgba(128, 128, 128, 0.437);
    justify-content: space-between;
} */

.green-zakat {
    color: var(--primary-color);
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    font-size: 1.5vw;
}

.green-zakat-h4 {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 1vw;
}

.green-zakat-h2 {
    font-family: Oswald, sans-serif;
    font-size: 1.5vw;
    text-transform: uppercase;
    font-weight: 600;
}

.informationinner1>div>h3 {
    font-family: lato, sans-serif;
    font-weight: 400;
    font-size: 1.2vw;
    margin-top: 2vw;
    margin-bottom: 1vw;
}

.help-h6 {
    font-family: Lato, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
}

.help-h3 {
    font-family: Oswald, sans-serif;
    color: rgb(153, 153, 153);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.5vw;
    display: flex;
    gap: 0.5vw;
    align-items: center;
}

.informationinner1 input {
    height: 2vw;
    width: 1vw;
}

.help-h3-black {
    font-family: Oswald, sans-serif;
    font-weight: 900;
    font-size: 1.5vw;
    color: black;
    opacity: 0.7;
    text-transform: uppercase;
    display: flex;
    gap: 0.5vw;
    align-items: center;
}

.total-last {
    font-family: Oswald, sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.4vw;
    text-transform: uppercase;
}

.total-last-rupe {
    font-family: oswald, sans-serif;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.6vw;
}



.plus-minus-boxes {
    display: flex;

}



.plus-minus-boxes>div {
    width: 2vw;
    height: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3vw;
    opacity: 0.9;
    font-family: Lato, sans-serif;
    border: 2px solid var(--primary-color);
}

.green-text-info {
    color: var(--primary-color);
}

.olive-tree small {
    font-family: Lato, sans-serif;
    font-weight: 400;
}

.infoiner-iner1 {
    padding: 1.5vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    width: 100% !important;
}

.infoiner-iner1>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Lato, sans-serif;
    font-weight: 700;
    font-size: 0.9vw;
    width: 85%;
}

.infoiner-iner1 h2 {
    font-family: Oswald, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.8vw;
    opacity: 0.8;
    padding-top: 1vw;
}

.infoiner-iner1 select {
    height: 3vw;
    width: 37vw;
    font-family: lato, sans-serif;
    font-weight: 400;
    font-size: 0.9vw;
    padding: 0.8vw;
    outline: none;
    appearance: none;
    background-image: url(images/scroll-down.png);
    background-position: right 1vw center;
    background-size: 0.9vw;
    background-repeat: no-repeat;
    border-radius: 2px;
    border: 1px solid rgba(128, 128, 128, 0.735);
}

.infoiner-iner1 input {
    border: 1px solid rgba(128, 128, 128, 0.735);
    height: 3vw;
    width: 37vw;
    font-family: lato, sans-serif;
    font-weight: 400;
    font-size: 0.9vw;
    padding: 0.8vw;
    outline: none;
}

.infoiner-iner1 h3 {
    font-family: lato, sans-serif;
    font-weight: 700;
    font-size: 0.9vw;
    width: 85%;
}

.infoiner-iner1 p {
    font-family: lato, sans-serif;
    font-weight: 400;
    font-size: 0.9vw;
    opacity: 0.8;
    width: 80%;
}

.check-box3 {
    align-items: center;
    justify-content: start !important;

}

.check-box3 p {
    font-size: 0.8vw;
    width: 100%;
}

.check-box3 input {
    width: 80%;
    height: 80%;
    accent-color: white;
    border: 1px solid black;
}

.check-box-inner {
    height: 1.5vw;
    width: 2vw;
    display: flex;
    align-items: center;
}

.infoiner-iner1 small {
    font-size: 0.7vw;
    margin-top: 2vw;
    line-height: 1vw;
    font-family: Lato, sans-serif;
    opacity: 0.7;
    width: 85%;
    border-bottom: 1px solid gray;
    padding-bottom: 1vw;
}

.infoiner-iner1 a {
    color: var(--primary-color);
    opacity: 1 !important;
}

.infoiner-iner1 a:hover {
    color: var(--primary-color);
}

.pay {
    margin-left: 29%;
    width: 40%;
    height: 2.5vw;
    background-color: var(--primary-color);
    border-radius: 5px;
    font-family: Lato, sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
}

.pay:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
}

.check:hover {

    background-color: rgb(227, 173, 48);
    cursor: pointer;
}

.check {
    margin-left: 29%;
    width: 40%;
    height: 2.5vw;
    background-color: rgb(242, 186, 54);
    border-radius: 5px;
    font-family: Lato, sans-serif;
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
    position: relative;
}


.info-img-bar1 {
    width: 1.2vw;
    left: 20%;
    top: 20%;
    position: absolute;
}

.info-img-bar2 {
    width: 2.5vw;
    left: 27%;
    top: 27%;
    position: absolute;
}

.giftaid {
    width: 10vw;
}

.span2 {
    position: absolute;
    color: #000;
    left: 45%;
    top: 27%;
}

.span3 {
    font-family: Lato, sans-serif;
    gap: 0px !important;
    width: 85%;
    text-align: center;
}

article {
    font-family: Lato, sans-serif;
    font-style: italic;
    font-size: 0.7vw;
    opacity: 0.7;
    width: 88%;
}

/* quick Donate 2 */
.main2 {
    display: none;
    /* height: 350px;
    width: 95%;
    border-radius: 10px;
    border: 1px solid rgba(128, 128, 128, 0.437);
    margin: 40px auto;
    background-color: var(--light-bg); */
}

/* quick Donate 2 */




/* Responsive Design for Header */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    nav {
        height: 60px;
        padding: 0 20px;
    }

    .navinner1 {
        width: 15%;
    }

    .navinner1 img {
        width: 50px;
        height: 50px;
    }

    .navinner2 {
        width: 60%;
    }

    .navinner2 h3 {
        font-size: 14px;
    }

    .navinner2 input {
        font-size: 12px;
        width: 40%;
    }

    .navinner2 p {
        font-size: 12px;
    }

    .navinner2 small {
        font-size: 10px;
    }

    .navinner3 {
        width: 25%;
    }

    .navinner3 p {
        font-size: 10px;
    }

    .navinner3 strong {
        font-size: 12px;
    }

    .navinner3 button {
        height: 35px;
        font-size: 10px;
        width: 90%;
    }

    .appeals {
        gap: 2vw;
    }

    .appeals h3 {
        font-size: 14px;
    }
}

.main2 {
    width: 90%;
    margin: 30px auto;
    /* background: #fff; */
    /* border-radius: 12px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    /* padding: 15px; */
    font-family: "nunito", sans-serif;
    text-align: center;
}

.main2 h2 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* Payment Type Buttons */
.main2>div:nth-child(2),
.main2>div:nth-child(3) {
    display: inline-block;
    width: 48%;
    border: 1px solid #ccc;
    padding: 15px 0;
    border-radius: 2px;
    cursor: pointer;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    font-size: 13px;
}

.main2>div:nth-child(2):hover,
.main2>div:nth-child(3):hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Amount Options */
.main2 input[type="checkbox"].single-check {
    display: none;
}

.main2 input[type="checkbox"].single-check+label {
    display: inline-block;
    width: 48%;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 15px 0;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.main2 input[type="checkbox"].single-check:checked+label {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/* OR Divider */
.main2 div:nth-of-type(7) {
    margin: 10px 0;
    font-weight: 600;
    color: #666;
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {

    /* Show new header design on mobile */
    .main2 {
        display: block;
    }

    .donate-bar {
        width: 60%;
    }

    .all-calc h3 {
        font-size: 16px;
    }

    #zakat-calc p {
        font-size: 13px;
    }

    .all-calc button {
        font-size: 8px;
    }

    .all-calc {
        height: 80px;
    }

    #zakat-calc>div>div>div div {
        height: 30px;
        width: 30px;
    }

    .donate-bar>h3 {
        font-size: 16px;
    }

    .donate-bar>h4 {
        font-size: 11px;
    }

    #zakat-calc>div>div>div div i {
        font-size: 16px;
    }

    #zakat-calc>div {
        height: 140px;
        width: 290px;
    }

    #zakat-calc h3 {
        font-size: 18px;
    }

    /* Own Amount Box */
    #input-div-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        background: #f8f8f8;
        padding: 10px;
        border-radius: 2px;
        margin-bottom: 10px;
        border: 1px solid #ddd;
    }

    #input-div-box input[type="number"] {
        width: 60%;
        border: none;
        outline: none;
        font-size: 14px;
        background: transparent;
    }

    #input-div-box input[type="text"] {
        width: 60%;
        border: none;
        outline: none;
        font-size: 14px;
        background: transparent;
    }

    /* Dropdown */
    .main2 select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 2px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    /* Donate Button */
    #quick-donate-responsive {
        width: 100%;
        background: var(--primary-color);
        border: none;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        padding: 12px 0;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #quick-donate-responsive:hover {
        background: var(--secondary-color);
    }

    main {
        display: none;
    }

    .main-header {
        display: block !important;
    }

    /* Hide desktop navigation */
    .desktop-nav {
        display: none !important;
    }

    /* Hide all desktop nav elements */
    .navinner2,
    .navinner3 {
        display: none;
    }

    /* Cards Section Mobile Styles */
    section h2 {
        font-size: 24px !important;
        text-align: center;
        margin-bottom: 15px;
    }

    section p {
        font-size: 14px;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .cards-container {
        width: 95%;
        margin: 0 auto;
        height: auto;
    }

    .card {
        width: 280px !important;
        height: 400px !important;
        margin: 0 auto;
    }

    .card img {
        height: 180px !important;
        position: relative !important;
    }

    .card-content {
        margin-top: 0 !important;
        height: 180px !important;
        padding: 20px 15px !important;
        clip-path: none !important;
    }

    .card-content h2 {
        font-size: 16px !important;
        margin-bottom: 15px;
    }

    .card-content button {
        font-size: 12px !important;
        height: 35px !important;
        width: 120px !important;
        margin-bottom: 10px;
    }

    .card-content a {
        font-size: 12px !important;
    }

    .card-footer {
        font-size: 12px !important;
        padding: 10px !important;
    }

    /* Swiper Navigation Buttons */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    /* Swiper Pagination */
    .swiper-pagination {
        position: relative !important;
        margin-top: 20px;
    }

    /* AboutUS Section Mobile Styles */
    .AboutUS {
        height: auto !important;
        flex-direction: column !important;
        padding: 30px 20px !important;
    }

    .AboutUS>div {
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
    }

    .aboutinner1 {
        order: 1;
        margin-bottom: 30px;
    }

    .aboutimg1 {
        width: 100% !important;
        height: 250px !important;
        margin-top: 10vh !important;
        object-fit: cover;
    }

    .aboutinner2 {
        order: 1;
        padding: 0 !important;
    }

    .aboutinner2 h5 {
        font-size: 14px !important;
        margin-bottom: 10px;
    }

    .aboutinner2 h2 {
        font-size: 24px !important;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .aboutinner2 p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px;
    }

    .check-arrow {
        flex-direction: column !important;
        gap: 15px;
        margin-bottom: 20px;
    }

    .check-arrow h6 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .check-arrow i {
        font-size: 16px !important;
        margin-right: 8px;
    }

    .review {
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 20px;
    }

    .review h4 {
        font-size: 24px !important;
    }

    .review h5 {
        font-size: 14px !important;
    }

    .review img {
        height: 30px !important;
        width: 30px !important;
        position: relative !important;
        margin-right: 5px;
    }

    .aboutinner2 button {
        width: 100% !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        background-color: var(--primary-color) !important;
        color: white !important;
        border: none !important;
        border-radius: 5px !important;
        cursor: pointer !important;
    }

    /* Quick Donate Mobile Styles */
    main {
        max-width: 95% !important;
        margin: 20px auto !important;
        padding: 20px !important;
    }

    main h4 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    main select,
    main input {
        padding: 12px 15px !important;
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }

    main button {
        padding: 15px 25px !important;
        font-size: 16px !important;
        margin-top: 5px !important;
    }

    /* Mobile menu toggle styles */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 3px !important;
        width: 30px !important;
        height: 30px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }


    .mobile-menu-toggle.active {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }

    .mobile-search-toggle {
        display: flex !important;
        align-items: center;
        color: #666;
        font-size: 18px;
    }

    /* Adjust search input for mobile */
    .search-input {
        width: 150px;
        font-size: 12px;
    }

    .navinner1 img {
        width: 40px;
        height: 40px;
    }

    /* Mobile header height */
    nav {
        height: 60px;
        padding: 0;
    }

    /* Hide second navigation on mobile */
    .secondnav {
        display: none;
    }

    /* Adjust hero slider for mobile */
    .swiper {
        height: 50vh;
    }

    .slide-content {
        left: 5%;
        top: 30%;
        max-width: 90%;
        padding: 15px;
    }

    .slide-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .slide-content .btn {
        padding: 8px 15px;
        font-size: 12px;
        margin-right: 8px;
    }

    /* Mobile quick donate section */
    main {
        height: auto;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    main h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    main select,
    main input {
        width: 100%;
        height: 45px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    main button {
        width: 100%;
        height: 45px;
        font-size: 14px;
    }

    /* Mobile cards section */
    .cards-container {
        width: 95%;
        margin-left: 2.5%;
    }

    .card {
        width: 280px;
        height: 350px;
    }

    .card-content {
        margin-top: 120px;
        height: 200px;
        padding: 15px;
    }

    .card-content h2 {
        font-size: 16px !important;
    }

    .card-btn {
        height: 35px;
        width: 100px;
        font-size: 10px;
    }

    .card-footer {
        padding: 10px;
        font-size: 12px;
    }

    /* Mobile about section */
    .AboutUS {
        height: auto;
        flex-direction: column;
        padding: 40px 20px;
        margin-top: 0px;
    }

    .AboutUS>div {
        width: 100%;
        padding: 0;
    }

    .aboutimg1 {
        margin-left: 0;
        width: 100%;
        height: 250px;
        margin-bottom: 30px;
    }

    .aboutinner2 h2 {
        font-size: 24px;
    }

    .aboutinner2 p {
        font-size: 14px;
        line-height: 1.6;
    }

    .check-arrow {
        flex-direction: column;
        gap: 0px;
    }

    .check-arrow h6 {
        font-size: 12px;
    }

    .aboutinner2 button {
        height: 45px;
        width: 150px;
        font-size: 14px;
    }

    /* Mobile FAQ section */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-left h2 {
        font-size: 24px;
    }

    .accordion-header {
        font-size: 14px;
        padding: 15px;
    }

    .accordion-content p {
        padding: 15px;
        font-size: 14px;
    }

    /* Mobile stats section */
    .stats-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        margin: 30px 20PX;
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .stat-icon {
        width: 80px;
        height: 80px;
        margin: 0;
    }

    .stat-icon i {
        font-size: 28px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-text {
        font-size: 14px;
    }

    /* Mobile footer */
    .footer {
        height: auto;
        flex-direction: column;
        /* font-family: nunito ,sans-serif !important; */
        padding: 40px 20px;
        gap: 30px;
    }

    .footerinner1,
    .footerinner2,
    .footerinner5 {
        width: 100%;
        text-align: center;
    }

    .footerinner1 img {
        width: 60px;
        margin-bottom: 20px;
    }

    .footer h2 {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: left;
    }

    .footer h3 {
        font-size: 14px;
        margin-bottom: 10px;
        text-align: left;
    }

    .footer p {
        font-size: 12px;
        line-height: 1.5;
        text-align: left;
    }

    .footerinner5 h5 {
        font-size: 16px;
    }

    .footerinner5 i {
        font-size: 20px;
    }

    /* Mobile aside section */
    .aside2 {
        height: auto;
        padding: 40px 20px;
    }

    .aside2 h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .cards2 {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .cards2>div {
        width: 100%;
        height: auto;
        padding: 20px 0px;
    }

    .cards2 img {
        width: 50px;
        height: 50px;
    }

    .cards2 h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .cards2 p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    .secondnav {
        display: none !important;
    }

    .navinner1 {
        padding-left: 15px;
    }

    .navinner1 img {
        width: 35px;
        height: 35px;
    }

    .mobile-menu-toggle {
        right: 15px;
        background-color: white;
    }

    .mobile-nav-menu {
        width: 100%;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 12px;
    }

    .slide-content .btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .card {
        width: 250px;
        height: 320px;
    }

    .card-content h2 {
        font-size: 14px !important;
    }

    .aboutinner2 h2 {
        font-size: 20px;
    }

    .faq-left h2 {
        font-size: 20px;
    }

    .accordion-header {
        font-size: 12px;
        padding: 12px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-text {
        font-size: 12px;
    }

    .footerinner5 small {
        font-size: 5vw;
    }

    .footerinner5 h4 {
        font-size: 5vw;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .footerinner5 {
        text-align: left;
    }

    footer {
        padding: 1px 5px !important;
        gap: 0px !important;
        align-items: center !important;
        height: auto !important;
        /* width: 100%;
        border-top: 1px solid var(--border-color);
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-color: white; */
    }

    footer p {
        font-size: 10px;
        text-align: center;
        padding: 10px 0px;
    }

    footer>div {
        width: 100%;
        text-align: center;
        justify-content: center                                  ;
        /* padding: 10px; */
    }

    .foooterlastinner {
        display: flex;
        align-items: start;
        justify-content: start;
        padding: 20px;
        margin-top: 20px;
        text-align: left;
        gap: 50px;
    }

    footer h6 {
        font-size: 3vw;
    }

    footer a {
        font-size: 3vw;
    }

    footer a:hover {
        font-size: 3vw;
    }

    .image-zakat {
        height: 15vh;
    }

    .image-zakat h3 {
        font-size: 5vw;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .about-main-image {
        height: auto;
    }

    .mission-point {
        padding: 20px;
    }

    .Contact-us h2 {
        font-size: 20px;
    }

    .Contact-us>p {
        font-size: 14px;
    }

    .contact-info {
        padding: 20px;
    }

    .address-p {
        padding-right: 40px;
    }

    .form {
        padding: 20px;
    }

    .form h3 {
        font-size: 20px;
    }

    .imagesection {
        padding: 20px;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;

    }

    .imagesection-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        /* border: 1px solid red; */

    }

    .imagesection img {
        width: 100%;
        border-radius: 15px;
        height: 80%;
        object-fit: cover;
    }

    .imagesection-text {
        padding: 5vw 3vw 5vw 0vw;
        margin-top: 5vw;
        width: 100%;
    }

    .imagesection h3 {
        font-size: 7vw;
    }

    .imagesection p {
        font-size: 14px;
        line-height: 7vw;
    }

    .imagesection li {
        font-size: 14px;
        line-height: 7vw;
    }



    footer {
        flex-direction: column-reverse;
    }

    /* Zakat Calculator Mobile Responsive */
    .zakat-imagebar {
        height: auto;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .zakat-imagebar>div {
        width: 100%;
        height: auto;
        margin-top: 0;
    }

    .zakat-text {
        padding: 20px;
        gap: 15px;
    }

    .zakat-text h3 {
        font-size: 18px;
    }

    .zakat-text p {
        font-size: 14px;
        line-height: 20px;
    }

    .zakat-img-div {
        height: 200px !important;
    }

    .zakat-imagebar button {
        height: 40px;
        font-size: 12px;
        width: 150px;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .h21 {
        height: auto;
        padding: 15px;
        font-size: 12px;
        text-align: center;
    }

    .zakat-already {
        height: auto;
        padding: 20px;
    }

    .zakat-already>div {
        width: 100%;
        height: auto;
        padding: 20px;
        gap: 15px;
    }

    .zakat-already>div h2 {
        font-size: 16px;
        text-align: center;
    }

    .zakat-already>div input {
        width: 100%;
        height: 40px;
        font-size: 14px;
        padding: 0 15px;
    }

    .zakat-already>div button {
        height: 40px;
        width: 100%;
        font-size: 14px;
    }

    .zakat-already>div>div {
        gap: 10px;
    }

    .zakat-already>div span {
        position: static;
        font-size: 14px;
        margin-bottom: 5px;
        padding-top: 7px;
    }

    .calculator {
        height: auto;
        padding: 20px;
    }

    .calculator>div {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .calc-inner1 {
        height: auto;
        gap: 15px;
        margin-bottom: 20px;
    }

    .calc-inner1>h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .calc-inner1>div {
        flex-direction: column;
        gap: 10px;
    }

    .calc-inner1>div>div {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(128, 128, 128, 0.277);
        padding: 10px 0;
        text-align: left;
    }

    .calc-inner1 h6 {
        font-size: 14px;
    }

    .calc-inner1 p {
        font-size: 14px;
    }

    .calc-inner1 span {
        font-size: 12px;
    }

    .calc-inner2 {
        height: auto;
        flex-direction: column;
        gap: 20px;
    }

    .calc-inner2>div {
        width: 100%;
        height: auto;
        gap: 15px;
    }

    .calc-inner2 h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .calc-inner2 select {
        height: 40px;
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .calc-inner2>div>div {
        height: 40px;
        flex-direction: column;
        gap: 5px;
    }

    .calc-text {
        width: 100%;
        font-size: 12px;
        padding: 5px 10px;
        border-right: none;
        border-bottom: 1px solid rgba(128, 128, 128, 0.277);
    }

    .calc-input {
        width: 100%;
    }

    .calc-input input {
        font-size: 14px;
        padding: 5px 10px;
        height: 35px;
    }

    .calc-inner2inner {
        padding: 0;
        gap: 15px;
    }

    .calc-inner3 {
        height: auto;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .calc-inner3>div {
        width: 100%;
        height: auto;
        border-right: none;
        border: 1px solid rgba(128, 128, 128, 0.277);
        padding: 10px 0;
        text-align: center;
    }

    .calc-inner3 h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .calc-inner3 h2 {
        font-size: 20px;
    }

    .calc-inner4 {
        height: auto;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .calc-inner4>div {
        width: 100%;
        height: auto;

    }

    .calc-inner4 button {
        height: 45px;
        font-size: 14px;
        width: 100%;
    }

    .calc-imgbar {
        height: auto;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .chotadiv {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .chotadiv h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .chotadiv h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .baradiv {
        width: 100%;
        padding: 20px;
    }

    .baradiv h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .baradiv p {
        font-size: 14px;
        line-height: 20px;
    }

    .calc-imgbar2 {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .baradiv2,
    .chotadiv2 {
        width: 100%;
        padding: 20px;
    }

    .baradiv2 h2,
    .chotadiv2 h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .baradiv2 p,
    .chotadiv2 p {
        font-size: 14px;
        line-height: 20px;
    }

    .calc-imgbar3 {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .baradiv3,
    .chotadiv3 {
        width: 100%;
        padding: 20px;
    }

    .baradiv3 h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .baradiv3 p {
        font-size: 14px;
        line-height: 20px;
    }

    .chotadiv3 img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }

    .donate-bar {
        width: 100%;
        padding: 20px;
    }

    .donate-bar>h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .donate-bar>h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .all-calc {
        width: 100%;
        height: 120px;
        flex-direction: column;
        gap: 15px;
        padding: 5vw 3vw;
    }

    .all-calc h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    #all_zakat_show {
        font-size: 16px;
        font-weight: 700;
    }

    .all-calc button {
        height: 40px;
        font-size: 12px;
        padding: 0 15px;
    }

    /* Mobile responsive styles for donation cart */
    .zakat-pay {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 12px;
    }

    .zakat-pay>div:first-child {
        width: 100%;
    }

    .zakat-pay h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .zakat-pay p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .counter-box {
        gap: 8px;
        margin-top: 8px;
    }

    .swiper {
        overflow: visible !important;
    }

    .counter-box .minus,
    .counter-box .plus {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .counter {
        font-size: 14px;
        min-width: 25px;
    }

    .zakat-pay .amount {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .zakat-pay .remove {
        font-size: 12px;
    }

    .infobar2 {
        padding: 15px;
    }

    .infobar2 h3 {
        font-size: 16px;
        text-align: center;
    }

    .infobar3 {
        padding: 20px;
    }

    .events-section {
        flex-direction: column;
        gap: 15px;
    }

    .events {
        flex-direction: column;
        gap: 10px;
    }

    .eventinner {
        padding: 15px;
        text-align: center;
    }

    .eventinner i {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .eventinner h3 {
        font-size: 14px;
        margin: 0;
        text-align: center;
        line-height: 1.2;
    }

    .upcoming-section {
        margin-top: 20px;
    }

    .upcoming-h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .upcoming-mega-events {
        margin-bottom: 15px;
    }

    .upcoming-mega-eventinner {
        padding: 15px;
        text-align: center;
    }

    .upcoming-mega-eventinner i {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .upcoming-mega-eventinner h3 {
        font-size: 14px;
        margin: 0;
        text-align: center;
        line-height: 1.2;
    }

}

/* Tablet Responsive Styles (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .zakat-imagebar {
        height: auto;
        flex-direction: row;
        gap: 30px;
        padding: 30px;
    }

    .zakat-imagebar>div {
        width: 48%;
        height: auto;
        margin-top: 0;
    }

    .zakat-text {
        padding: 30px;
        gap: 20px;
    }

    .zakat-text h3 {
        font-size: 20px;
    }

    .zakat-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .zakat-img-div {
        height: 300px !important;
    }

    .zakat-imagebar button {
        height: 45px;
        font-size: 14px;
        width: 180px;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .h21 {
        height: auto;
        padding: 20px;
        font-size: 14px;
    }

    .zakat-already {
        height: auto;
        padding: 30px;
    }

    .zakat-already>div {
        width: 90%;
        height: auto;
        padding: 30px;
        gap: 20px;
    }

    .zakat-already>div h2 {
        font-size: 20px;
    }

    .zakat-already>div input {
        width: 100%;
        height: 45px;
        font-size: 16px;
        padding: 0 20px;
    }

    .zakat-already>div button {
        height: 45px;
        width: 100%;
        font-size: 16px;
    }

    .zakat-already>div>div {
        flex-direction: row;
        gap: 15px;
    }

    .zakat-already>div span {
        position: absolute;
        font-size: 16px;
        top: 50%;
        transform: translateY(-50%);
        left: 15px;
    }

    .calculator {
        height: auto;
        padding: 30px;
    }

    .calculator>div {
        width: 90%;
        height: auto;
        padding: 30px;
    }

    .calc-inner1 {
        height: auto;
        gap: 20px;
        margin-bottom: 30px;
    }

    .calc-inner1>h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .calc-inner1>div {
        flex-direction: row;
        gap: 20px;
    }

    .calc-inner1>div>div {
        width: 33%;
        border-right: 1px solid rgba(128, 128, 128, 0.277);
        border-bottom: none;
        padding: 15px 0;
        text-align: center;
    }

    .calc-inner1 h6 {
        font-size: 16px;
    }

    .calc-inner1 p {
        font-size: 16px;
    }

    .calc-inner1 span {
        font-size: 14px;
    }

    .calc-inner2 {
        height: auto;
        flex-direction: row;
        gap: 30px;
    }

    .calc-inner2>div {
        width: 48%;
        height: auto;
        gap: 20px;
    }

    .calc-inner2 h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .calc-inner2 select {
        height: 45px;
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .calc-inner2>div>div {
        height: 45px;
        flex-direction: row;
        gap: 10px;
    }

    .calc-text {
        width: 70%;
        font-size: 14px;
        padding: 0 15px;
        border-right: 1px solid rgba(128, 128, 128, 0.277);
        border-bottom: none;
    }

    .calc-input {
        width: 30%;
    }

    .calc-input input {
        font-size: 16px;
        padding: 0 10px;
        height: 40px;
    }

    .calc-inner2inner {
        padding: 0;
        gap: 20px;
    }

    .calc-inner3 {
        height: auto;
        flex-direction: row;
        gap: 20px;
        padding: 30px 0;
    }

    .calc-inner3>div {
        width: 50%;
        height: auto;
        border-right: 1px solid rgba(128, 128, 128, 0.277);
        border-bottom: none;
        padding: 15px 0;
        text-align: center;
    }

    .calc-inner3 h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .calc-inner3 h2 {
        font-size: 24px;
    }

    .calc-inner4 {
        height: auto;
        width: 100%;
        flex-direction: row;
        gap: 20px;
        padding: 30px 0;
    }

    .calc-inner4>div {
        width: 50%;
        height: auto;
    }

    .calc-inner4 button {
        height: 50px;
        font-size: 16px;
        width: 100%;
    }

    .calc-imgbar {
        height: auto;
        flex-direction: row;
        gap: 30px;
        padding: 30px;
    }

    .chotadiv {
        width: 48%;
        height: auto;
        padding: 30px;
    }

    .chotadiv h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .chotadiv h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .baradiv {
        width: 48%;
        padding: 30px;
    }

    .baradiv h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .baradiv p {
        font-size: 16px;
        line-height: 24px;
    }

    .calc-imgbar2 {
        flex-direction: row;
        gap: 30px;
        padding: 30px;
    }

    .baradiv2,
    .chotadiv2 {
        width: 48%;
        padding: 30px;
    }

    .baradiv2 h2,
    .chotadiv2 h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .baradiv2 p,
    .chotadiv2 p {
        font-size: 16px;
        line-height: 24px;
    }

    .calc-imgbar3 {
        flex-direction: row;
        gap: 30px;
        padding: 30px;
    }

    .baradiv3,
    .chotadiv3 {
        width: 48%;
        padding: 30px;
    }

    .baradiv3 h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .baradiv3 p {
        font-size: 16px;
        line-height: 24px;
    }

    .chotadiv3 img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
    }

    .donate-bar {
        width: 50%;
        padding: 30px;
    }

    .donate-bar>h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .donate-bar>h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .all-calc {
        flex-direction: row;
        gap: 20px;
    }

    .all-calc h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #all_zakat_show {
        font-size: 18px;
        font-weight: 700;
    }

    .all-calc button {
        height: 45px;
        font-size: 14px;
        padding: 0 20px;
    }

    /* Tablet responsive styles for donation cart */
    .zakat-pay {
        padding: 18px;
        margin-bottom: 18px;
    }

    .zakat-pay h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .zakat-pay p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .counter-box {
        gap: 12px;
        margin-top: 12px;
    }

    .counter-box .minus,
    .counter-box .plus {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .counter {
        font-size: 16px;
        min-width: 32px;
    }

    .zakat-pay .amount {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .zakat-pay .remove {
        font-size: 14px;
    }

    .infobar2 {
        padding: 20px;
    }

    .infobar2 h3 {
        font-size: 18px;
    }

    .infobar3 {
        padding: 30px;
    }

    .events-section {
        flex-direction: row;
        gap: 20px;
    }

    .events {
        flex-direction: column;
        gap: 15px;
    }

    .eventinner {
        padding: 20px;
        text-align: center;
    }

    .eventinner i {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .eventinner h3 {
        font-size: 16px;
        margin: 0;
        text-align: center;
        line-height: 1.3;
    }

    .upcoming-section {
        margin-top: 30px;
    }

    .upcoming-h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .upcoming-mega-events {
        margin-bottom: 20px;
    }

    .upcoming-mega-eventinner {
        padding: 20px;
        text-align: center;
    }

    .upcoming-mega-eventinner i {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .upcoming-mega-eventinner h3 {
        font-size: 16px;
        margin: 0;
        text-align: center;
        line-height: 1.3;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 480px) {
    .zakat-imagebar {
        padding: 15px;
        gap: 15px;
    }

    .zakat-text {
        padding: 15px;
        gap: 10px;
    }

    .zakat-text h3 {
        font-size: 16px;
    }

    .zakat-text p {
        font-size: 12px;
        line-height: 18px;
    }

    .zakat-img-div {
        height: 150px !important;
    }

    .zakat-imagebar button {
        height: 35px;
        font-size: 10px;
        width: 120px;
        bottom: 15px;
    }

    .h21 {
        padding: 10px;
        font-size: 16px;
    }

    .zakat-already {
        padding: 15px;
    }

    .zakat-already>div {
        padding: 15px;
        gap: 20px;
    }

    .zakat-already>div h2 {
        font-size: 14px;
    }

    .zakat-already>div input {
        height: 35px;
        font-size: 12px;
        padding: 0 10px;
    }

    .zakat-already>div button {
        height: 35px;
        font-size: 12px;
    }

    .calculator {
        padding: 15px;
    }

    .calculator>div {
        padding: 15px;
    }

    .calc-inner1>h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .calc-inner1 h6 {
        font-size: 12px;
    }

    .calc-inner1 p {
        font-size: 12px;
    }

    .calc-inner1 span {
        font-size: 10px;
    }

    .calc-inner2 h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .calc-inner2 select {
        height: 35px;
        font-size: 12px;
        padding: 0 8px;
        margin-bottom: 10px;
    }

    .calc-inner2>div>div {
        height: 75px;
    }

    .calc-text {
        font-size: 12px;
        padding: 8px 8px;
    }

    .calc-input input {
        font-size: 12px;
        padding: 3px 8px;
        height: 30px;
        /* border-bottom: 1px solid rgba(128, 128, 128, 0.277); */
    }

    .calc-inner3 h3 {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .calc-inner3 h2 {
        font-size: 16px;
    }

    .calc-inner4 button {
        height: 40px;
        font-size: 12px;
    }

    .chotadiv h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .chotadiv h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .baradiv h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .baradiv p {
        font-size: 12px;
        line-height: 18px;
    }

    .baradiv2 h2,
    .chotadiv2 h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .baradiv2 p,
    .chotadiv2 p {
        font-size: 12px;
        line-height: 18px;
    }

    .baradiv3 h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .baradiv3 p {
        font-size: 12px;
        line-height: 18px;
    }

    .chotadiv3 img {
        height: 150px;
    }

    .donate-bar {
        padding: 15px;
    }

    .donate-bar>h3 {
        font-size: 14px;
        margin-bottom: 8px;
        padding-bottom: 10px;
    }

    .donate-bar>h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .all-calc h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    #all_zakat_show {
        font-size: 16px;
    }

    .all-calc button {
        height: 35px;
        font-size: 10px;
        padding: 0 10px;
    }

    /* Small mobile responsive styles for donation cart */
    .zakat-pay {
        padding: 10px;
        margin-bottom: 12px;
        gap: 12px;
    }

    .zakat-pay h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .zakat-pay p {
        font-size: 11px;
        margin-bottom: 6px;
        margin-left: 4px;
    }

    .counter-box {
        gap: 6px;
        margin-top: 6px;
    }

    .counter-box .minus,
    .counter-box .plus {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .counter {
        font-size: 12px;
        min-width: 22px;
    }

    .zakat-pay .amount {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .zakat-pay .remove {
        font-size: 14px;
    }

    .infobar2 {
        padding: 10px;
    }

    .infobar2 h3 {
        font-size: 14px;
    }

    .infobar3 {
        padding: 15px;
    }

    .eventinner {
        padding: 10px;
    }

    .eventinner i {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .eventinner h3 {
        font-size: 12px;
        line-height: 1.1;
    }

    .upcoming-h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .upcoming-mega-eventinner {
        padding: 10px;
    }

    .upcoming-mega-eventinner i {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .upcoming-mega-eventinner h3 {
        font-size: 12px;
        line-height: 1.1;
    }

    .calc-text-span {
        font-size: 12px;
        margin-left: 10px;
    }

    .calc-inner3 {
        border-top: none;
        border-bottom: none;
    }

    .calc-inner3>div {

        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
        gap: 10px;
    }

    .calc-input {
        margin-left: 0;
    }

    .chotadiv>h3 {
        height: auto;
        padding: 5px;
    }

    .calc-imgbar2 {
        height: auto;
    }

    .calc-imgbar3 {
        height: auto;
    }

    #zakat-calc>div {
        padding: 1vw 3vw;
        width: 100%;
    }

    .donate-bar>h3 {
        width: 100%;
    }

    #icons {
        display: none;
    }

    #cancel {
        right: 3%;
    }
}

/* Donate Page Specific Styles */
.cards-container {
    height: 100% !important;
    margin-top: 0px !important;
}

.card {
    position: relative !important;
    margin-top: 1vw !important;
}

section {
    /* height: 95vw; */
    margin-top: 0px !important;
}

.card img {
    width: 16.6vw !important;
}

.cards {
    justify-content: space-around;
    flex-wrap: wrap !important;
    padding-top: 2vw !important;
    margin-top: 0px !important;
}

.card9 {
    width: 42vw;
    height: 27vw;
    margin-top: 1.3vw;
    display: flex;
    position: relative;
    box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.096);
}

.card9>div {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.card9 img {
    height: 100%;
    object-fit: cover;
}

.card-img {
    width: 38%;
}

.card-text {
    text-align: center;
    width: 62%;
    padding: 0vw 3vw;
    background-color: #C2185B;
    display: flex !important;
    justify-content: center;
}

.card-text:hover {
    background-color: #880E4F;
    transition: all 0.4s ease-in-out;
}

.card-text h2 {
    color: white;
    font-family: Oswald, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 3vw;
    font-size: 2.3vw;
}

.card-text p {
    color: white;
    font-family: Lato, sans-serif;
    font-weight: 400;
    line-height: 1.5vw;
    font-size: 0.8vw;
}

.card-text button {
    padding: 1vw !important;
    width: 30%;
    font-family: Lato, sans-serif;
    font-size: 0.7vw;
    font-weight: 900;
    margin-left: 35%;
}

.card-text button:hover {
    cursor: pointer;
}

.card-text a {
    font-family: Lato, sans-serif;
    font-size: 0.7vw;
    text-align: center;
    text-decoration: none;
    color: white !important;
}

.abbc {
    height: 2vw;
    padding: 0.5vw 0vw;
    position: absolute;
    bottom: 0px;
    background-color: white;
    right: 0px !important;
    width: 62% !important;
}

/* Donate Page Tablet Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .cards-container {
        height: auto !important;
    }

    section {
        height: auto !important;
        padding: 20px 0;
    }

    .cards {
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }

    .card {
        width: 45% !important;
        margin-top: 20px !important;
    }

    .card img {
        width: 100% !important;
        height: 200px;
        object-fit: cover;
    }

    .card9 {
        width: 90% !important;
        height: auto !important;
        margin: 20px auto !important;
        flex-direction: row;
    }

    .card9 .card-img {
        width: 40%;
    }

    .card9 .card-text {
        width: 60%;
        padding: 20px;
    }

    .card-text h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .card-text p {
        font-size: 12px;
        line-height: 1.5;
    }

    .card-text button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .card-text a {
        font-size: 12px;
    }
}

/* Donate Page Mobile Responsive Styles */
@media (max-width: 768px) {
    .cards-container {
        height: auto !important;
    }

    section {
        height: auto !important;
        padding: 15px 0;
    }

    .cards {
        justify-content: center;
        gap: 15px;
        padding: 15px;
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90% !important;
        max-width: 400px;
        margin-top: 15px !important;
    }

    .card img {
        width: 100% !important;
        height: 180px;
        object-fit: cover;
    }

    .card9 {
        width: 90% !important;
        height: auto !important;
        margin: 15px auto !important;
        flex-direction: column;
    }

    .card9 .card-img {
        width: 100%;
        height: 200px;
    }

    .card9 .card-text {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .card-text h2 {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .card-text p {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .card-text button {
        font-size: 11px;
        padding: 8px 16px;
        width: 40%;
        margin: 0 auto 10px;
    }

    .card-text a {
        font-size: 11px;
    }

    .donatesec {
        padding: 20px;
        text-align: center;
    }

    .donatesec h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .donatesec h3 {
        font-size: 16px;
    }
}

/* Donate Page Small Mobile Responsive Styles */
@media (max-width: 480px) {
    .cards {
        padding: 10px;
        gap: 10px;
    }

    .card {
        width: 95% !important;
        margin-top: 10px !important;
    }

    .card img {
        height: 150px;
    }

    .card9 {
        width: 95% !important;
        margin: 10px auto !important;
    }

    .card9 .card-img {
        height: 150px;
    }

    .card9 .card-text {
        padding: 15px;
    }

    .card-text h2 {
        font-size: 14px;
        line-height: 1.2;
    }

    .card-text p {
        font-size: 10px;
        line-height: 1.3;
    }

    .card-text button {
        font-size: 10px;
        padding: 6px 12px;
        width: 50%;
    }

    .card-text a {
        font-size: 10px;
    }

    .donatesec {
        padding: 15px;
    }

    .donatesec h2 {
        font-size: 20px;
    }

    .donatesec h3 {
        font-size: 14px;
    }

    .donatesec {
        height: 100%;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 250px !important;
        display: none !important;
    }

    .faq-right .big-img {
        width: 100%;
        margin-left: 0;
    }
}

/* Add Cart Page Responsive Styles */
/* Tablet Responsive Styles for Add Cart */
@media (max-width: 1024px) and (min-width: 769px) {
    .information {
        height: auto;
        flex-direction: column;
        padding: 20px;
    }

    .informationinner1 {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }

    .informationinner1 h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .informationinner1>div {
        padding: 20px;
        max-height: none;
    }

    .informationinner2 {
        width: 100%;
    }

    .infoiner-iner1 {
        padding: 20px;
        gap: 15px;
    }

    .infoiner-iner1 h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .infoiner-iner1>div {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .infoiner-iner1 select,
    .infoiner-iner1 input {
        width: 100%;
        height: 45px;
        font-size: 14px;
        padding: 10px;
    }

    .infoiner-iner1 h3 {
        font-size: 14px;
        width: 100%;
    }

    .infoiner-iner1 p {
        font-size: 14px;
        width: 100%;
    }

    .infoiner-iner1 small {
        font-size: 12px;
        line-height: 1.4;
        width: 100%;
    }

    .pay {
        width: 100%;
        height: 50px;
        font-size: 16px;
        margin-left: 0;
        margin-top: 20px;
    }

    .check-box3 {
        margin-bottom: 15px;
    }
}

/* Mobile Responsive Styles for Add Cart */
@media (max-width: 768px) {
    .information {
        height: auto;
        flex-direction: column;
        padding: 15px;
    }

    .informationinner1 {
        width: 100%;
        margin-bottom: 15px;
        padding: 0px;
    }

    .informationinner1 h3 {
        font-size: 20px;
        margin-bottom: 15px;
        /* text-align: center; */
    }

    .informationinner1>div {
        padding: 15px;
        max-height: none;
    }

    .informationinner2 {
        width: 100%;
    }

    .infoiner-iner1 {
        padding: 15px;
        gap: 12px;
    }

    .infoiner-iner1 h2 {
        font-size: 18px;
        margin-bottom: 12px;
        text-align: center;
    }

    .infoiner-iner1>div {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .infoiner-iner1 select,
    .infoiner-iner1 input {
        width: 100%;
        height: 40px;
        font-size: 14px;
        padding: 8px;
    }

    .infoiner-iner1 h3 {
        font-size: 13px;
        width: 100%;
        margin-bottom: 5px;
    }

    .infoiner-iner1 p {
        font-size: 13px;
        width: 100%;
        line-height: 1.4;
    }

    .infoiner-iner1 small {
        font-size: 11px;
        line-height: 1.3;
        width: 100%;
        margin-top: 15px;
    }

    .pay {
        width: 100%;
        height: 45px;
        font-size: 14px;
        margin-left: 0;
        margin-top: 15px;
    }

    .check-box3 {
        margin-bottom: 12px;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .check-box3 p {
        font-size: 12px;
        margin: 0;
    }

    .info-img-bar {
        margin-top: 15px;
    }

    .span3 {
        font-size: 12px;
        text-align: center;
        display: block;
        margin-top: 10px;
    }
}

/* Small Mobile Responsive Styles for Add Cart */
@media (max-width: 480px) {
    .information {
        padding: 10px;
    }

    .informationinner1 h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .informationinner1>div {
        padding: 10px;
    }

    .infoiner-iner1 {
        padding: 10px;
        gap: 10px;
    }

    .infoiner-iner1 h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .infoiner-iner1 select,
    .infoiner-iner1 input {
        height: 35px;
        font-size: 13px;
        padding: 6px;
        width: 87vw;
    }

    .infoiner-iner1 h3 {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .infoiner-iner1 p {
        font-size: 12px;
        line-height: 1.3;
    }

    .infoiner-iner1 small {
        font-size: 10px;
        line-height: 1.2;
        margin-top: 12px;
    }

    .pay {
        height: 40px;
        font-size: 13px;
        margin-top: 12px;
    }

    .check-box3 {
        margin-bottom: 10px;
        gap: 6px;
    }

    .check-box3 p {
        font-size: 11px;
    }

    .span3 {
        font-size: 11px;
        margin-top: 8px;
    }

    .total-last-rupe {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .infoiner-iner1>div {
        font-size: 4vw;
    }

    .infoiner-iner1 .check-box3 {
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: row;
        gap: 5vw;
    }

    .check {
        margin-left: 0px;
        width: 100%;
        height: 10vw;
        background-color: rgb(242, 186, 54);
        border-radius: 5px;
        font-family: Lato, sans-serif;
        font-size: 4vw;
        letter-spacing: 0.1vw;
        position: relative;
    }

    .info-img-bar1 {
        width: 5vw;
    }

    .info-img-bar2 {
        width: 13vw;
    }

    .main2 input[type="checkbox"].donate-10000+label {
        width: 100%;

    }

    #input-div-box {
        font-size: 13px;
        font-weight: 500;
    }

    .enter-own-amount {
        margin-right: 60px;
    }

    .footer-nbsp {
        display: none;
    }
}

@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Fix specific problematic elements */
}

/* ===== TERMS & CONDITIONS SECTION ===== */

.terms {
    background-color: #f9fafb;
    padding: 60px 20px;
}

.terms-container {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 40px 50px;
}

.terms-container h2 {
    text-align: center;
    font-family: Oswald, sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.terms-content {
    font-family: nunito, sans-serif;
    color: var(--black-color);
    line-height: 1.8;
    font-size: 16px;
}

.terms-content p {
    margin-bottom: 18px;
}

.terms-content strong {
    color: var(--primary-color);
}

.terms-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.terms-content li {
    margin-bottom: 6px;
    color: var(--black-color);
    font-size: 15px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .terms-container {
        padding: 30px 20px;
    }

    .terms-container h2 {
        font-size: 1.7rem;
    }

    .terms-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

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

    .terms-container {
        padding: 25px 15px;
    }

    .terms-container h2 {
        font-size: 1.5rem;
    }

    .terms-content li {
        font-size: 14px;
    }
}