* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Teachers", sans-serif;
}

p,
button {
    font-family: "Inter", sans-serif;
}

.container {
    max-width: 1320px;
    padding: 0 60px;
    margin: auto;
}

.header {
    background-color: black;
    padding: 20px 0;
}

.header .header-contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header .logo h2 {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.header .donate-btn {
    background-color: #FD7E14;
    color: white;
    padding: 0 40px;
    border-radius: 16px;
    height: 40px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}


.hero-image {
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 20px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.about-section {
    margin: 60px 0;
}

.about-section img {
    border-radius: 20px;
}

.about-section .about-contain h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-section .about-contain {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-section .about-contain p {
    font-size: 16px;
    color: #00000099;
    line-height: 28px;
}

.about-section .steps {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.about-section .steps .step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-section .steps .step span {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FD7E14;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-family: "Teachers", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #fff;
}

.about-section .steps .step h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.about-section .steps .mt-28 {
    margin-top: 28px;
}


.chant-section {
    padding: 60px 0;
    background-color: #FD7E1412;
}

.chant-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
}

.cards-carousel {
    position: relative;
}

.cards-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.cards-carousel .owl-nav button {
    pointer-events: all;
    background-color: #FD7E14;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.chant-section .owl-carousel .owl-nav button {
    background: #FD7E14 !important;
    color: #fff !important;
    border-radius: 50%;
}

.cards-carousel .owl-nav button:hover {
    background-color: #000;
    transform: scale(1.1);
}

.cards-carousel .owl-nav button.owl-prev {
    margin-left: -25px;
}

.cards-carousel .owl-nav button.owl-next {
    margin-right: -25px;
}

.carousel-arrow {
    font-weight: bold;
    font-size: 24px;
}

.cards-carousel .owl-stage-outer {
    padding: 20px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #FD7E14;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 4px 13px 0px #0000000D;
}

.card img {
    width: 100%;
    height: 343px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 14px 30px 30px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 34px;
    margin-bottom: 12px;
    line-clamp: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-content ul {
    font-size: 14px;
    color: #666;
    line-height: 20px;
    flex-grow: 1;
    font-family: "Inter", sans-serif;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    min-height: 110px;
}

.view-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    width: 100%;
    font-family: "Teachers", sans-serif !important;
    text-decoration: none;
    display: block;
    text-align: center;
}

.view-btn:hover {
    background-color: #FD7E14;
}


.seva-section {
    background: #fff;
    padding: 60px 0;
}

.seva-container {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
    background-color: #FD7E1480;
    padding: 44px 52px;
    border-radius: 20px;
}

.seva-content {
    flex: 1;
    color: #000;
}

.seva-content h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #000;
}

.seva-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 40px;
    color: #262525CC;
}

.donate-now-btn {
    background-color: #FD7E14;
    color: white;
    border: none;
    padding: 8px 48px;
    border-radius: 8px;
    font-size: 16px;
    height: 60px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.donate-now-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.seva-chart {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
}

.circular-progress {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: white;
    stroke-width: 18;
}

.progress-ring-circle {
    fill: none;
    stroke: #FD7E14;
    stroke-width: 18;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 514.59;
    transition: stroke-dashoffset 0.35s;
}

.progress-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.goal-label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background-color: #FD7E14;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}

.progress-number {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    font-family: "Teachers", sans-serif;
}

.progress-total {
    font-size: 13px;
    color: #000;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.progress-percent {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    font-family: "Inter", sans-serif;
}


.seva-acknowledgement-section {
    background: #FD7E1412;
    padding: 60px 0;
}

.seva-acknowledgement-section h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
    text-align: center;
}

.acknowledgement-slider {
    padding: 20px 0;
}

.acknowledgement-slider .owl-stage-outer {
    padding: 10px 0;
}

.acknowledgement-slider .acknowledgement-card {
    height: 100%;
}

.acknowledgement-slider {
    position: relative;
}

.acknowledgement-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.acknowledgement-slider .owl-nav button {
    pointer-events: all;
    background-color: rgba(253, 126, 20) !important;
    color: #fff !important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acknowledgement-slider .owl-nav button:hover {
    background-color: rgb(255, 119, 8) !important;
    color: #fff !important;
    transform: scale(1.05);
}

.acknowledgement-slider .owl-nav button.owl-prev {
    margin-left: -25px;
}

.acknowledgement-slider .owl-nav button.owl-next {
    margin-right: -25px;
}

.acknowledgement-slider.owl-theme .owl-nav {
    margin-top: -10px !important;
}

.acknowledgement-card {
    background-color: #fff;
    border: 2px solid #FD7E14;
    border-radius: 20px;
    padding: 32px;
    display: flex;

    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.acknowledgement-card:hover {
    box-shadow: 0px 8px 24px rgba(253, 126, 20, 0.15);
    transform: translateY(-4px);
}

.acknowledgement-card.selected {
    background-color: #ffead9;
    border-color: #FD7E14;
}

.acknowledgement-card.selected h3 {
    color: #FD7E14;
}

.acknowledgement-card.selected p {
    color: #000;
}

.acknowledgement-card.selected .card-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.acknowledgement-card .card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #f9f9f9;
}

.acknowledgement-card .card-icon img {
    object-fit: contain;
    width: 100%;
}

.acknowledgement-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.acknowledgement-card p {
    font-size: 14px;
    line-height: 22px;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    /* Acknowledgement grid is now a slider */
}


.video-section {
    background-color: #fff;
    padding: 60px 0;
}

.video-section h2 {
    color: black;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 60px;
    max-width: 709px;
}

.video-section .video {
    width: 100%;
    border-radius: 20px;
}

.relative {
    position: relative;
}

.video-section .play-btn {
    background-color: #FD7E14;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
}

.video-section .play-btn img {
    width: 22px;
}


.gallery-section {
    background-color: #FFF5EB;
    padding: 80px 0;
    overflow: hidden;
}

.gallery-section h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
    text-align: center;
}

