/* Global reset to prevent horizontal overflow */
html, body {
    width: 100%;
    overflow-x:visibel;
    margin: 0;
    padding: 0;
}

/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #ffff;
    font-family: "Poppins";
    box-sizing: border-box;
}

/* Fix container width to prevent overflow */
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

.container {
    margin: 0 auto;
    overflow:visible;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Fix responsive sections */
.row {
    margin-right: 0;
    margin-left: 0;
}

.col-lg-6, .col-md-6, .col-sm-12 {
    padding-right: 15px;
    padding-left: 15px;
}

/* Fix search bar responsiveness */
.search-bar {
    border-radius: 30px;
    border: 2px solid #6f42c1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    background: #fff;
    animation: slideInUp 1s ease-in-out;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Fix banner responsiveness */
.banner-box {
    background: url('../images/ls.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    height: 200px;
    width: 100%;
    max-width: 950px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fix categories section */
.categories-section {
    background-color: #f8f9fa;
    width: 100%;
    margin-bottom: 40%;
    padding: 0 15px;
}

/* Fix listings responsiveness */
.listing-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Fix card carousel */
.card-carousel {
    display: flex;
    overflow-x: auto;
    gap: 0px;
    padding: 10px 0;
    scroll-behavior: smooth;
    position: relative;
    width: 100%;
}

/* Fix business cards */
.business-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow:visibel;
    transition: transform 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 320px;
}

/* Fix trending section */
.trending-peek-section {
    padding: 30px 15px;
    background: #fff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.peek-scroll-wrapper {
    display: flex;
    gap: 0px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Fix neo-cards responsiveness */
.neo-card {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow:visibel;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    box-sizing: border-box;
}

/* Fix left-side cards */
.left-card {
    height: 33%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    width: 100%;
    box-sizing: border-box;
}

/* Fix social section */
.social-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/hhy.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    width: 100%;
    box-sizing: border-box;
}

/* Fix margins and padding on smaller devices */
@media (max-width: 768px) {
    /* .search-bar {
        width: 90%;
        margin: 0 auto;
    }
     */
    .banner-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }
    
    .business-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
    
    .peek-card {
        min-width: 200px;
        max-width: 200px;
    }
    
    .categories-section {
        width: 100%;
        margin-bottom: 20%;
    }
    
    .col-lg-3, .col-lg-9 {
        width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .container, .container-fluid {
        padding-right: 10px;
        padding-left: 10px;
    }
    
    /* .search-bar {
        width: 95%;
        padding: 10px;
    }
     */
    .product-card {
        min-width: 100px;
        max-width: 100px;
        height: 100px;
    }
    
    .photo-card {
        min-width: 150px;
        max-width: 150px;
        height: 120px;
    }
    
    .banner-box {
        height: 150px;
    }
    
    .col-lg-6 h1 {
        font-size: 1.8rem;
    }
}

/* Ensure no element causes horizontal overflow */
img, iframe, embed, object, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Fix navbar issues */
nav, header {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix footer issues */
footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
/* Base Listing Card Styles */
.listing-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow:visibel;
  }
  
  .listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #67B339;
    margin: 0 auto 15px;
    display: block;
  }
  
  .true-guide-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #67B339;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
  }
  
  .business-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
  }
  
  .director-name {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
  }
  
  .address {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow:visibel;
    text-overflow: ellipsis;
  }
  
  .contact-icons {
    margin-top: 10px;
  }
  
  .contact-icons i {
    background-color: #f8f9fa;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    color: #67B339;
    transition: all 0.3s ease;
  }
  
  .contact-icons i:hover {
    background-color: #67B339;
    color: white;
    cursor: pointer;
  }
  
  /* Listing Section Title */
  #photoCarousel h4 {
    font-size: 1.8rem;
    text-transform: capitalize;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
  }
  
  #photoCarousel h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #67B339;
  }
  
  /* Carousel Controls */
  #photoCarousel .carousel-control-prev,
  #photoCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(103, 179, 57, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  #photoCarousel:hover .carousel-control-prev,
  #photoCarousel:hover .carousel-control-next {
    opacity: 1;
  }
  
  #photoCarousel .carousel-control-prev {
    left: 10px;
  }
  
  #photoCarousel .carousel-control-next {
    right: 10px;
  }
  
  #photoCarousel .carousel-control-prev-icon,
  #photoCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
  
  /* Media Queries for Responsive Design */
  /* Extra Large Screens */
  @media (min-width: 1400px) {
    .listing-card {
      padding: 25px;
    }
    
    .profile-img {
      width: 100px;
      height: 100px;
    }
    
    .business-name {
      font-size: 1.3rem;
    }
    
    .director-name {
      font-size: 1rem;
    }
    
    .contact-icons i {
      width: 36px;
      height: 36px;
      line-height: 36px;
    }
  }
  
  /* Large Screens */
  @media (min-width: 992px) and (max-width: 1399.98px) {
    .listing-card {
      padding: 20px 15px;
    }
    
    .profile-img {
      width: 85px;
      height: 85px;
    }
  }
  
  /* Medium Screens (Tablets) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    #photoCarousel .row {
      margin-left: -10px;
      margin-right: -10px;
    }
    
    #photoCarousel .col-md-3 {
      padding-left: 10px;
      padding-right: 10px;
    }
    
    .listing-card {
      padding: 15px 10px;
    }
    
    .profile-img {
      width: 70px;
      height: 70px;
      margin-bottom: 10px;
    }
    
    .business-name {
      font-size: 1rem;
    }
    
    .director-name, .address {
      font-size: 0.8rem;
    }
    
    .contact-icons i {
      width: 28px;
      height: 28px;
      line-height: 28px;
      font-size: 0.8rem;
    }
    
    .true-guide-badge {
      font-size: 8px;
      padding: 3px 6px;
    }
    
    #photoCarousel h4 {
      font-size: 1.5rem;
      margin-bottom: 20px;
    }
  }
  
  /* Small Screens (Mobile Landscape) */
  @media (min-width: 576px) and (max-width: 767.98px) {
    #photoCarousel .carousel-item .row {
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 15px; /* Space for scrollbar */
    }
    
    #photoCarousel .carousel-item .col-sm-6 {
      flex: 0 0 80%;
      max-width: 80%;
      scroll-snap-align: center;
    }
    
    .listing-card {
      margin: 0 5px;
    }
    
    #photoCarousel .carousel-control-prev,
    #photoCarousel .carousel-control-next {
      display: none; /* Hide default controls on small screens */
    }
    
    #photoCarousel h4 {
      font-size: 1.4rem;
    }
    
    /* Custom pagination for mobile */
    #photoCarousel .carousel-indicators {
      bottom: -10px;
    }
    
    #photoCarousel .carousel-indicators [data-bs-target] {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #67B339;
      opacity: 0.5;
    }
    
    #photoCarousel .carousel-indicators .active {
      opacity: 1;
    }
  }
  
  /* Extra Small Screens (Mobile Portrait) */
  @media (max-width: 575.98px) {
    #photoCarousel .carousel-item .row {
      margin: 0;
    }
    
    #photoCarousel .carousel-item .col-12 {
      padding: 0 10px;
      margin-bottom: 15px;
    }
    
    .listing-card {
      padding: 15px;
    }
    
    .profile-img {
      width: 60px;
      height: 60px;
      border-width: 2px;
      margin-bottom: 10px;
    }
    
    .business-name {
      font-size: 0.95rem;
    }
    
    .director-name {
      font-size: 0.8rem;
    }
    
    .address {
      font-size: 0.75rem;
      margin-bottom: 8px;
    }
    
    .contact-icons i {
      width: 26px;
      height: 26px;
      line-height: 26px;
      font-size: 0.75rem;
    }
    
    .true-guide-badge {
      font-size: 8px;
      padding: 2px 5px;
      top: 5px;
      right: 5px;
    }
    
    #photoCarousel h4 {
      font-size: 1.2rem;
      margin-bottom: 15px;
    }
    
    #photoCarousel h4::after {
      width: 40px;
      height: 2px;
    }
    
    /* Adjust carousel controls for very small screens */
    #photoCarousel .carousel-control-prev,
    #photoCarousel .carousel-control-next {
      width: 30px;
      height: 30px;
    }
    
    #photoCarousel .carousel-control-prev-icon,
    #photoCarousel .carousel-control-next-icon {
      width: 15px;
      height: 15px;
    }
    
    /* Ensure the business cards stack properly on tiny screens */
    @media (max-width: 359.98px) {
      .business-name {
        font-size: 0.85rem;
      }
      
      .director-name, .address {
        font-size: 0.7rem;
      }
      
      .contact-icons i {
        width: 24px;
        height: 24px;
        line-height: 24px;
      }
    }
  }
  
  /* Print media query for when users want to print the listing page */
  @media print {
    #photoCarousel .carousel-control-prev,
    #photoCarousel .carousel-control-next,
    #photoCarousel .carousel-indicators {
      display: none;
    }
    
    .listing-card {
      box-shadow: none;
      border: 1px solid #ddd;
      break-inside: avoid;
    }
    
    .profile-img {
      print-color-adjust: exact;
      -webkit-print-color-adjust: exact;
    }
    
    /* Make sure all slides are visible when printing */
    #photoCarousel .carousel-item {
      display: block !important;
      opacity: 1 !important;
      page-break-after: always;
    }
    
    #photoCarousel h4::after {
      display: none;
    }
  }
  
  /* Dark mode support */
  @media (prefers-color-scheme: dark) {
    body.dark-mode #photoCarousel h4 {
      color: #f1f1f1;
    }
    
    body.dark-mode .listing-card {
      background: #2a2a2a;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    body.dark-mode .business-name {
      color: #f1f1f1;
    }
    
    body.dark-mode .director-name {
      color: #ccc;
    }
    
    body.dark-mode .address {
      color: #aaa;
    }
    
    body.dark-mode .contact-icons i {
      background-color: #3a3a3a;
      color: #8ad95a;
    }
    
    body.dark-mode .contact-icons i:hover {
      background-color: #67B339;
      color: #fff;
    }
  }
  
  /* Touch device optimizations */
  @media (hover: none) {
    .listing-card:hover {
      transform: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .contact-icons i {
      width: 36px;
      height: 36px;
      line-height: 36px;
      font-size: 1rem;
    }
  }
  
  /* Accessibility improvements for focus states */
  .listing-card:focus-within {
    outline: 2px solid #67B339;
  }
  
  .contact-icons i:focus {
    outline: 2px solid #67B339;
    background-color: #e9f5e0;
  }
  /* =============== VARIABLES =============== */
:root {
    /* Main Colors */
    --primary-color: #4c5bdc;
    --secondary-color: #5fd35f;
    --accent-color: #5fd35f;
    --dark-color: #222831;
    --light-color: #f8f9fa;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --success-color: #2ecc71;

    /* Text Colors */
    --text-dark: #333;
    --text-muted: #6c757d;
    --text-light: #f8f9fa;

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #4c5bdc 0%, #3b47a8 100%);
    --gradient-secondary: linear-gradient(135deg, #5fd35f 0%, #4caf50 100%);
    --gradient-accent: linear-gradient(135deg, #5fd35f 0%, #4caf50 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

  
  
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spin-animation {
  animation: spin 2s linear ;
}

 

    .go-btn {
        background: #6f42c1;
        color: white;
        border-radius: 20px;
        padding: 8px 20px;
        border: none;
    }

    .go-btn:hover {
        background: #5a32a3;
    }

 
    .banner-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: url('https://images.unsplash.com/photo-1596495577886-d920f1fb7238') no-repeat center center;
        background-size: cover;
        border-radius: 10px;
        padding: 40px 30px;
        color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
    }

    .banner-text h2 {
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.5;
        margin: 0;
    }
.a{
  text-decoration:none;
}
    .banner-image img {
        width: 80px;
        height: auto;
    }

    @media (max-width: 768px) {
        .banner-container {
            flex-direction: column;
            text-align: center;
        }

        .banner-image {
            margin-top: 20px;
        }
    }


    .listing-container {
        /* line-height: 18px; */
        max-width: 1400px;
        margin: 20px auto;
        padding: 0px;
        background-color: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .listing-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #333;
    }

    .card-carousel {
        display: flex;
        overflow-x: auto;
        gap: 0px;
        padding: 10px 0;
        scroll-behavior: smooth;
        position: relative;
    }

    .card-carousel::-webkit-scrollbar {
        height: 5px;
    }

    .card-carousel::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .card-carousel::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    .business-card {
        flex: 0 0 320px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        overflow:visibel;
        transition: transform 0.3s ease;
        position: relative;
    }

    .business-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .card-header {
        display: flex;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .profile-img {
    position: absolute;
    top: -30px; /* Adjust this to control how much it floats above */
    left: 20px; /* Or use right/center as needed */
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover; /* Use 'cover' for better image scaling */
    margin-right: 15px;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: adds a nice pop-out effect */
}

    .logo-img {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 80px;
        height: auto;
    }

    .card-body {
        padding: 15px;
    }

    .company-name {
        color: #7b1fa2;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .person-name {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .designation {
        color: #666;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .address-label {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .address {
        color: #666;
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .contact-buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }

    .contact-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f1f1f1;
        color: #555;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .contact-btn:hover {
        transform: scale(1.1);
    }

    .phone {
        color: #7b1fa2;
    }

    .whatsapp {
        color: #4CAF50;
    }

    .email {
        color: #2196F3;
    }

    .directions {
        color: #FF9800;
    }

    /* =============== CATEGORIES SECTION =============== */
    .categories-section {
        background-color: #f8f9fa;
        width: 75%;
        margin-bottom: 40%;
        /* margin-left: 30%; */

    }

    .categories-grid {
        margin-top: 2rem;
    }

    .category-card {
        display: block;
        background: white;
        border-radius: var(--border-radius-lg);
        padding: 1rem 1.2rem;
        text-align: center;
        box-shadow: var(--shadow-sm);
        transition: var(--transition-normal);
        height: 80%;
           text-decoration:none;
    }

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        text-decoration: none;
    }

    .category-card .icon-container {
        width: 73px;
        height: 75px;
        margin: 0 auto 1.5rem;
        background: var(--light-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color:black;
        transition: var(--transition-normal);
    }

    .category-card:hover .icon-container {
        background: var(--primary-color);
        color: white;
        transform: scale(1.1);
    }

    .category-card h5 {
        color: var(--text-dark);
        margin-bottom: 0;
        margin-top: -13px;

        transition: var(--transition-fast);
     
    }

    .category-card:hover h5 {
        color: var(--primary-color);
    }

    .view-more-btn {
        margin-top: 2rem;
        font-weight: 500;
        border-radius: var(--border-radius-md);
    }

    .trending-peek-section {
        padding: 30px;
        background: #fff;
        max-width: 1200px;
        margin: 0 auto;
    }

    .trending-peek-section h2 {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .peek-scroll-wrapper {
        display: flex;
        gap: 0px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        padding-right: 40px;
    }

    .peek-scroll-wrapper::-webkit-scrollbar {
        display: none;
        /* Clean look */
    }

    .peek-card {
        flex: 0 0 250px;
        background-color: #f1f5f9;
        border-radius: 12px;
        text-align: center;
        padding: 16px;
        scroll-snap-align: start;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .peek-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .peek-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .peek-card p {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .peek-card button {
        background-color: #3b82f6;
        color: #fff;
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.2s ease;
    }

    .peek-card button:hover {
        background-color: #2563eb;
    }


    @media (max-width: 767.98px) {
      /* Hide all cards inside carousel item */
      .carousel-item .col-md-3 {
        display: none;
      }
    
      /* Only show the first one in each slide */
      .carousel-item.active .col-md-3:first-child {
        display: block;
        width: 100%;
        max-width: 100%;
        align-items: center;
        margin-left: 10%;
      }
    }


    .peek-slider-wrapper {
      position: relative;
    }
    
    .peek-prev-btn,
    .peek-next-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 0.6rem 1rem;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 2px;
    }
    
    .peek-prev-btn {
      left: 0;
    }
    
    .peek-next-btn {
      right: 0;
    }
    
    .peek-scroll-wrapper {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: rem;
      padding: 1rem;
      scroll-behavior: smooth;
      scrollbar-width: none; /* Firefox */
    }
    
    .peek-scroll-wrapper::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }
    
    .peek-card {
      flex: 0 0 auto;
      width: 200px;
      scroll-snap-align: start;
      text-align: center;
      background-color: #fff;
      border-radius: 10px;
      padding: 1rem;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
   
    @media (max-width: 576px) {
      .search-bar {
          padding: 6px 12px;
          border-radius: 20px;
          width:20%;
      }
  
      .search-bar input {
          font-size: 0.9rem;
          padding: 4px 8px;
      }
  
      .go-btn {
          padding: 0.3rem 0.8rem;
          font-size: 0.85rem;
      }
  }
  
.social-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/hhy.jpg') no-repeat center center/cover; height: 400px; display: flex; align-items: center;
    padding: 4rem 0;
}

.social-section h2 {
    margin-bottom: 0.5rem;
    color:white;
}

.social-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    color:white;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition-normal);
}

.social-icon:hover {
    transform: translateY(-10px) rotate(10deg);
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.email {
    background: linear-gradient(45deg, #4c5bdc, #3b47a8);
}

.social-icon.twitter {
    background: linear-gradient(45deg, #1da1f2, #0d8ecf);
}

.social-icon.youtube {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}
.listing-card {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background: #fff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    object-fit: cover;
    position: absolute;
    top: -30px;
    left: 5px;
    border: 3px solid white;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.true-guide-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 12px;
    color: #6a0dad;
    font-weight: bold;
}

.contact-icons i {
    color: #6a0dad;
    font-size: 14px;
    cursor: pointer;
    margin: 0 5px;
}


.listing-card {
    width: 80%;
    height: 250px; /* Fixed uniform height */
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Profile Image */
.profile-img {
    width: 60px;
    height: 60px;
    border-radius:20%;
    object-fit: cover;
    position: absolute;
    top: -20px;
    left: 2px;
    border: 3px solid white;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* True Guide Badge */
.true-guide-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #6a0dad;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    color: white;
}

/* Business Name & Owner */

/* Address Section */
.address {
    font-size: 12px;
    color: #555;
    text-align: center;
    padding: 5px 0;
}