.CaraoselImage .imageWrapper {
    position: relative;
    width: 100%;
    height: 470px;
    overflow: hidden;
    animation: parallaxZoom 20s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;

}

@keyframes parallaxZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.03);
    }

    /* Reduced zoom for subtle effect */
}

.CaraoselImage img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    opacity: 0.9;
}

.CaraoselImage {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.CaraoselImage.active {
    opacity: 1;
    transform: none;
}

.prev {
    background-color: rgba(255, 0, 0, 0.345);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.4s ease;
}

.prev:hover {
    background-color: rgba(255, 0, 0, 0.7);
    transform: scale(1.2) translateY(-5px);
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0.5) 70%,
            rgba(255, 255, 255, 1) 100%
        );
    pointer-events: none;
}












/* Main container with rich background & smooth transitions */
.upcoming-festivals-container {
    padding: 60px 20px;
    border-radius: 15px;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(15, 15, 15, 0.648), rgba(25, 25, 25, 0.516));
    animation: fadeIn 1.5s ease-in-out;
}

/* Title with enhanced glow and bold appearance */
.upcoming-festivals-heading {
    font-size: 50px;
    font-weight: 900;
    color: white;
    /* text-transform: uppercase; */
    font-family: serif;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.9), 0 0 30px rgba(240, 165, 61, 0.8);
    animation: neonGlow 1.5s infinite alternate;
    margin-bottom: 40px;
}

/* Festival card container */
.festival-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    width: 60%;
}

/* Professionally styled festival card */
.upcoming-festival {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(240, 165, 61, 0.1));
    border-radius: 15px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5), 0 0 15px rgba(240, 165, 61, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid rgba(255, 69, 0, 0.7);
    position: relative;
}

/* 3D hover effect */
.upcoming-festival:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.8), 0 0 25px rgba(240, 165, 61, 0.7);
    /* background: rgba(255, 255, 255, 0.2); */
}

/* Festival title - brighter and more prominent */
.upcoming-festival h2 {
    font-size: 26px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.9), 0 0 20px rgba(240, 165, 61, 0.7);
}

/* Festival date - styled as a glowing badge */
.festival-date {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.6), rgba(240, 165, 61, 0.6));
    padding: 6px 18px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
}

/* Description text */
.upcoming-festival p {
    font-size: 19px;
    color: #eee;
    font-family: sans-serif;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .upcoming-festivals-heading {
        font-size: 34px;
    }

    .festival-cards {
        flex-direction: column;
        align-items: center;
    }

    .upcoming-festival {
        width: 85%;
    }
}

/* Smooth fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Neon Glow Animation */
@keyframes neonGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 69, 0, 0.9), 0 0 25px rgba(240, 165, 61, 0.7);
    }

    to {
        text-shadow: 0 0 30px rgba(255, 69, 0, 1), 0 0 35px rgba(240, 165, 61, 1);
    }
}

/* hero section end */

/* about us section start */
.about-us-section-main {
    background: linear-gradient(115deg, #ff3a2c 0%, #fba860 100%);
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.about-us-section {
    width: 100%;
    background: #FEF4EA;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.about-us-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-us-image {
    width: 50%;
    height: 450px;
}

.about-us-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.about-us-image img:hover {
    transform: scale(1.02);
}

.about-us-text {
    width: 50%;
    padding: 20px;
}

.about-us-text h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.about-us-text h6 {
    color: #503248;
}

.about-us-text h1::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background-color: #ff3a2c;
    margin-top: 5px;
}

.read-more-btn button {
    background-color: #ff3a2c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 3px;
}

.about-us-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-us-content {
        flex-direction: column;
        text-align: center;
    }

    .about-us-text {
        padding-top: 20px;
    }
}

/* about us section end */

/* aboutpage section start */
.aboutSection {
    position: relative;
    padding: 50px 0px;
    background-color: #fba86021;
}

.aboutContentTypes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;

}

.aboutContentTypes a {
    text-decoration: none;
}

.aboutContentTypes button {
    padding: 11px 35px;
    border: none;
    background-color: transparent;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: orangered;
}

