/* daily-arti section start */
.daily-arti-section-mains {
    background-color: #f9f5f0;
    padding: 50px 0px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}

.daily-arti-section {
    max-width: 800px;
    margin: 0 auto;
}

.arti-title {
    text-align: center;
    font-size: 3rem;
    color: #5c3d2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    position: relative;
}

.arti-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: #d4af37;
    margin: 8px auto 0;
    border-radius: 2px;
}

.arti-description {
    text-align: center;
    margin-bottom: 30px;
    color: #5a5a5a;
    letter-spacing: 0.5px;
    font-size: 20px;
}

.arti-schedule {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.arti-card {
    background-color: #fff;
    border-left: 5px solid #8B4513;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timing {
    font-weight: 600;
}

.arti-card h2 {
    font-size: 2rem;
    color: rgb(255, 153, 0);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    position: relative;
}

.arti-info,
.arti-significance,
.arti-tips {
    margin-top: 30px;
    background-color: #fff8e1;
    padding: 40px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.arti-info h3,
.arti-significance h3,
.arti-tips h3 {
    color: #8B4513;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    position: relative;
}

.arti-info ul,
.arti-tips ul {
    list-style-type: disc;
    padding-top: 30px;

}

.arti-info li,
.arti-tips li {
    margin-bottom: 5px;
    list-style: none;
    padding-top: 5px;
    letter-spacing: 0.5px;
    font-size: 17px;
    margin-left: -30px;
}

.arti-info li i,
.arti-tips li i {
    color: #8B4513;
    padding-right: 5px;
    letter-spacing: 0.5px;
    font-size: 17px;
}

.arti-significance p {
    color: #5a5a5a;
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-size: 17px;
    padding-top: 20px;
}

/* daily-arti section end */


/* special pooja section start */

.special-pooja-section-mains {
    background: linear-gradient(135deg, #f9f5f0, #fff3e0);
    padding: 50px 0px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pooja-title {
    font-size: 3rem;
    color: #5c3d2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    position: relative;
}

.pooja-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: #d4af37;
    margin: 8px auto 0;
    border-radius: 2px;
}

.pooja-description {
    font-size: 1.4rem;
    color: #6a5444;
    margin-bottom: 40px;
    line-height: 1.8;
}

.pooja-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* flex-wrap: wrap; */
}

.pooja-card {
    background: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    width: 32%;
    text-align: center;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    overflow: hidden;
}

.pooja-card h3 {
    font-size: 20px;
    color: #5c3d2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    position: relative;

}

.pooja-card p {
    letter-spacing: 0.5px;
    font-size: 17px;
    padding: 20px;
}

.pooja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.pooja-image {
    width: 100%;
    border-radius: 5px 5px 0 0;
    margin-bottom: 20px;
}



.pooja-info h2 {
    color: #5c3d2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    position: relative;
    margin-top: 50px;
}

.pooja-info ul {
    list-style: none;
    padding: 0;
    padding-top: 20px;
}

.accordion-item {
    background-color: #fff;
    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 8px;
    color: #5c3d2e;
    border-left: 5px solid #8B4513;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-title {
    font-weight: 500;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5c3d2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    font-size: 20px;
}

.accordion-title::after {
    content: "+";
    font-size: 24px;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-title::after {
    content: "-";
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding-top: 10px;
    color: #6a5444;
    line-height: 1.6;
    letter-spacing: 1px;
    font-size: 17px;
    text-align: start;
}

.accordion-item.active .accordion-content {
    display: block;
}


.pooja-booking {
    margin-top: 40px;
    background: #5c3d2e;
    background-image: linear-gradient(115deg, #ff3a2c 0%, #fba860 100%);
    color: #fff;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pooja-booking .btn-primary {
    background-color: #562C39;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pooja-booking .btn-primary:hover {
    background-color: #723C4C;
}

/* special pooja section end */

/* book now section start */
.book-now-section-main {
    padding: 60px 0;
    background-color: #f9f3e7;

}

.book-now-section h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-weight: 500;
    color: #5c3d2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;

}

.book-now-section p {
    color: #5a5a5a;
    font-size: 1.2rem;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    font-size: 20px;
}

.pooja-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.pooja-form span {
    color: red;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #5c3d2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-control {
    /* width: 100%; */
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d4af37;
    background-color: #fff;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    resize: none;
}

.btn-primary {
    background-image: linear-gradient(115deg, #ff3a2c 0%, #fba860 100%);
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-image: linear-gradient(115deg, #fba860 0%, #ff3a2c 100%);

}

.testimonial-section {
    margin-top: 50px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.testimonial-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #5c3d2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.testimonial {
    background-color: #f9f3e7;
    border-left: 5px solid #d4af37;
    padding: 20px;
    margin-top: 10px;
    font-style: italic;
    color: #5a5a5a;
}

/* book now section end */
@media(max-width:769px) {
    .pooja-section {
        flex-wrap: wrap;
    }

    .pooja-card {
        width: 47%;
    }
}

@media(max-width:426px) {
    .mainHeaderLeft {
        width: 30% !important;
    }

    .arti-title {
        font-size: 2rem;
    }

    .pooja-title {
        font-size: 2rem;
    }

    .pooja-description {
        font-size: 1rem;
    }

    .arti-info,
    .arti-significance,
    .arti-tips {
        padding: 20px;
    }

    .pooja-card {
        width: 100%;
    }

    .accordion-title {
        font-size: 15px;
    }

    .accordion-content {
        font-size: 15px;
    }

    .pooja-form {
        padding: 20px;
    }

    .book-now-section h1 {
        font-size: 2rem;
    }

    .testimonial-section {
        padding: 20px;
    }
}

@media(max-width:321px) {
    .arti-title {
        font-size: 1.5rem;
    }

    .accordion-title {
        font-size: 13px;
    }

    .accordion-content {
        font-size: 13px;
    }
}