        .search-container {
              max-width: 800px;
              margin: 0 auto;
              background: white;
              border-radius: 10px;
              box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
              padding: 5px;
              position: relative;
              z-index: 10; /* High enough to be above images */

          }
         

  
          .search-form {
              display: flex;
              flex-wrap: nowrap;
              align-items: center;
          }
  
          .unified-search-group {
              flex-grow: 1;
              display: flex;
              border: 1px solid #e0e0e0;
              border-radius: 6px;
              overflow: hidden;
              transition: all 0.3s ease;
          }
  
          .unified-search-group:focus-within {
              border-color: #3498db;
              box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
          }
  
          .search-section, .location-section {
              position: relative;
          }
  
          .search-section {
              flex: 2;
              border-right: 1px solid #e0e0e0;
          }
  
          .location-section {
              flex: 1;
              display: flex;
              align-items: center;
          }
  
          .search-icon, .location-icon {
              position: absolute;
              left: 15px;
              top: 50%;
              transform: translateY(-50%);
              color: #95a5a6;
          }
  
          .search-input, .location-input {
              width: 100%;
              padding: 15px 15px 15px 45px;
              border: none !important;
              font-size: 1rem;
              background: transparent;
          }
  
          .search-input:focus, .location-input:focus {
              outline: none;
              border:none;
          }
  
          .geolocation-btn {
              background: none;
              border: none;
              cursor: pointer;
              padding: 0 10px;
              color: #3498db;
          }
  
          .geolocation-btn:hover {
              color: #fcba12;
          }
  
          .search-btn {
              padding: 10px 15px;
              background-color: #3498db;
              color: white;
              border: none;
              border-radius: 10px;
              font-size: 1rem;
              font-weight: 600;
              cursor: pointer;
              transition: background-color 0.3s ease;
              margin-left: 15px;
          }
  
          .search-btn:hover {
              background-color: #fcba12;
          }

          .search-btn i:hover {

            color: #fff;

          }
  
          .search-results {
              margin-top: 30px;
              padding: 20px;
              background: white;
              border-radius: 6px;
              box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          }
  
          .tag-container {
              display: flex;
              flex-wrap: wrap;
              gap: 8px;
              margin-top: 15px;
          }

          .about .search-results p {
            
            color:#3c3c3c;
            padding: 0px 0px 0px 12px;
            font-size: medium;
          }
  
          .search-tag {
              background-color: #e1f0fa;
              color: #3498db;
              padding: 5px 10px;
              border-radius: 20px;
              font-size: 0.9rem;
              display: flex;
              align-items: center;
              gap: 5px;
          }
  
          .tag-remove {
              cursor: pointer;
              font-weight: bold;
          }

          .carousel-slides {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
          }


        .tag-remove {
            cursor: pointer;
            font-weight: bold;
        }

        .result-item {
            padding: 15px;
            border: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 15px;
            border-radius: 12px;

        }


        
        .result-item:hover {
          background-color:  #cfecff;

        }
        .result-item:last-child {
            border-bottom: none;
        }

        .result-icon {
            width: 50px;
            height: 50px;
            background-color: #e1f0fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3498db;
            flex-shrink: 0;
        }

        .result-details {
            flex-grow: 1;
        }

        .result-title {
            font-weight: 600;
            margin-bottom: 4px;
            color: #4c97e2;
        }

        .result-info {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }



        .result-logo {
            flex-shrink: 0; /* Prevent the logo from shrinking */
            width: 60px; /* Adjust as needed */
            height: 60px; /* Adjust as needed */
            border-radius: 8px; /* Optional: rounded corners */
            overflow: hidden; /* Ensures image stays within rounded corners */
            display: flex; /* To center small images if they don't fill the div */
            justify-content: center;
            align-items: center;
            border: 1px solid #eee; /* Light border */
        }

        .result-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* or 'cover' depending on desired cropping */
            display: block; /* Remove extra space below image */
        }

        /* Optional: If you use the fallback icon, ensure its styling */
        .result-icon-fallback {
            flex-shrink: 0;
            width: 60px; /* Same size as logo */
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f0f0f0; /* Light background for the icon area */
            border-radius: 8px;
        }

        .result-icon-fallback svg {
            width: 32px; /* Size of the SVG icon */
            height: 32px;
            color: #666; /* Color of the SVG icon */
        }


        .result-distance {
            font-weight: 600;
            color: #3498db;
        }

        .category-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
        }

        .category-btn {
            padding: 8px 15px;
            background-color: #f1f1f1;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .category-btn.active {
            background-color: #3498db;
            color: white;
        }

        .no-results {
            padding: 20px;
            text-align: center;
            color: #7f8c8d;
        }

        .search-summary {
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        @media (max-width: 768px) {
            .search-form {
                flex-wrap: wrap;
            }
            
            .unified-search-group {
                flex-direction: column;
                width: 100%;
                border: none;
            }
            
            .search-section, .location-section {
                width: 100%;
                border: 1px solid #e0e0e0;
                border-radius: 6px;
                margin-bottom: 10px;
            }
            
            .search-section {
                border-bottom: none;
            }
            
            .search-btn {
                width: 100%;
                margin-left: 0;
            }

            .result-info {
                flex-direction: column;
                gap: 5px;
            }
        }

          
        .modal.modal-right .modal-dialog.modal-custom-position {
  position: fixed;
  top: 1rem;
  right: 1rem;
  margin: 0;
  max-width: 400px; /* adjust width if needed */
}

.modal-backdrop {
  display: none; /* Optional: removes the dark background */
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

  
    .call_section {
    background-color: #21abb1;
    position: relative;
    color: #fff;
}

.call_section .wrapper
 {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 22;
}
.margin_80_55 {
    padding-top: 80px;
    padding-bottom: 55px;
}


.main_title_2 {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    color: #fff;
}

.main_title_2 p {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: #ffff
}

.main_title_2 span {
    width: 120px;
    height: 2px;
    background-color: #e1e1e1;
    display: block;
    margin: auto;
}

.main_title_2 span em {
    width: 60px;
    height: 2px;
    background-color: #004dda;
    display: block;
    margin: auto;
}

.call_section {
  background-color: #21abb1;
  position: relative;
  color: #fff;
}
.call_section h2 {
  color: #fff;
}
.call_section .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 22;
}
.call_section .box_how {
  text-align: center;
  position: relative;
}
.call_section .box_how h3 {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
}
.call_section .box_how i {
  color: #fff;
  font-size: 60px;
  font-size: 3.75rem;
  margin-bottom: 10px;
  color: #FFC107;
}
.call_section.pattern {
  background: #004dda url(../images/pattern.svg) center center repeat fixed;
}
.call_section.pattern .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}
.call_section.image_bg {
  background: #004dda url(../images/bg_call_section.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.call_section.image_bg .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.8);
}