.aboutContentTypes button:hover {
    background-color: #0D6EFD;
    color: white;
    padding-left: 45px;
}

.aboutContent {
    padding: 100px 20px;
    position: relative;
}

.aboutContent h1 {
    font-size: 40px;
    font-weight: bold;
    color: #503248;
    padding: 10px 0px;
    padding-bottom: 20px;
    font-family: math;
}

.aboutContent h3 {
    color: #DB4242;
    font-size: 20px;
    font-weight: bold;
}

.aboutContentImage1 {
    width: 40%;
    height: 250px;
    position: relative;
}

.aboutContentImage1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.aboutContentImage2 {
    width: 30%;
    height: 500px;
    position: absolute;
    top: 20%;
    left: 13%;
    z-index: 3;


}

.aboutContentImage2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* .aboutContentImage3 {
    width: 15%;
    height: 200px;
    position: absolute;
    top: 75%;
    left: 35%;
} */

.aboutContentType {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 40%;
}

.aboutContentType h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 500;

}

.aboutContentTypeIcon {
    width: 40px;
    height: 40px;
    background-color: #F9DDDD;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DB4242;
    border-radius: 100px;
}

.aboutContentTypeIcon i {
    font-weight: bold;
    font-size: 20px;
}

.aboutContentPara {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-left: 4px double #7E4555;
    outline: 2px dotted #7E4555;
    outline-offset: -4px;
}

.aboutContentPara p {
    color: #777777;
    line-height: 30px;
    margin: 0;
}

/* aboutpage section end */


/* testimonial section start */
.carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carouselContainer {
    width: 100%;
    overflow: hidden;
}

.carouselWrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(100% * (2/ 2));
    /* Added gap between cards */
    gap: 2%;
}

.carouselWrapper .cards {
    width: calc(98% / 2);
    flex-shrink: 0;
    padding: 20px 30px;
    background-color: #F8FBFF;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    gap: 10px;

}

.cards .description {
    color: #6A5444;
    line-height: 30px;
    letter-spacing: 0.5px;
    font-size: 16px;
}

.cardTestimonialText p {
    line-height: 25px;
    margin: 0;
}

.cardTestimonialText .stars {
    display: flex;
    gap: 5px;
    padding-top: 10px;
}

.cardTestimonialText .stars i {
    color: #FFA80A;
    font-size: 12px;
}

.card:nth-child(1) {
    margin-left: 0;
}

.card:nth-last-child(1) {
    margin-right: 0;
}

.card:hover {
    transform: scale(1.05);
}

.image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 5px;
}

.cardTestimonialImage {
    position: relative;
    width: 100px;
    height: 100px;
}

.testimonialIcon {
    background-color: #FD6C44;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    left: 50%;
    bottom: -40%;
    transform: translate(-50%, -50%);
    border-radius: 3px;

}

.testimonialIcon i {
    font-size: 17px;
}

.text {
    font-style: italic;
    font-size: 16px;
}

.author {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px !important;
    color: #7E4555;
}

.description {
    font-size: 15px;
    color: #00000098;
    margin-top: 10px !important;
    letter-spacing: 0.5px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 50px;
}

.buttons button {
    background-color: rgba(0, 0, 0, 0.132);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    border-radius: 100px;
    width: 40px;
    height: 40px;

}

.buttons button:disabled {
    background-color: #cccccc5f;
    cursor: not-allowed;
}

.buttons button:hover:not(:disabled) {
    background-color: #7E4555;
}

/* testimonial section end */



/* get in touch section start */
.getInTouchMains {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url("https://img.freepik.com/free-photo/3d-representation-hindu-deity-krishna_23-2151200101.jpg?t=st=1739168870~exp=1739172470~hmac=9e63d88e45fc1c016c3c07be8ffa5ca9bc4bc258b887e1feaf5fe682a90aacbd&w=1060");
    background-size: contain;
    background-position: -150px center;
    padding: 80px 0px;
}

.getInTouchMain {
    display: flex;
    justify-content: end;
}

.getInTouchMains .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: red;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 40%, #FF4E36 80%);

}