.gallery-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.slider-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.gallery-slider {
    width: 100%;
    max-width: 1000px;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    pointer-events: none;
}

.gallery-slide img {
    width: 750px;
    height: 350px;
    object-fit: cover;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}


.gallery-slide.active {
    z-index: 5;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}


.gallery-slide.prev {
    z-index: 4;
    opacity: 1;
    transform: translate(-80%, -50%) scale(0.85) rotateY(10deg);
    pointer-events: all;
}


.gallery-slide.next {
    z-index: 4;
    opacity: 1;
    transform: translate(-20%, -50%) scale(0.85) rotateY(-10deg);
    pointer-events: all;
}


.gallery-slide.prev-2 {
    z-index: 3;
    opacity: 1;
    transform: translate(-100%, -50%) scale(0.7) rotateY(15deg);
}


.gallery-slide.next-2 {
    z-index: 3;
    opacity: 1;
    transform: translate(0, -50%) scale(0.7) rotateY(-15deg);
}


.gallery-nav {
    background-color: rgba(253, 126, 20, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    flex-shrink: 0;
    z-index: 10;
}

.gallery-nav:hover {

    color: #FD7E14;
    transform: scale(1.15);
}

.gallery-nav svg {
    width: 28px;
    height: 28px;
}


.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.gallery-dot.active {
    background-color: #FD7E14;
    width: 32px;
    border-radius: 5px;
}

.gallery-dot:hover {
    background-color: #FD7E14;
}


.contributors-section {
    background-color: #FFF5EB;
    padding: 80px 0;
}

.contributors-section h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    text-align: center;
}


.contributors-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.tab-btn {
    background-color: transparent;
    border: 2px solid #FD7E14;
    color: #000;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Teachers", sans-serif;
    text-transform: uppercase;
}

.tab-btn:first-child {
    border-radius: 50px 0 0 50px;
}

.tab-btn:last-child {
    border-radius: 0 50px 50px 0;
    border-left: none;
}

.tab-btn.active {
    background-color: #FD7E14;
    color: white;
}

.tab-btn:hover:not(.active) {
    background-color: rgba(253, 126, 20, 0.1);
}


.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


.contributors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}


.contributor-card {
    background-color: white;
    border: 2px solid #FD7E14;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.contributor-card:hover {
    box-shadow: 0px 8px 24px rgba(253, 126, 20, 0.15);
    transform: translateY(-4px);
}