/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
  border: none;
  color: #fff;
  background: #004dda;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
a.btn_1:hover,
.btn_1:hover {
  background-color: #FFC107;
  color: #222 !important;
}


.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top of everything else */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed for content */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    /* display: flex; /* <-- This is commented out or overridden by JS if shown */
    justify-content: center;
    align-items: center;
    pointer-events: auto; /* Allow clicks on modal elements */
}

.modal-content {
    background-color: #fefefe;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px; /* Adjust as needed */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
    animation: fadeIn 0.5s ease-out; /* Simple fade-in animation */
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #333;
    text-decoration: none;
}

.modal-content h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.modal-logo {
    margin-bottom: 20px;
}

/* Ensure the image within the logo div scales properly */
.modal-logo img {
    display: block; /* Removes extra space below image */
    margin: 0 auto; /* Centers the image */
}


.modal-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.modal-buttons button {
    padding: 12px 25px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.modal-buttons .learn-more {
    background-color: #007bff; /* Blue */
    color: white;
}

.modal-buttons .learn-more:hover {
    background-color: #0056b3;
}

.modal-buttons .continue {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.modal-buttons .continue:hover {
    color: #fff;
    background-color: #fcba12;
}

.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.card{
  border-radius: 25px;
  background-color: #FFF;
  border-color: #fabb15;
}

/* card on hover zoom in */
.card:hover{
  /* transform: scale(1.05);
  transition: all 0.3s ease; */
}

.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color:rgb(18, 252, 201);
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #f4d380;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #4070F4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #265DF2;
}

.swiper-navBtn{
  color: #fabb15;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #fcba12;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #fabb15;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #fabb15;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}




.suggestions-card , .location-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-top: 10px;
    width: 99.5% ;
    box-sizing: border-box;
    position: absolute;
    z-index: 100;
    display: none;

    /* Make the card scrollable */
    max-height: 300px; /* Adjust based on your layout */
    overflow-y: auto;
}

.suggestions-card h3 , .location-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    font-size: 1.1em;
    
}