.getInTouchMains .getInTouchForm {
    position: relative;
    background: rgba(255, 255, 255, 0.989);
    padding: 30px;
    border-radius: 8px;
    width: 50%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.002);
}


.getInTouchMains .getInTouchForm h2 {
    margin-bottom: 20px;
    color: white;
    text-align: start;
    font-weight: bold;
}

.getInTouchMains .rows {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.getInTouchMains .inputGroup {
    position: relative;
    width: 100%;
}

.getInTouchMains .inputGroup input {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.258);
    color: white;
}

.inputGroupTextarea textarea {
    background-color: rgba(255, 255, 255, 0.258);
    color: white;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    border: none;
}

.inputGroupTextarea textarea::placeholder {
    color: white;
}

.getInTouchMains .inputGroup input::placeholder {
    color: white;
}

.getInTouchMains .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 18px;
}

@media (max-width: 500px) {
    .getInTouchMains .row {
        flex-direction: column;
    }
}

.submitBtn {
    margin-top: 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(241, 2, 2, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: orangered;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    padding: 10px 50px;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;

}

.submitBtn .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
    transition: all 0.3s ease;
}

.submitBtn:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.submitBtn:hover .icon {
    transform: translate(4px);
}

.submitBtn:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.submitBtn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.submitBtn:hover {
    background-color: blue;
    border: none;
}

/* get in touch section end */

/* news latter section start */