.contributor-card.hidden-card {
    display: none;
}

.contributor-card.hidden-card.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contributor-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.contributor-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.contributor-info {
    flex: 1;
}

.contributor-info p {
    margin: 0;
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
}

.contributor-name {
    color: #FD7E14;
    font-weight: 700;
    font-size: 16px;
}

.donation-amount {
    font-weight: 600;
    color: #000;
}

.contribution-time {
    font-size: 13px !important;
    color: #666 !important;
    margin-top: 4px !important;
}

.contributor-message {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin: 0;
    font-family: "Inter", sans-serif;
}


.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-more-btn {
    background-color: transparent;
    border: 2px solid #FD7E14;
    color: #000;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: "Teachers", sans-serif;
}

.view-more-btn:hover {
    background-color: #FD7E14;
    color: white;
    transform: scale(1.05);
}

.view-more-btn.hidden {
    display: none;
}


@media (max-width: 768px) {
    .contributors-grid {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}



.testimonials-section {
    background-color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-section h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
    text-align: center;
}

.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.testimonials-slider {
    width: 100%;
    max-width: 1000px;
    overflow: visible;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 30px 20px;
    width: 350px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    pointer-events: none;
}

.testimonial-card.active {
    z-index: 5;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
    border-color: #FD7E14;
    box-shadow: 0 10px 40px rgba(253, 126, 20, 0.15);
    pointer-events: all;
}

.testimonial-card.prev {
    z-index: 4;
    opacity: 1;
    transform: translate(-170%, -50%) scale(1);
    pointer-events: all;
}

.testimonial-card.next {
    z-index: 4;
    opacity: 1;
    transform: translate(70%, -50%) scale(1);
    pointer-events: all;
}

.testimonial-card.prev-2 {
    z-index: 3;
    opacity: 0;
    transform: translate(-200%, -50%) scale(0.7);
}

.testimonial-card.next-2 {
    z-index: 3;
    opacity: 0;
    transform: translate(100%, -50%) scale(0.7);
}


.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-user {
    flex: 1;
}

.testimonial-user h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
    font-family: "Teachers", sans-serif;
}

.testimonial-user p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: "Inter", sans-serif;
}


.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 20px;
    color: #E5E7EB;
}

.star.filled {
    color: #FD7E14;
}


.testimonial-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px 0;
    font-family: "Teachers", sans-serif;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    font-family: "Inter", sans-serif;
}


.testimonial-nav {
    background-color: transparent;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    flex-shrink: 0;
    z-index: 10;
}

.testimonial-nav:hover {
    background-color: rgba(253, 126, 20, 0.1);
    color: #FD7E14;
    transform: scale(1.15);
}

.testimonial-nav svg {
    width: 28px;
    height: 28px;
}


.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background-color: #000;
}

.testimonial-dot:hover {
    background-color: #FD7E14;
}


@media (max-width: 1024px) {
    .testimonial-card {
        width: 300px;
        padding: 24px;
    }

    .testimonials-slider {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 280px;
        padding: 20px;
    }

    .testimonials-slider {
        height: 380px;
    }

    .testimonial-card.prev,
    .testimonial-card.next {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }

    .testimonial-card.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .testimonials-slider-wrapper {
        gap: 0;
    }
}






