        body {
            background-color: #f8f9fa;
            /* Adjust padding-top for fixed navbar if you decide to use it */
            /* padding-top: 80px; */ 
        }
        .container {
         
        }
        .full-width-carousel-container {
            width: 100%;
            margin-bottom: 2rem;
        }
        .nav-link {
            cursor: pointer;
        }
        .nav-item.active .nav-link {
            font-weight: bold;
            color: #007bff;
        }
        .list-group-item {
            cursor: pointer;
        }
        .list-group-item.active {
            font-weight: bold;
            background-color: #007bff;
            border-color: #007bff;
        }
        .table-responsive {
            margin-top: 1rem;
        }
        .vendor-image {
            width: 100%;
            height: auto;                  /* before height is 250px  chanhe on 9 oct 2025*/
            object-fit: cover; /* Changed to cover to fill space better */
        }
        .vendor-table-row {
            cursor: pointer;
        }
        .vendor-table-row:hover {
            background-color: #f0f0f0;
        }
        @media (max-width: 767.98px) {
            .table-responsive {
                margin-top: 2rem;
            }
        }

/* Hero Section Styling */
.hero-section {
    position: relative;
    background-image: url('./Images/Babas03.jpg'); /* Replace with the URL of your chosen image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* Changed text color to white for contrast */
    text-align: center;
    padding: 100px 20px;
}

/* Optional: Add a subtle overlay to improve text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px #000000; /* Adds a text shadow for better readability */
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px #000000;
}

/* Button Styling (as per your original code) */
.btn.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn.btn-primary:hover {
    background-color: #0056b3;
}

/* Generic scroll-based animation for all sections */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar-logo {
  height: 75px;   /* Adjust: try 35px, 40px, or 45px */
    vertical-align: middle;
    border-style: none;
    overflow: clip;}
    

    /* --- Modern Datatable Styling --- */
.modern-datatable {
    border-collapse: collapse; /* Essential for clean borders */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 8px; /* Slightly rounded corners */
    overflow: hidden; /* Ensures rounded corners are visible */
}

/* Header Styling */
.modern-datatable thead {
    background-color: #3f51b5; /* Primary color (e.g., a nice blue) */
    color: white;
}

.modern-datatable th {
    padding: 15px 20px; /* Increased padding */
    text-align: left;
    font-weight: 600; /* Bold, but not too heavy */
    border: none;
}

/* Body Cell Styling */
.modern-datatable td {
    padding: 12px 20px; /* Slightly less padding than header */
    border-bottom: 1px solid #e0e0e0; /* Thin, light separator */
}

/* Striping (Zebra Rows) */
.modern-datatable tbody tr:nth-child(even) {
    background-color: #f5f5f5; /* Light grey stripe */
}

/* Hover Effect */
.modern-datatable tbody tr:hover {
    background-color: #e3f2fd; /* Very light blue on hover */
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

/* Remove last row border for a clean bottom edge */
.modern-datatable tbody tr:last-child td {
    border-bottom: none;
}

/* --- Optional: Styling the row from your JS --- */
.vendor-table-row {
    /* No additional styling needed here, but you can add more if necessary */
}

/* --- New Card Styles 16/10/2025 --- */

/* Style for the individual vendor card */
.vendor-card-inner {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background-color: #fff; /* Ensure card background is white */
}

/* Hover effect for a more interactive feel */
.vendor-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Title (Vendor Name) */
.vendor-card-inner .card-title {
    font-weight: bold;
    color: #FF6F61 !important; /* Use your theme color */
}

/* Icon colors for contact/address */
.vendor-card-inner .card-text i, 
.vendor-card-inner .card-link i {
    color: #5cb85c; /* A nice green for contact info */
}

/* Styling for the contact links */
.vendor-card-inner .card-link {
    font-weight: 500;
    color: #337ab7;
    transition: color 0.2s;
}
.vendor-card-inner .card-link:hover {
    color: #FF6F61;
    text-decoration: none;
}




   /* ✅ Vendor Card with Image */
.vendor-card-inner {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vendor-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.vendor-card-img {
  width: 100%;
  height: 180px;             /* you can adjust to 200px if you want taller images */
  object-fit: cover;         /* ensures it fills the card neatly */
  border-bottom: 1px solid #ddd;
}

/* Vendor Text Styling */
.vendor-card-inner .card-title {
  color: #ff6f61 !important;
  font-weight: 600;
  font-size: 1.1rem;
}
.vendor-card-inner .card-text i {
  color: #5cb85c;
}
.vendor-card-inner .card-link {
  color: #337ab7;
  font-weight: 500;
  transition: color 0.2s ease;
}
.vendor-card-inner .card-link:hover {
  color: #ff6f61;
  text-decoration: none;
}




.luxury-market-heading {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.2rem;
            text-align: center;
           color:  #FF6F61;
            /* color: #c7a148; premium gold */
            position: relative;
            margin-bottom: 15px;
            letter-spacing: 0.7px;
            animation: fadeDown 0.9s ease-in-out;
        }

        .luxury-market-heading::after {
            content: "";
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, #c7a148, #f3e6a6);
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .subtagline {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            text-align: center;
            margin-top: 0px;
            color: #6d6d6d;
            letter-spacing: 0.3px;
        }

        @keyframes fadeDown {
            0% { opacity: 0; transform: translateY(-10px); }
            100% { opacity: 1; transform: translateY(0); }
        }




     .vendor-title-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.vendor-title-link:hover {
    text-decoration: underline;
}
