:root {
    --bs-body-font-family: 'Roboto'
}
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.h1,
.h2,
.h3,
.h4,
.h5
.h6 {
    font-family: 'Raleway'

}

.form-container {
    background: white;

}

.rating-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.rating-box {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .row .col-md-5,
    .row .col-md-2 {
        width: 100%;
        margin-bottom: 10px;
    }

    .rating-container {
        flex-direction: column;
        align-items: center;
    }

    .form-container h4,
    .form-container h5 {
        text-align: center;
    }
}
.form-control {
    font-size: 1rem;
    color: black;
}

@media screen and (max-width: 800px) {
    .form-control {
        font-size: 1.2rem;
    }
}    



/* Style for the cards */
.card {
    border-radius: 10px;
    /* Rounded corners */
    overflow: hidden;
    /* Ensures content stays inside rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
    /* Light border for a subtle effect */
    max-width: 360px;
    /* Adjust width as needed */
    margin: auto;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-5px);
    /* Lifts the card slightly */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    /* Soft shadow effect */
}

.card_new {

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
    border-width: 2px;
    border-color: #41407ae8;
    
}

.shadow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.short-container {
    max-width: 980px; /* Adjust as needed */
    margin: auto; /* Center the container */
}

.card_new:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
}

/* Style for the card images */
.card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Button styling inside the card */
.card .btn-primary {
    border-radius: 8px;
    /* Rounded button */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Text and small icons */
.card small {
    color: #555;
    /* Slightly dark text for better readability */
}

@media (max-width: 768px) {
    .carousel-inner .row {
        flex-direction: column;
        align-items: center;
        /* Centers the cards */
    }

    .card {
        width: 90%;
        /* Adjust width for smaller screens */
        max-width: 400px;
        /* Prevents too large cards */
    }
}

/* Responsive adjustments */


.search-container {
    display: flex;
    justify-content: start;
}

.search-box {
    display: flex;
    align-items: center;
    background: #feffff;
    border-radius: 10px;

    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    /* Default: Stack items vertically */
}

.search-item {
    display: flex;
    align-items: center;
    flex: 1;
    border-bottom: 1px solid #c2c2c2;
    padding: 10px 0;
}

.search-item i {
    font-size: 16px;
    color: black;
    margin-right: 10px;
}

.search-item input {
    border: none;
    outline: none;
    font-size: 18px;
    width: 100%;
    color: #3f3f3f;
    background: transparent;
}

/* Responsive: Make the search bar horizontal on medium & large screens */
@media (min-width: 768px) {
    .search-box {
        flex-direction: row;
        /* Align items horizontally */
        border-radius: 50px;
    }

    .search-item {
        border-bottom: none;
        /* Remove border between items */
        padding: 0px;
    }

    .border-md-end {
        border-right: 1px solid #c2c2c2;
        /* Add a right border to separate items */
        padding-right: 15px;
    }
    .w-md-auto {
        width: auto !important;
    }
    .button {
        border-radius: 50px;
        
    }
}

.carousel-container {
    max-width: 700px;
    margin: auto;
    padding: 40px 20px;
}
.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.customer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffc107;
}
.star-rating {
    color: #ffc107;
    font-size: 20px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    padding: 10px;
}