    
:root{
    --theme-color:#cf2e2e;          
    --theme-color-dark:#9a5e42;
    --btn-text-color:whitesmoke;
}

 /* Preloader container */
 #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa; /* Light background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Spinner animation */
  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-top: 5px solid #007bff; /* Primary color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

/* Styling for Social and Contact Strip */
.top-header {
    background-color: var(--theme-color);
    color: #fff;
    padding: 5px 0;
    font-size: 0.9rem;
}
.top-header .social-icons a,
.top-header .call-button a,
.top-header .auth-buttons a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.1rem;
    text-decoration: none;
}
.top-header .social-icons a:hover,
.top-header .call-button a:hover,
.top-header .auth-buttons a:hover {
    color: #ffcc00;
}
.top-header .container {
    display: flex;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    /* .top-header{
        display: none;
    } */
    .top-header .container {
        display: flex;
         flex-direction: column; 
        align-items: flex-start;
    }
    .top-header .social-icons,
    .top-header .call-button,
    .top-header .auth-buttons {
        margin-bottom: 5px;
    }
    .top-header .social-icons {
        display: none;
        margin-bottom: 5px;
    }
    .top-header .auth-buttons a {
        margin-right: 8px;
    }
}

.navbar-brand img {
    height: 70px;
    padding: none;
}


.nav-item a {
    color: var(--theme-color);
}
.nav-item a:hover {
    color: var(--theme-color-dark);
}

.navbar .dropdown-menu {
    background-color: #f8f9fa; /* Light background */
    border-radius: 0.25rem;   /* Rounded corners */
}

.navbar .dropdown-item:hover {
    background-color: #007bff; /* Blue on hover */
    color: #fff;
}
.btn-contact {
    background-color: var(--theme-color);
    border-radius: 10px
}
.btn-contact:hover {
    background-color: var(--theme-color-dark);
}
.btn-contact a, .btn-contact a:hover {
    color: whitesmoke;
}

/* Carousel Styling */
#heroSwiper {
    height: auto;
}
.swiper-slide img {
    object-fit: contain;
    height: auto;
    width: 100%;
}
/* .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
    #heroSwiper {
        height: auto;
    }
    .swiper-slide img {
        height: auto;
    }
    /* .carousel-caption h5 {
        font-size: 1.5rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    } */
}

/* Styling for Service Cards */
.service-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px; /* Set a fixed height for uniformity */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: white; /* Text color */
    background-size: cover;
    background-position: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-content {
    position: absolute;
    bottom: 10px; /* Adjust the bottom position */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center; /* Center text */
    padding: 10px;
    background: rgba(0, 0, 0, 0.5); /* Dark background for readability */
    border-radius: 5px;
}

.card-content a {
    color: white;
    background-color: var(--theme-color); /* Button background color */
    border: none;
}

.card-content a:hover {
    color: white;
    background-color: var(--theme-color-dark); /* Button background color */
    border: none;
}

.offer-h{
    height: 500px;
}





.booking-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
}


.list-group-item {
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
    background-color: #e0f7fa;
    font-weight: bold;
    color: var(--theme-color);
    transition: all 0.3s;
}

.list-group-item:hover {
    color: var(--theme-color-dark);
}

.list-group-item.active {
    background-color: var(--theme-color);
    color: #ffffff;
}

.card {
    background-color: #f1f8e9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 20px;
}

.btn-primary {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    
}



.btn-primary:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.btn-sm {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.btn-sm:hover {
    background-color: var(--theme-color-dark);
    border-color: var(--theme-color-dark);
}

.collapse-section {
    display: none;
}

.collapse-section.active {
    display: block;
}

.form-control:disabled {
    background-color: #e0e0e0;
}

.float-end {
    cursor: pointer;
    color: var(--theme-color);
}

.float-end:hover {
    color: var(--theme-color);
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .col-md-3, .col-md-6 {
        padding: 0 10px;
    }

    .container {
        /* padding: px; */
    }

    .offer-h{
        height: auto;
    }
}


.btn, .btn-primary, .btn-sm{
    color:var(--btn-text-color);
}

.btn:hover, .btn-primary:hover, .btn-sm:hover{
    color:var(--btn-text-color);
}