.suggestions-card::-webkit-scrollbar, .location-card::-webkit-scrollbar  {
  width: 12px;
}

.suggestions-card::-webkit-scrollbar-track, .location-card::-webkit-scrollbar-track {
  background: transparent;
}

.suggestions-card::-webkit-scrollbar-thumb, .location-card::-webkit-scrollbar-thumb {
  background-color: #fcd678;
  border-radius: 10px;
  border: 2px solid transparent; /* Optional: adds space around thumb */
  background-clip: content-box;  /* Optional: ensures rounded thumb */
}


.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.search-tag {
    background-color: #e9e9e9;
    color: #555;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-weight: 600;

}

.search-tag:hover {
    background-color: #fabb15;
    color: whitesmoke;
}

/* Adjustments for sections */
.popular-searches-section,
.categories-section,
.search-results-section {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.search-results-section:last-child,
.categories-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}



/* Add this to your CSS */
.search-section {
    position: relative; /* Needed for absolute positioning of the button */
    display: flex; /* To align input and clear button horizontally */
    align-items: center;
    flex-grow: 1; /* Allows it to take available space */
}

.search-input {
    padding-right: 35px; /* Make space for the clear button */
    flex-grow: 1; /* Allow input to fill remaining space */
}

.clear-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    position: absolute; /* Position relative to .search-section */
    right: 10px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    display: none; /* Hidden by default */
    padding: 0; /* Remove default button padding */
    line-height: 1; /* Ensure icon is vertically centered */
    display: flex; /* For SVG centering */
    align-items: center;
    justify-content: center;
    width: 24px; /* Make it clickable */
    height: 24px; /* Make it clickable */
}

.clear-search-btn:hover {
    color: #333;
}

/* Add to your existing CSS */

.business-list {
    display: flex;
    flex-direction: column; /* Stack businesses vertically */
    gap: 10px; /* Space between business cards */
}

.business-card {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.business-card:hover {
    background-color: #f0f0f0;
}

.business-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.business-info {
    flex-grow: 1;
}

.business-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: #333;
}

.business-info p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}