.stats-section {
    background: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-item h3 {
    font-size: 50px;
    font-weight: 700;
    color: #000;
}

.stat-item h6 {
    font-size: 26px;
    color: #00000099;
    line-height: 28px;
    font-weight: 600;
}


.faq-section {
    background-color: #fff;
    padding: 60px 0 100px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-header {
    position: sticky;
    top: 20px;
}

.faq-header h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #000;
}

.faq-header p {
    font-size: 16px;
    color: #000;
    line-height: 204%;
    max-width: 280px;
}

.faq-items {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #CED4DA;
    padding: 40px;
}

.faq-item.active {
    background-color: #FD7E1412;
    border-radius: 12px;
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 24px;
}

.faq-question h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.close-icon {
    font-weight: bold;
    font-size: 28px;
    display: none;
}

.plus-icon {
    font-weight: bold;
    display: block;
}

.faq-item.active .close-icon {
    display: block;
}

.faq-item.active .plus-icon {
    display: none;
}

.faq-answer {
    display: none;
    margin-top: 16px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 16px;
    color: black;
    line-height: 204%;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.blog-section {
    background-color: #FD7E1412;
    padding: 60px 0;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.more-news-btn {
    background-color: transparent;
    border: 2px solid #FD7E14;
    color: #000;
    padding: 18.5px 53px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: "Teachers", sans-serif;
}

.more-news-btn:hover {
    background-color: #FD7E14;
    color: white;
}

/* Featured Content Section */
.featured-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, #FD7E1410 0%, #FFF5EB 100%);
    padding: 60px 0;
    /* border-radius: 24px; */
    margin-bottom: 60px;
    /* border: 2px solid #FD7E1430; */
}

.featured-content-container {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    justify-content: space-between;
}

.featured-text {
    flex: 1;
    max-width: 600px;
}

.featured-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.featured-text p {
    font-size: 16px;
    line-height: 28px;
    color: #00000099;
    margin-bottom: 32px;
}

.featured-cta-btn {
    display: inline-block;
    background-color: #FD7E14;
    color: white;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Teachers", sans-serif;
    box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
}

.featured-cta-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.featured-image {
    flex: 1;
    max-width: 500px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.featured-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 1440px) {
    .gallery-slide img {
        width: 600px;
        height: 300px;
    }

    .testimonial-card.prev {
        transform: translate(-110%, -50%) scale(1);
    }

    .testimonial-card.next {
        transform: translate(10%, -50%) scale(1);
    }

    .testimonial-card.prev-2 {
        transform: translate(-200%, -50%) scale(0.7);
    }

    .testimonial-card.next-2 {
        transform: translate(100%, -50%) scale(0.7);
    }
}

@media (max-width: 768px) {
    .gallery-slide img {
        width: 450px;
        height: 250px;
        border-radius: 30px;
    }

    .gallery-slider {
        height: 350px;
    }
}

/* Mobile Responsiveness for Featured Content */
@media (max-width: 968px) {
    .featured-content {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .featured-text {
        max-width: 100%;
    }

    .featured-text h2 {
        font-size: 32px;
    }

    .featured-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .featured-content {
        padding: 30px 20px;
    }

    .featured-text h2 {
        font-size: 28px;
    }

    .featured-text p {
        font-size: 14px;
        line-height: 24px;
    }

    .featured-cta-btn {
        padding: 14px 36px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #FD7E14;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 40px 0px #0000000D;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    width: 100%;
    height: 307px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-date {
    font-size: 14px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.blog-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.blog-description {
    font-size: 16px;
    color: #00000099;
    line-height: 20px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s ease;
    font-family: "Teachers", sans-serif;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: #FD7E14;
}


.volunteer-section {
    background-color: #f5f5f5;
    padding: 60px 24px;
}

.volunteer-container {
    display: flex;
    background: #F8F9FA;
    border-radius: 24px;
    border: 2px solid #000;
    padding: 0 !important;
}

.volunteer-info {
    background-color: #000;
    color: white;
    padding: 40px;
    border-radius: 20px 0 0 20px;
    display: flex;
    flex-direction: column;
    max-width: 416px;
}

.volunteer-info h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.volunteer-info p {
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF99;
    margin-bottom: 50px;
}

.volunteer-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    font-size: 20px;
    min-width: 24px;
}

.contact-item p {
    font-size: 20px;
    color: #fff;
    margin: 0;
    font-family: "Teachers", sans-serif;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 50px;
}


.volunteer-form {
    padding: 40px;
    width: 100%;
    font-family: "Inter", sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    font-family: "Teachers", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #f3f3f3;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FD7E14;
}

.form-group textarea {
    height: 148px;
}

.send-btn {
    background-color: #FD7E14;
    color: white;
    border: none;
    padding: 16px 46px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    font-family: "Teachers", sans-serif;
    margin-top: 40px
}

.send-btn:hover {
    background-color: #e67e04;
}


.footer {
    background-color: #191D23;
    color: white;
    padding: 60px 0 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px !important;
    border-bottom: 1px solid #333;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.footer-logo {
    width: 100px;
    height: 100px;
    background-color: #E85D4A;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.footer-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.footer-text {
    font-size: 16px;
    line-height: 24px;
    color: #ccc;
    margin: 0;
    flex: 1;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: #FD7E14;
    border-color: #FD7E14;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 14px;
    color: #6E6B6B;
}


@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .chant-section h2 {
        font-size: 32px;
    }
}




.donation-page {
    padding: 40px 0 80px 0;
}


.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    font-family: "Inter", sans-serif;
}

.breadcrumb a {
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb span {
    color: black;
    display: flex;
    align-items: center;
}

.breadcrumb a:hover {
    color: #FD7E14;
}

.separator {
    color: #999;
}


.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}


.donation-form-wrapper {
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}


.donation-header {
    margin-bottom: 40px;
}

.donation-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.donation-header h2 .amount {
    color: #000;
    font-weight: 700;
}

.amount-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background-color: #F8F9FA;
    border-radius: 50px;
    padding: 12px 24px;
    width: fit-content;
}

.rupee-symbol {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.amount-value {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    font-family: "Teachers", sans-serif;
}


.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}


.donation-form {
    width: 100%;
}

.donation-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.donation-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.donation-form .form-group.full-width {
    grid-column: 1 / -1;
}

.donation-form .form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.donation-form .form-group input {
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    transition: border-color 0.3s, background-color 0.3s;
}

.donation-form .form-group input:focus {
    outline: none;
    border-color: #FD7E14;
    background-color: #fff;
}

.donation-form .form-group input::placeholder {
    color: #9CA3AF;
}


.form-footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #E5E7EB;
}

.donation-total {
    display: flex;
    gap: 8px;
    font-family: "Teachers", sans-serif;
    align-items: center;
}

.total-label {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.total-amount {
    font-size: 28px;
    font-weight: 700;
    color: #FD7E14;
    font-family: "Teachers", sans-serif;
}


@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .donation-form-wrapper {
        padding: 24px;
    }

    .donation-form .form-row {
        grid-template-columns: 1fr;
    }

    .rupee-symbol {
        font-size: 24px;
    }

    .amount-value {
        font-size: 24px;
    }

    .form-footer {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .donation-total {
        align-items: center;
    }

    .donate-now-btn {
        width: 100%;
    }
}


/* Square Feet Donation Page Styles */
.square-feet-donation-page {
    padding: 40px 0 80px 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-square {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.live-text {
    font-size: 96px;
    font-weight: 700;
    font-family: "Teachers", sans-serif;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.darshan-text {
    font-size: 96px;
    font-weight: 400;
    font-family: "Teachers", cursive;
    font-style: italic;
    line-height: 1;
    margin-top: -20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.location-text {
    font-size: 20px;
    font-weight: 600;
    font-family: "Teachers", sans-serif;
    letter-spacing: 3px;
    margin-top: 10px;
    border-top: 2px dotted white;
    border-bottom: 2px dotted white;
    padding: 8px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.square-feet-form-wrapper {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 50px;
    margin-top: 30px;
}

.form-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    font-family: "Teachers", sans-serif;
}

.square-feet-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.square-feet-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.square-feet-form .form-group.full-width {
    grid-column: 1 / -1;
}

.square-feet-form .form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    font-family: "Teachers", sans-serif;
}

.square-feet-form .form-group input {
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.square-feet-form .form-group input:focus {
    outline: none;
    border-color: #FD7E14;
    box-shadow: 0 0 0 3px rgba(253, 126, 20, 0.1);
}

.square-feet-form .form-group input::placeholder {
    color: #9CA3AF;
}

.square-feet-form .form-group input[readonly] {
    background-color: #F9FAFB;
    color: #000;
    font-weight: 600;
}

.quick-amount-section {
    margin: 30px 0;
}

.quick-amount-buttons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.quick-btn {
    background-color: #FD7E14;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Teachers", sans-serif;
}

.quick-btn:hover {
    background-color: #e67e04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
}

.quick-btn:active {
    transform: translateY(0);
}

.square-feet-form .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 40px 0 24px 0;
    font-family: "Teachers", sans-serif;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #FD7E14;
}

.checkbox-text {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
}

.donation-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid #E5E7EB;
}

.donation-total-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.donation-summary .total-label {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    font-family: "Teachers", sans-serif;
}

.donation-summary .total-amount {
    font-size: 32px;
    font-weight: 700;
    color: #FD7E14;
    font-family: "Teachers", sans-serif;
}

.donate-now-btn-large {
    background-color: #FD7E14;
    color: white;
    border: none;
    padding: 16px 60px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: "Teachers", sans-serif;
}

.donate-now-btn-large:hover {
    background-color: #e67e04;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 126, 20, 0.3);
}

.donate-now-btn-large:active {
    transform: translateY(0);
}

/* Responsive Styles for Square Feet Page */
@media (max-width: 1024px) {
    .quick-amount-buttons {
        grid-template-columns: repeat(3, 1fr);
    }

    .live-text,
    .darshan-text {
        font-size: 72px;
    }

    .location-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .square-feet-form-wrapper {
        padding: 30px 20px;
    }

    .form-main-title {
        font-size: 24px;
    }

    .square-feet-form .form-grid {
        grid-template-columns: 1fr;
    }

    .quick-amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-text,
    .darshan-text {
        font-size: 48px;
    }

    .location-text {
        font-size: 14px;
    }

    .hero-image-square {
        height: 300px;
    }

    .donation-summary {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .donate-now-btn-large {
        width: 100%;
    }

    /* Additional Square Feet Page Responsive Styles */
    .breadcrumb {
        font-size: 13px;
        padding: 12px 0;
    }

    .page-title {
        font-size: 28px !important;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 18px !important;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .square-feet-form .form-group label {
        font-size: 13px;
    }

    .square-feet-form .form-group input {
        font-size: 14px;
        padding: 12px 16px;
        height: 48px;
    }

    .quick-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .checkbox-group {
        gap: 12px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .checkbox-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .total-label {
        font-size: 16px;
    }

    .total-amount {
        font-size: 24px;
    }
}

/* Additional responsive styles for very small screens */
@media (max-width: 480px) {
    .square-feet-form-wrapper {
        padding: 20px 16px;
    }

    .form-main-title {
        font-size: 20px !important;
        margin-bottom: 20px;
    }

    .page-title {
        font-size: 24px !important;
    }

    .breadcrumb {
        font-size: 12px;
        padding: 10px 0;
    }

    .quick-amount-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .quick-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .section-title {
        font-size: 16px !important;
    }

    .checkbox-label {
        font-size: 12px;
        padding: 10px 0;
    }

    .checkbox-text {
        font-size: 12px;
    }

    .total-label {
        font-size: 14px;
    }

    .total-amount {
        font-size: 20px !important;
    }

    .donate-now-btn-large {
        padding: 14px 24px;
        font-size: 14px;
        height: 48px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .quick-amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .square-feet-form .form-group input {
        font-size: 13px;
        padding: 10px 14px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background-color: #FD7E14;
    color: white;
    transform: rotate(90deg);
}

.modal-content {
    padding: 50px 40px 40px;
}

.modal-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    font-family: "Teachers", sans-serif;
}

.modal-hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.modal-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.modal-donation-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E5E7EB;
}

.modal-donation-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.modal-amount {
    color: #FD7E14;
    font-weight: 700;
}

/* Scrollbar styling for modal */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #FD7E14;
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: #e67e04;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .modal-content {
        padding: 40px 20px 30px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* ========== TABLET & BELOW (1024px) ========== */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    /* Header */
    .header .logo h2 {
        font-size: 14px;
    }

    .header .donate-btn {
        padding: 0 30px;
        height: 36px;
        font-size: 14px;
    }

    /* Hero */
    .hero-image {
        height: 450px;
    }

    /* About Section */
    .about-section .about-contain {
        gap: 40px;
    }

    .about-section .about-contain h2 {
        font-size: 38px;
    }

    .about-section .about-contain img {
        max-width: 350px;
    }

    /* Cards Carousel */
    .card-content h3 {
        font-size: 20px;
    }

    /* Seva Section */
    .seva-container {
        padding: 32px 40px;
        gap: 40px;
    }

    .seva-content h2 {
        font-size: 44px;
    }

    .circular-progress {
        width: 260px;
        height: 260px;
    }

    /* Gallery */
    .gallery-slide img {
        width: 450px;
        height: 250px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-item h6 {
        font-size: 20px;
        line-height: normal;
    }

    /* Contributors */
    .contributors-section h2 {
        font-size: 42px;
    }

    /* Testimonials */
    .testimonial-card {
        max-width: 600px;
    }

    .volunteer-form {
        padding: 24px;
    }

    /* FAQ */
    .faq-container {
        gap: 40px;
    }

    .faq-header h2 {
        font-size: 38px;
    }

    /* Footer */
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .volunteer-container {
        flex-direction: column;
    }

    .volunteer-info {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        padding: 30px 24px;
    }

    .volunteer-info h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .volunteer-info p {
        font-size: 14px;
    }
}

/* ========== MOBILE & TABLET (768px) ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Header */
    .header {
        padding: 16px 0;
    }

    .header .logo img {
        width: 32px;
        height: 32px;
    }

    .header .logo h2 {
        font-size: 12px;
    }

    .header .donate-btn {
        padding: 0 20px;
        height: 32px;
        font-size: 12px;
        border-radius: 12px;
    }

    /* Hero */
    .hero-image {
        height: 300px;
        border-radius: 12px;
    }

    /* About Section */
    .about-section {
        margin: 40px 0;
    }

    .about-section .about-contain {
        flex-direction: column;
        gap: 30px;
    }

    .about-section .about-contain img {
        max-width: 100%;
        width: 100%;
    }

    .about-section .about-contain h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-section .about-contain p {
        font-size: 14px;
        line-height: 24px;
    }

    .about-section .steps {
        flex-direction: column;
        gap: 16px;
    }

    .about-section .steps .mt-28 {
        margin-top: 0;
    }

    .about-section .steps .step h4 {
        font-size: 16px;
    }

    /* Chant Section */
    .chant-section {
        padding: 40px 0;
    }

    .chant-section .container {
        padding: 0 30px !important;
    }

    .chant-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .cards-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .card-content {
        padding: 12px 20px 20px;
    }

    .card-content h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .card-content ul {
        font-size: 13px;
        padding-left: 20px;
        min-height: auto;
    }

    .view-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Seva Section */
    .seva-section {
        padding: 40px 0;
    }

    .seva-container {
        flex-direction: column-reverse;
        padding: 30px 24px;
        gap: 30px;
    }

    .seva-content h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .seva-content p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .donate-now-btn {
        width: 100%;
        padding: 8px 24px;
        font-size: 14px;
        height: 48px;
    }

    .circular-progress {
        width: 220px;
        height: 220px;
    }

    .progress-number {
        font-size: 32px;
    }

    .progress-total {
        font-size: 12px;
    }

    /* Seva Acknowledgement */
    .seva-acknowledgement-section {
        padding: 40px 0;
    }

    .seva-acknowledgement-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .acknowledgement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .acknowledgement-card {
        padding: 24px;
    }

    .acknowledgement-card .card-icon {
        min-width: 60px;
        height: 60px;
    }

    /* Video Section */
    .video-section {
        padding: 40px 0;
    }

    .video-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .video-section .play-btn {
        width: 60px;
        height: 60px;
    }

    .video-section .play-btn img {
        width: 18px;
    }

    /* Gallery */
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .gallery-slider {
        height: 300px;
    }

    .gallery-slide img {
        width: 100%;
        max-width: 400px;
        height: 250px;
        border-radius: 20px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .slider-navigation {
        gap: 20px;
    }

    /* Statistics */
    .stats-section {
        padding: 40px 0;
    }

    .stat-item {
        padding: 24px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item h6 {
        font-size: 13px;
    }

    /* Contributors */
    .contributors-section {
        padding: 40px 0;
    }

    .contributors-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contributors-tabs {
        flex-direction: column;
        gap: 12px;
    }

    .tab-btn {
        padding: 14px 40px;
        font-size: 14px;
        border-radius: 50px !important;
        border: 2px solid #FD7E14 !important;
    }

    .contributors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contributor-card {
        padding: 20px;
    }

    .contributor-avatar {
        width: 50px;
        height: 50px;
    }

    .contributor-name {
        font-size: 15px;
    }

    .contributor-message {
        font-size: 13px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .testimonials-slider {
        height: auto;
        min-height: 350px;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 16px;
    }

    .testimonial-header {
        flex-wrap: wrap;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-card h3 {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 0 60px 0;
    }

    .faq-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .faq-header {
        text-align: center;
        position: unset;
        width: 100%;
    }

    .faq-header br {
        display: none;
    }

    .faq-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .faq-header p {
        font-size: 14px;
        max-width: 100%;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-items {
        width: 100%;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faq-toggle {
        width: 40px;
        height: 40px;
    }

    /* Blog/Featured Content */
    .blog-section {
        padding: 40px 0;
    }

    .blog-header h2 {
        font-size: 28px;
    }

    .featured-content {
        padding: 40px 0;
    }

    .featured-content-container {
        flex-direction: column;
        gap: 30px;
    }

    .featured-text h2 {
        font-size: 28px;
    }

    .featured-text p {
        font-size: 14px;
        line-height: 24px;
    }

    .featured-cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 36px;
    }

    .featured-image {
        max-width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card h3 {
        font-size: 20px;
    }

    .blog-description {
        font-size: 13px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 16px;
    }

    .volunteer-btn {
        padding: 14px 32px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-content {
        align-items: center;
        flex-direction: column;
    }

    .footer-content img {
        max-width: 180px;
    }

    .footer-text {
        font-size: 14px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-link-group h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ========== SMALL MOBILE (480px) ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Typography adjustments */
    h1 {
        font-size: 24px !important;
    }

    h2 {
        font-size: 22px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    /* Header */
    .header .donate-btn {
        padding: 0 16px;
        font-size: 11px;
    }

    /* Hero */
    .hero-image {
        height: 220px;
    }

    /* About */
    .about-section .about-contain h2 {
        font-size: 24px !important;
    }

    .about-section .steps .step {
        gap: 12px;
    }

    .about-section .steps .step span {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    /* Sections */
    .chant-section h2,
    .seva-acknowledgement-section h2,
    .video-section h2,
    .gallery-section h2,
    .contributors-section h2,
    .testimonials-section h2,
    .blog-header h2 {
        font-size: 24px !important;
    }

    /* Seva */
    .seva-content h2 {
        font-size: 28px !important;
    }

    .progress-number {
        font-size: 24px !important;
    }

    .goal-label {
        font-size: 10px;
        padding: 3px 10px;
    }

    .stat-item h3 {
        font-size: 24px !important;
    }

    /* Gallery */
    .gallery-slider {
        height: 250px;
    }

    .gallery-slide img {
        height: 200px;
    }

    /* Contributors */
    .tab-btn {
        padding: 12px 30px;
        font-size: 13px;
        width: 100%;
    }

    /* FAQ */
    .faq-header h2 {
        font-size: 24px !important;
    }

    .faq-question h3 {
        font-size: 14px !important;
    }

    .faq-toggle {
        width: 36px;
        height: 36px;
    }

    /* Featured Content */
    .featured-text h2 {
        font-size: 24px !important;
    }

    .featured-cta-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* ========== EXTRA SMALL MOBILE (360px) ========== */
@media (max-width: 360px) {

    .header .logo h2 {
        display: none;
    }

    .hero-image {
        height: 200px;
    }

    .card-content {
        padding: 10px 16px 16px;
    }

    .acknowledgement-card {
        padding: 16px;
    }

    .footer-content img {
        max-width: 150px;
    }
}

.square-feet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
}

.square-feet-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay-square {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10000;
}

.modal-container-square {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    margin: 40px auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-square {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FD7E14;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
}

.modal-close-square:hover {
    background: #000;
    transform: rotate(90deg);
}

.modal-close-square svg {
    width: 20px;
    height: 20px;
}

.modal-content-square {
    padding: 40px;
}

.modal-header-square {
    margin-bottom: 20px;
}

.modal-header-square .page-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

body.modal-open-square {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-container-square {
        width: 95%;
        max-height: 95vh;
        margin: 20px auto;
    }

    .modal-content-square {
        padding: 30px 20px;
    }

    .modal-header-square .page-title {
        font-size: 32px;
    }

    .modal-close-square {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}