.newsLatter {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsLatterPhone {
    width: 50%;
    background-color: #7E4555;
    padding: 35px;
    color: white;
    position: relative;
}

.newsLatterPhoneImage {
    position: absolute;
    top: -40%;
    left: -17%;
}

.newsLatterPhoneImage img {
    width: 100% !important;
    height: 200px !important;
    height: auto;
}

.newsLatterOr {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 0px -15px;
    z-index: 4;
    border-radius: 5px;



}

.newsLatter .or {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    width: 60px;
    height: 60px;
    color: orangered;
}

.newsLatterEmail {
    background-color: #7E4555;
    width: 50%;
    padding: 35px 40px;
    color: white;
    position: relative;
}

.newsLatterEmailImage {
    position: absolute;
    top: -33%;
    right: -20%;
}

.newsLatterEmailImage img {
    width: 100% !important;
    height: 250px;
}

.newsLatterPhone p {
    font-size: 15px;
    font-weight: bold;
}

.newsLatterPhone a {
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
}

.newsLatterOr {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.newsLatterEmail {
    display: flex;
    align-items: center;
    position: relative;
}

.newsLatterEmailField p {
    padding: 0;
    text-align: start;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0px;
    font-family: sans-serif;
}

.emailInput {
    padding: 18px;
    font-size: 16px;
    border: 1px solid #ccc;
    width: 300px;
    background-color: rgb(163, 89, 110);
    outline: none;
    border: none;
    color: white;
    margin: 5px 0px;
    border-radius: 5px 0px 0px 5px;
}

.emailInput::placeholder {
    color: white;
}

.emailButton {
    background-color: rgb(92, 57, 67);
    border: none;
    padding: 21px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 5px 5px 0px;
    transition: all 0.3s ease;
}

.emailButton:hover {
    background-color: #0D6EFD;
    cursor: pointer;
}

.emailIcon {
    color: white;
    font-size: 18px;
}

/* news latter section end */



.TestimonialCarousel {
    background-image: linear-gradient(115deg, #ff3a2c 0%, #fba860 100%);
    padding: 40px 0px;

}

.TestimonialCarousel h1 {
    text-align: center;
    color: white;
    font-weight: bold;
    letter-spacing: 0.5px;
    font-family: math;
}

.TestimonialCarouselTitle h5 {
    color: white;
}

.HomeCaraousel {
    margin-top: 0px;
}

.services {
    background-image: linear-gradient(115deg, #ff3a2c 0%, #fba860 100%);
    padding: 40px 0px;
}

.services .ourFestivalTopTitle {
    color: white;
}

.services h2 {
    padding-bottom: 40px;
    font-weight: bold;
    color: white;
    font-family: math;
    font-size: 45px;
    text-align: center;
}

.servicesAllCard {
    display: flex;
    gap: 30px;
}

.servicesAllCard a {
    text-decoration: none;
}

.servicesCard {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 30px;
    padding-bottom: 40px;
    border-radius: 5px;
}

.servicesCard h4 {
    padding: 15px 0px;
    color: orangered;
    font-family: math;
    font-weight: bold;
    font-size: 25px;
}

.servicesCard p {
    color: #6A5444;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
}



.servicesCard button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: orangered;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    /* border: 3px solid #ffffff4d; */
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    padding: 10px 40px;
    transition: all 0.3s ease;
    border: none;

}

.servicesCard .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
    transition: all 0.3s ease;
}

.servicesCard button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.servicesCard button:hover .icon {
    transform: translate(4px);
}

.servicesCard button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.servicesCard button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.servicesCard button:hover {}

.servicesCard button:hover {
    padding-left: 60px;
    background-color: blue;
}

.donateUs {
    background-color: #fba86021;
    padding: 50px 0px;
    padding-bottom: 20px;
}

.donateUs h1 {
    font-family: math;
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 40px;
    text-align: center;
}

.donateUsCard {
    padding: 0;
    padding-bottom: 40px;
}

.donateUsCard-read-more-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    margin-top: 20px;
}

.donateUsCard-read-more-btn a {
    color: orangered;
    font-weight: bold;
    transition: all 0.3s ease;
}

.donateUsCard-read-more-btn a:hover {
    color: orange;
}

.donateUsCardImg {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* .donateOverlay {
    background-color: rgba(255, 0, 0, 0.416);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
} */

.donateUsCardImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}

.donateUsCardImg img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.donateUsCard h3 {
    padding: 10px 20px;
    color: #503248;
    font-size: 25px;
}

.donateUsCard p {
    padding: 0px 25px;
    margin-bottom: 20px;
    color: #6A5444;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.donateUsCard span {
    margin: 0px 25px;
    color: green;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.donateUsCard button {
    margin: 0px 20px;
    /* margin-top: 20px; */
}

/* our fectival section start */
.ourFestival {
    background-color: #fba8602f;
    padding: 40px 0px;
    padding-top: 20px;
    padding-bottom: 70px;
}

.ourFestivalTopTitle {
    text-align: center;
    color: #Db4242;
    font-size: 10px;
    text-transform: uppercase;
}

.ourFestivalTopTitle h5 {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 3px;
}

.ourFestival h1 {
    color: #7E4555;
    font-family: math;
    text-align: center;
    font-weight: bold;
    padding-bottom: 40px;
}

.ourFestivalAllCard {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.ourFestivalCard {
    width: 31.5%;
}

.ourFestivalCardImg {
    overflow: hidden;
}


.ourFestivalCardImg img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.ourFestivalCardImg img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.ourFestivalCardTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px;
    background-image: linear-gradient(to right, #562C39 0%, #562C39 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left;
    transition: background-size 0.5s ease-in-out;
    color: black;
    text-decoration: none;

}

.ourFestivalCardTitle:hover {
    background-size: 100% 100%;
    color: white;
    cursor: pointer;
}

.ourFestivalCardTitle:hover h3,
.ourFestivalCardTitle:hover i {
    color: white;
}

.ourFestivalCardTitle h3 {
    padding: 0;
    margin: 0;
    color: #7E4555;
    font-family: math;
    font-size: 22px;
}

.ourFestivalCardTitle i {
    color: rgb(219, 66, 66);
}

/* our fectival section end */

/* news later secttion start */
.NewsLatter {
    padding: 60px 0px;
    background-color: #FEEFE2;
    overflow: hidden;
}

.NewsLatter h1 {
    color: #7E4555;
    font-family: math;
    text-align: center;
    font-weight: bold;
    padding-bottom: 40px;

}

/* news later secttion end */
/* meadia query for responsive */
@media(max-width:1025px) {
    .ourFestivalCard {
        width: 31%;
    }
}

@media(max-width:769px) {
    .servicesAllCard {
        flex-wrap: wrap;
        justify-content: center;
    }

    .servicesCard {
        width: 47%;
    }

    .ourFestivalAllCard {
        gap: 20px;
    }

    .ourFestivalCard {
        width: 48%;
    }
}

@media(max-width:426px) {
    .servicesCard {
        width: 100%;
    }

    .ourFestivalCard {
        width: 100%;
    }

    .services {
        margin-top: -100px;
        padding-bottom: 10px;
    }

    .services h2 {
        font-size: 40px;
    }

    .donateUs {
        padding-bottom: 10px;
    }

}

/* medeia query for responsive */


@media(max-width:769px) {
    .prev {
        display: none;
    }

    .festival-cards {
        width: 100%;
    }

    .CaraoselImage .imageWrapper {
        height: 400px;
    }

    .about-us-image {
        width: 100%;
    }

    .about-us-text {
        width: 100%;
    }

    .about-us-text h1 {
        text-align: start;
    }

    .about-us-text h6 {
        text-align: start;
    }

    .getInTouchMains {
        background-size: cover;
    }

    .getInTouchForm {
        width: 100% !important;
        margin-top: -10px;

    }

    .newsLatter {
        display: flex;
        flex-direction: column;
    }

    .newsLatterPhone {
        width: 100%;
    }

    .newsLatterEmail {
        width: 100%;
    }

    .newsLatterPhoneImage {
        left: -6%;
    }

    .newsLatterEmailImage {
        right: -11%;
    }

    .newsLatterOr {
        margin: -15px 0px;
    }

    .carouselWrapper .cards {
        width: calc(98.5% / 1);
        flex-shrink: 0;
        padding: 40px 30px;
        background-color: #F8FBFF;
        border: 1px solid #ccc;
        box-sizing: border-box;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        display: flex;
        gap: 10px;

    }

    .cards .description {
        margin-left: -110px !important;
        margin-top: 60px !important;
    }

}

@media(max-width:426px) {
    .cards .description {
        margin-top: 40px !important;
    }

    .upcoming-festivals-heading {
        padding: 0 !important;
        margin: 0 !important;
        margin-bottom: 10px !important;
        font-size: 30px;
    }

    .upcoming-festival {
        width: 100%;
        padding: 10px;
    }

    .upcoming-festival p {
        font-size: 14px;
    }

    .about-us-text p {
        font-size: 14px;
    }

    .about-us-text h1 {
        font-size: 30px;
    }

    .about-us-text {
        padding: 5px;
    }

    .about-us-section {
        padding: 5px;
    }

    .about-us-image {
        height: 200px;
    }

    .mainHeaderLeft {
        width: 30% !important;
        /* object-fit: contain; */
    }

    .CaraoselImage .imageWrapper {
        height: 330px;
    }

    .aboutContentImage1 {
        display: none;
    }

    .aboutContentImage2 {
        width: 95%;
        top: 3%;
        left: 2.5%;
    }

    .aboutContent {
        margin-top: 420px !important;
    }

    .aboutContentType {
        width: 47%;
    }

    .getInTouchMains {
        height: 580px;
    }

    .getInTouchForm {
        padding: 0 !important;
        margin-top: -25px;
    }

    .getInTouchMains .rows {
        margin-bottom: 17px;
        display: flex;
        flex-direction: column;
    }

    .newsLatterEmail {
        padding: 23px;
    }

    .newsLatterPhoneImage {
        display: none;
    }

    .newsLatterEmailImage {
        display: none;
    }

    .HomeCraouselTitele {
        width: 95%;
        text-align: justify;
        top: 25%;
    }

    .HomeCraouselTitele p {
        font-size: 14px;
    }

    .HomeCraouselTitele h1 {
        font-size: 25px;
    }



    .aboutContent {
        padding-left: 0;
        padding-right: 0;
    }

    .aboutContent h1 {
        font-size: 30px;
    }

    .ourFestivalCardImg img {
        height: 300px;
    }
}

@media(max-width:376px) {

    .HomeCraouselTitele {
        width: 90%;
    }

    .newsLatterEmail {
        padding: 20px;
    }

    .emailInput {
        width: 250px;
    }
}

@media(max-width:321px) {
    .newsLatterEmail {
        padding: 10px;
    }

    .emailInput {
        width: 220px;
    }
}