/* Styling for nav-tabs to mimic the sidebar buttons from the original design */
        .nav {
            border-bottom: none; /* Remove default Bootstrap bottom border */
            flex-direction: column; /* Stack tabs vertically like sidebar */
            align-items: flex-start; /* Align items to the left */
            background-color: #ffffff;
            padding: 20px;
            border-radius: 10px; /* Rounded corners for the entire tab container */
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Subtle shadow */
            margin-bottom: 20px; /* Space below tab container on small screens */
        }
        .nav .nav-item {
            width: 100%; /* Make each tab item take full width */
            margin-bottom: 10px; /* Space between tab buttons */
        }
        .nav .nav-link {
            width: 100%;
            text-align: left;
            border: 1px solid #dee2e6; /* Light border for inactive tabs */
            border-radius: 8px; /* Rounded corners for tab buttons */
            padding: 12px 15px; /* More padding for a better feel */
            font-weight: 500;
            color: #495057; /* Default text color */
            background-color: #ffffff;
            transition: all 0.2s ease-in-out; /* Smooth transition for hover/active states */
            display: flex; /* For aligning icon and text within buttons */
            align-items: center;
        }

        /* Special style for the "Navigation directory" button to match the image's active state */
        .nav .nav-link.special-button {
            background-color: #fabb15 ; /* Orange color for active button */
            border-color: #fabb15;
            color: #ffffff; /* White text */
            justify-content: center; /* Center content for this specific button */
        }
        .nav .nav-link:hover {
            background-color: #fabb15; /* Darker orange on hover */
            border-color: #fabb15;
        }

        /* Styles for active non-special tab buttons */
        .nav .nav-link .active {
            background-color: #fabb15 !important;/* Orange background for active tab */
            border-color: #fabb15 !important;
            color: #ffffff; /* White text for active tab */

        }
        
        /* Hover effect for non-special tab buttons */
        .nav-tabs .nav-link:not(.special-button):hover {
            background-color: #f1f1f1;
            border-color: #dee2e6;
            color: #495057;
        }

        
        /* Styling for the product cards (custom-block) */
        .custom-block {
            background-color: #ffffff;
            border-radius: 14px; /* From user's snippet */
            border: 2px solid #fabb15 !important; /* From user's snippet */
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Subtle shadow */
            overflow: hidden; /* Ensures any content extending beyond border is clipped */
            margin-bottom: 20px; /* Space between cards */
            display: flex;
            flex-direction: column;
            height: 100%; /* Ensures cards in a row have similar height */
            padding: 20px; /* Padding for content inside the block */
        }
        .custom-block a {
            text-decoration: none; /* Remove underline from links within the card */
            color: inherit; /* Inherit text color */
        }
        .custom-block img.custom-block-image {
            width: 100%;
            height: 150px; /* Fixed height for service thumbnails */
            object-fit: cover; /* Cover the area, cropping if necessary */
            border-radius: 12px; /* Rounded corners for the image */
            margin-top: 10px; /* Space between title and image */
        }
        .custom-block h4.fw-bold {
            font-family: 'Gordita Bold', sans-serif; /* Assuming Gordita Bold is available */
            color: rgb(54, 72, 83); /* Specific color from user's snippet */
            margin-bottom: 0;
        }
        .custom-block .badge.bg-education { /* Example badge style from user's code */
            background-color: #0d6efd; /* Bootstrap blue as a placeholder */
        }
        .custom-block .img-thumbnail.rounded-circle {
            height: 70px; /* Fixed height for business logo */
            width: 70px; /* Fixed width for business logo, ensuring it's a circle */
            object-fit: cover; /* Ensures logo covers the area */
            border: none; /* Remove default thumbnail border */
        }
        .custom-block small {
            font-size: 0.7rem; /* Smaller font size for address/time details */
        }
        .custom-block .listing-text ul {
            display: flex;
            list-style: none;
            padding-left: 0;
            margin: 0;
            justify-content: space-between; /* Distribute day initials evenly */
        }
        .custom-block .listing-text ul li {
            text-align: center;
            margin-right: 5px; /* Space between day initials */
            width: 20px; /* Fixed width for the circular badge */
            height: 20px; /* Fixed height for the circular badge */
            border-radius: 50%; /* Make it a circle */
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem; /* Smaller font for day letters (M, T, W, etc.) */
        }
        .custom-block .listing-text ul li:last-child {
            margin-right: 0; /* No right margin for the last day initial */
        }
        /* Pagination button styling */
        .pagination .page-link {
            color: #ff8c00; /* Orange color for pagination links */
            border-color: #ff8c00;
        }
        .pagination .page-item.active .page-link {
            background-color: #ff8c00;
            border-color: #ff8c00;
            color: #ffffff;
        }
        .pagination .page-link:hover {
            background-color: #ffe6cc; /* Lighter orange on hover */
            border-color: #ff8c00;
        }




/* Default styles for larger screens: show text, hide icon */
.nav-link .nav-category-icon {
    display: none; /* Hide icon by default */
}

.nav-link .nav-category-name-text {
    display: inline-block; /* Show text by default */
}

/* Ensure SVG inside the icon container has a consistent size */
.nav-link .nav-category-icon svg {
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    vertical-align: middle; /* Align icon vertically with any potential text/padding */
}

