
@import url('https://fonts.googleapis.com/css2?family=Anton&family=DynaPuff:wght@400..700&family=Montserrat+Subrayada:wght@400;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Marcellus", serif;
}
h1, h2, h3, h4 {
    color: black;
}

p{
    color: black;
}
.carousel-inner {
    position: relative;
}

.carousel-item {
    height: 500px;
    width: 100%;

}

.carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    bottom: 10%;
}


@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }

    .carousel-caption h5 {
        font-size: 18px;
    }

    .carousel-caption p {
        font-size: 14px;
    }
}

/* FAQ Section Styling */
.faq-section {
    padding: 40px;
    background-color: #f7f7f7;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background-color: #007BFF;
    color: white;
    padding: 15px;
    text-align: left;
    width: 100%;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #0056b3;
}

.faq-icon {
    font-size: 28px;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 10px;
    display: inline-block;
}

/* Show the answer when the question is clicked */
.faq-item.active .faq-answer {
    display: block;
}

/* Optional: Rotate the icon back to + when collapsed */
.faq-item:not(.active) .faq-icon {
    transform: rotate(90deg);
    /* + icon rotation */
}

/* Keep the minus icon static */
.faq-item.active .faq-icon {
    font-size: 30px;
    /* Increase size when rotated */
}

/* Add some padding and style to the answer */
.faq-answer {
    padding: 15px;
    background-color: #f1f1f1;
    border-left: 3px solid #007BFF;
    display: none;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 16px;
    color: #555;
}

/* Responsive Styles */
@media screen and (max-width: 767px) {
    .faq-section {
        padding: 20px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 12px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 10px;
    }

    .faq-icon {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 15px;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 14px;
        padding: 10px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 8px;
    }

    .faq-icon {
        font-size: 22px;
    }
}

.card-hover {
    background-color: rgb(23, 171, 240);
    width: 300px; /* Set width for the rectangular box */
    height: 250px; /* Set height */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Initial shadow for the 3D effect */
    transition: all 0.6s ease; /* Smooth transition for the hover effect */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto; /* Center the card */
    transform-style: preserve-3d; /* Enable 3D transformations */
    perspective: 1000px; /* Set the perspective for 3D effect */
}

/* Hover effect with rotation */
.card-hover:hover {
    transform: rotateY(360deg); /* Rotate the card on the Y-axis for left to right effect */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.card-b {
    padding: 0;
    text-align: center;
    transform: translateZ(50px); /* Ensure content stays in front when rotating */
    /* transform: rotateY(360deg); Rotate the card on the Y-axis for left to right effect */

}

.card-title, .card-text {
    margin: 0;
}
/* .card-b, h5, p{
    margin-top: 66px;
}  */


/* .card-section{
    height: 85vh;
}
@media (max-width: 576px) {
    .card-section {
        height: fit-content;
    }
} */


.price del {
    color: #0c0c0c; 
    text-decoration: line-through; 
    font-size: 18px;
    margin-right: 5px; 
}

.price br {
    display: block;
    margin: 5px 0;
}

.price {
    color: #007bff; 
    font-size: 28px; 
}

ul li {
    color: #0c0c0c;
}


.popup-form {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s;
    z-index: 1001;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-container {
    background-color: rgb(255, 255, 255);
    ;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    animation: slideIn 0.5s;
    position: relative;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-container .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5em;
    cursor: pointer;
    color: #000;
}




form button {
    margin-top: 1.5em;
    padding: 0.75em;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

form button:hover {
    background-color: #555;
}