/* typse of puja section start */
/* Card Styling */
.pooja-card {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
}

.pooja-card:hover {
    transform: scale(1.07);
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.25);
}

.card a {
    text-decoration: none;
}

/* Image Styling */
.card-img {
    width: 100%;
    height: 220px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-top-left-radius: 12px;
    border-top-right-radius: 12px; */
}

/* Card Body Styling */
.card-body {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.card-body:hover {
    background-color: #723C4C !important;
    cursor: pointer;
    color: white;
}

.card-body:hover h5 {
    color: white;
}

.card-body:hover p {
    color: white;
}

.card-title {
    font-weight: bold;
    font-size: 18px;
    color: #8B4513;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Button Styling */
.card-body .btn {
    display: inline-block;
    padding: 8px 16px;
    background: #ff6f00;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.card-body .btn:hover {
    background: #e65100;
}


/* types of puja section end */

/* types of puja details section start */
.types-of-puja-details-section {
    background-color: #FAF5EE;
    padding: 50px 0px;
}

.content p {
    letter-spacing: 0.5px;
    line-height: 30px;
}

.description-details h1 {
    color: #723C4C;
    font-size: 25px;
    padding-top: 20px;
}

.description-details p {
    letter-spacing: 0.5px;
    line-height: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pooja-card img {
        height: 180px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-text {
        font-size: 13px;
    }

    .image-container img {
        width: 100%;
    }
}

/* Responsive Design */


/* types of puja details section end */