/* --- Media Query for Smaller Screens --- */
@media (max-width: 767.98px) { /* Adjust breakpoint as desired, e.g., 991.98px for 'md' */
    .nav-link .nav-category-icon {
        display: inline-block; /* Show icon on small screens */
    }

    .nav-link .nav-category-name-text {
        display: none; /* Hide text on small screens */
    }

    /* Adjust padding/sizing for the button itself when it's icon-only */
    .nav .nav-link {
        /* This will apply to all nav-links in your sidebar on small screens */
        padding: 10px 10px; /* More compact padding for icon-only buttons */
        justify-content: center; /* Center the icon horizontally */
    }

    /* Optional: If you want the full .nav container to become horizontal or adjust its layout */
    .nav {
        flex-direction: row !important; /* Make navigation horizontal on small screens */
        flex-wrap: wrap; /* Allow items to wrap to the next line */
        justify-content: center; /* Center the buttons horizontally */
        padding: 10px; /* Reduce overall padding */

    }

    .nav .nav-item {
        width: auto; /* Allow items to size based on content */
        margin: 5px; /* Adjust spacing between buttons */

    }

    .nav .nav-link{
        width: auto;
        min-width:45px;
        display: inline;
        margin: 5px;

    }
}


        /* Responsive adjustments for layout */
        @media (min-width: 768px) {
            .main-content {
                padding-left: 20px; /* Space between sidebar/tabs and main content on medium+ screens */
            }
            .nav-tabs {
                margin-bottom: 0; /* No bottom margin on larger screens when tabs are horizontal */
            }
        }


         .search-hero {
            text-align: center;
            margin-bottom: 40px;
        }

        .search-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .search-hero p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }



        .filters-container {
            margin-top: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 15px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .filter-option label {
            color: #555;
            font-weight: 500;
        }
        .filter-option input[type="number"],
        .filter-option select {
            padding: 8px 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            width: 80px; /* Adjust width as needed */
            font-size: 0.95rem;
            background-color: white;
        }
        .filter-option input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }
        .filter-option input[type="number"][disabled] {
            background-color: #f0f0f0;
            cursor: not-allowed;
        }


        @media (max-width: 768px) {
            .search-form {
                flex-wrap: wrap;
            }
            
            .unified-search-group {
                flex-direction: column;
                width: 100%;
                border: none;
            }
            
            .search-section, .location-section {
                width: 100%;
                border: 1px solid #e0e0e0;
                border-radius: 6px;
                margin-bottom: 10px;
            }
            
            .search-section {
                border-bottom: none;
            }
            
            .search-btn {
                width: 100%;
                margin-left: 0;
            }

            .result-info {
                flex-direction: column;
                gap: 5px;
            }

            .filters-container {
                flex-direction: column;
                align-items: flex-start;
            }
        }




.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    min-width: 100% !important;
    border: 0;
    border-radius: 0;
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;

}

.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

@media (min-width:575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-footer,
    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width:990.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-footer,
    .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }

    .category-grid {
        display: flex;
        flex-wrap: wrap; /* Allow items to wrap on smaller screens */
        justify-content: center; /* Center items */
    }
    .category-card {
        width: 100px; /* Adjust width for smaller screens */
        height: 100px; /* Adjust height for smaller screens */
        margin: 10px; /* Add some margin for spacing */ 
    }

   
}

@media (min-width:991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-footer,
    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }

     .category-grid {
    display: flex;

}
}



.category-grid {
              gap: 20px;
            padding: 20px;
            max-width: auto; /* Adjust as needed */
            width: 100%;
            justify-items: center;
        }

        .category-card {
          background-color: #f0f2f5;

            border-radius: 10px;
            /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 10px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 150px; /* Fixed width for the card */
            height: 150px; /* Fixed height for the card */
            box-sizing: border-box; /*Include padding and border in the element's total width and height*/
        }

        .category-card:hover {
            transform: scale(1.05); /* Zoom in effect */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            background-color: #fff;


        }



        .category-card.selected {
            background-color: #ffe08a; /* Yellowish background for the selected state */
        }

        .category-card .icon-container {
            width: 80px; /* Size of the circular icon background */
            height: 80px;
            border-radius: 50%;
            background-color: #1a2c3a; /* Dark background for icons, matching your images */
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
            transition: background-color 0.3s ease;
        }


        .category-card:hover .icon-container {
        
            background-color: #fabb15; /* Dark background for icons, matching your images */
        }

        .category-card.selected .icon-container {
            background-color: #fff; /* White background for the icon when selected */
        }

        .category-card .icon-container svg {
            width: 50px !important; /* Size of the actual icon image */
            height: 50px !important;
            font-weight: 600;
            color: #fff;
            /* You might want to use SVG icons for better scalability and styling */
        }

        .category-card:hover .icon-container svg {
          
            
            color: #060606;
        }


        .category-card h3 {
            font-size: 1em;
            margin: 0;
            color: #333;
        }