.navbar-custom, footer {
    color: white;
    background: linear-gradient(45deg, #87CEEB, #ADD8E6); /* Gradient from light blue to sky blue */
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: white; /* White text for visibility */
    font-family: "Baskervville SC", serif;
}

/* Custom CSS for Light Gradient */
.hero-section {
    position: relative;
    color: rgb(42, 68, 81);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 10px 10px 10px;
}
.form-select {
    cursor: pointer;
}
.primary-button {
    appearance: button;
    background-color: #1899D6;
    border: solid transparent;
    border-radius: 16px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: din-round, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 10px 16px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    width: fit-content;
}

.primary-button:hover:not(:disabled) {
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
}
.btn-light-blue:hover {
    color: white;
}

.form-check {
    cursor: pointer;
}

.hero-section::before {
    content: '';
    position: absolute;
    height: 500px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg-3.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4; /* Adjust the opacity here */
    z-index: -1; /* Place the pseudo-element behind the content */
}

.hero-section h1 {
    max-width: 500px;
    font-size: 2.9rem;
    font-weight: bold;
    font-family: "Baskervville SC", serif;
}

.section-padding {
    padding: 7rem 0 1rem 0;
}

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

.text-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.text-content p {
    font-size: 1.2rem;
    margin-top: 15px;
}

.img-fluid {
    max-height: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    border:1px solid gray;
}

.custom-alert {
    position: absolute;
    top: 20px; /* Adjust this value as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050; /* To ensure it's above other elements */
    width: auto;
}

.alert {
    display: none;
}

.ratings{
    margin-right:10px;
}

.ratings i{
    
    color:#cecece;
    font-size:32px;
}

.rating-color{
    color:#fbc634 !important;
}

.review-count{
    font-weight:400;
    margin-bottom:2px;
    font-size:24px !important;
}

.card {
    height: 305px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    border: 1px solid lightgray;
}

.card-body > .row {
    height: 100%;
}

.card-body > .row > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}