
/* Navbar styling */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    color: #333;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-buttons .btn {
    margin-left: 10px;
    background-color: #004e82;
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-buttons .btn:hover {
    background-color: #00365d;
}

/* Profile icon styling */
.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Sidebar Styling */
#sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #004e82;
    color: white;
    transition: all 0.3s ease-in-out;
    z-index: 1050;
    padding: 20px;
}

#sidebar.show {
    left: 0;
}

#sidebar a {
    color: white;
    font-size: 18px;
    margin: 20px 0;
    display: block;
    text-align: center;
    text-decoration: none;
}

#sidebar a:hover {
    background-color: #00365d;
    padding: 10px;
    border-radius: 5px;
}

/* Hamburger button */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url('https://img.icons8.com/material-rounded/24/000000/menu--v1.png');
}

/* Hide buttons for mobile */
@media (max-width: 991px) {
    .navbar-buttons {
        display: none;
    }
}

/* Mobile: Hamburger button and profile */
@media (max-width: 991px) {
    .profile-icon-mobile {
        display: block;
    }
}

@media (min-width: 992px) {
    .profile-icon-mobile {
        display: none;
    }
}

.search-section {
    padding: 40px 0;
    background: #f6f6f6;
}

.search-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.form-control,
.form-select {
    border-radius: 50px;
    padding-left: 2.5rem;
    border: 2px solid #ccc;
    padding: 10px 44px;
}

.btn-search {
    background-color: #004e82;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
}

.btn-search:hover {
    background-color: #00365d;
}

.input-group-text {
    position: absolute;
    z-index: 2;
    background: transparent;
    border: none;
    margin-left: 7px;
    margin-top: 1px;
    padding: 10px;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .input-group {
        flex-direction: column;
    }

    .input-group .form-control,
    .input-group .form-select {
        margin-bottom: 10px;
    }
}

/* Banner Styling */
.banner-fixed {
    height: 100%;
    background-color: #004e82;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Slider images styling */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.carousel {
    border-radius: 10px;
    overflow: hidden;
}

.banner-section {
    padding: 0 0;
}

.category-section {
    padding: 20px 0;
}

/* Custom col class for 8 items per row */
.col-md-1-5 {
    flex: 0 0 auto;
    width: 12.5%;
}

/* Card styling for each item */
.category-card {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.category-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
}

/* Responsive layout */
@media (max-width: 768px) {
    .col-md-1-5 {
        width: 50%;
        /* Two items per row on smaller screens */
    }
}

.custom-section {
    padding: 20px 0;
    background: #f6f6f6;
}

.custom-section .card-custom {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-section .card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.custom-section .card-container {
    display: flex;
    justify-content: space-between;
}

.custom-section .item {
    text-align: center;
    width: 30%;
}

.custom-section .item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.custom-section .item-title {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-section .card-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-section .item {
        width: 100%;
        margin-bottom: 20px;
    }
}

.service-section {
    padding: 40px 0;
}

.service-section .card-custom {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
}

.service-section .card-title {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
}

.service-section .card-text {
    font-size: 14px;
    color: #666;
}

.service-section .explore-link {
    color: black;
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.service-section .item-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-section .item {
    text-align: center;
    width: 15%;
    margin-bottom: 0px;
}

.service-section .item img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.service-section .item-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .service-section .item {
        width: 30%;
    }
}

@media (max-width: 576px) {
    .service-section .item {
        width: 45%;
    }
}

.service-intro {
    margin-bottom: 40px;
}

.service-intro h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.service-grid {
    margin-top: 30px;
}

.service-item {
    text-align: left;
    margin-bottom: 30px;
}

.service-item .icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #333;
}

.service-item h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .service-item {
        text-align: center;
    }
}

.category-section2 {
    padding: 20px 0;
}

.category-section2 h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.category-section2 .btn-category {
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
}

.subcategory-list {
    font-size: 14px;
    line-height: 1.8;
}

.subcategory-list a {
    color: black;
    text-decoration: none;
}

.subcategory-list a:hover {
    text-decoration: underline;
}

.jd-collections,
.popular-cities {
    margin-top: 40px;
}

.jd-collections a,
.popular-cities a {
    color: black;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
}

.jd-collections a:hover,
.popular-cities a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
}

.footer h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.social-icons a {
    margin-right: 15px;
    color: #fff;
    font-size: 18px;
}

.footer-bottom {
    background-color: #23272b;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.social-icons a:hover {
    color: black;
}

section.services-section-new {
    background: #f6f6f6;
    padding: 2px;
}

.card-listing {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
}

.card-listing img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

.listing-title {
    font-size: 18px;
    font-weight: bold;
}

.rating-badge {
    background-color: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 14px;
    display: inline-block;
}

.enquiry-buttons .btn {
    margin-right: 10px;
    font-size: 14px;
    margin-top: 10px;
}

.sidebar {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
}

.sidebar h5 {
    font-size: 16px;
    font-weight: bold;
}

.form-control {
    margin-bottom: 10px;
}

.business-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.business-header h2 {
    font-size: 22px;
    font-weight: bold;
}

.rating-badge {
    background-color: #28a745;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 16px;
}

.badge-verified {
    background-color: #007bff;
    color: white;
    padding: 3px 6px;
    border-radius: 5px;
}

.business-contact .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.photos-section img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 5px;
}

.quick-info {
    margin-top: 20px;
}

.quick-info h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-section p,
.contact-section a {
    font-size: 14px;
}

.overview-tabs a {
    font-size: 16px;
    margin-right: 15px;
}

.tab-content {
    margin-top: 20px;
}

.contact-info .btn {
    font-size: 14px;
    margin-top: 10px;
}
.ratings-box {
    background-color: #28a745;
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }

  .review-stars i {
    color: #f39c12;
    font-size: 24px;
  }

  .rating-trend i {
    color: #f39c12;
    font-size: 18px;
    margin-right: 5px;
  }

  .review-sort-buttons .btn {
    margin-right: 10px;
    margin-bottom: 15px;
  }

  .review-highlights .badge {
    font-size: 14px;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .user-review {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .user-review img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .review-details {
    font-size: 14px;
  }