
        /* Global Styles */
        /* Ensure proper box-sizing */
* {
    box-sizing: border-box;
}

        body {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            box-sizing: border-box;
            background-color: #f9f9f9;
        }

        a {
            text-decoration: none;
            color: #333;
            margin: 0 15px;
        }

        a:hover {
            color: #ff7f50;
        }

        /* Top Bar */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background-color: #fff;
            border-bottom: 1px solid #e0e0e0;
        }

        .flag {
            font-weight: bold;
        }

        .contact-info {
            display: flex;
            align-items: center;
        }

        .call-icon {
            margin-right: 5px;
        }

        .expert {
            margin-left: 15px;
            color: #ff7f50;
            font-weight: bold;
        }
/* Category Navigation */
.categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Space between categories */
}

/* Category Links */
.category-item {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    text-decoration: none;
    color: #444;
    font-size: 14px;
    text-transform: uppercase; /* Matches provided style */
    font-weight: bold; /* Bold text */
    transition: color 0.3s ease;
}

/* Active Category */
.category-item.active {
    color: #ff7f32; /* Orange color for active link */
}

/* Hover Effect */
.category-item:hover {
    color: #ff7f32; /* Hover color */
}
/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design: Hide on Small Screens */
@media (max-width: 768px) {
    .categories {
        display: none !important; /* Force hide */
    }
}
/* Responsive for Small Screens */
@media (max-width: 768px) {
    .desktop-header,
    .top-bar,
    .main-header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }
}
        /* Main Header */
        
        
        .logo {
    display: flex;          /* Align image and text horizontally */
    align-items: center;    /* Vertically center image and text */
    font-size: 24px;        /* Text size */
    font-weight: bold;      /* Make text bold */
    color: #087A66;         /* Text color */
}

/* Logo Image Styling */
.logo img {
    width: 75px;            /* Adjust image size */
    height: auto;           /* Keep aspect ratio */
    margin-left: 102px;     /* Space between image and text */
}



        .search-bar {
            flex: 1;
            max-width: 600px;
            padding: 10px;
            margin: 0 20px;
            border: 1px solid #ddd;
            border-radius: 25px;
            outline: none;
        }

        .quote-btn {
            padding: 10px 20px;
            background-color: #ff7f50;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
        }

        .quote-btn:hover {
            background-color: #ff6347;
        }

        /* Navigation Categories */
        .categories {
            display: flex;
            justify-content: center;
            background-color: #fff;
            padding: 10px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .categories a {
            font-weight: bold;
            text-transform: uppercase;
        }

        /* Banner Slider */
        .banner-slider {
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: relative;
            width: 100%;
        }

        .slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        .banner-text {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            color: #333;
        }

        .banner-text h1 {
            font-size: 3rem;
            margin: 0;
        }

        .banner-text p {
            font-size: 1.2rem;
            margin: 10px 0;
        }

        .browse-btn {
            padding: 10px 20px;
            background-color: #ff7f50;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
        }

        .browse-btn:hover {
            background-color: #ff6347;
        }
        /* Ensure the mobile header is hidden on larger screens */
.mobile-header,
.mobile-banner {
    display: none;
}

        /* Default (Desktop) Banner Text Size */
.banner-text h1 {
    font-size: 3rem; /* Large for desktop */
}

.banner-text p {
    font-size: 1.5rem; /* Subtext for desktop */
}

/* Responsive Banner Text for Mobile */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 1.2rem; /* Smaller heading on mobile */
    }

    .banner-text p {
        font-size: 1rem; /* Adjust subtext on mobile */
    }

    .browse-btn {
        font-size: 0.9rem; /* Reduce button size for mobile */
        padding: 8px 12px; /* Adjust padding */
    }
}

        @media (max-width: 768px) {
    .logo {
        margin-left: 33px; /* Move left */
    }
  

}
     /* Increase Mobile Header Size */
/* Center Align Header Content */
/* Responsive Design (Mobile: max-width: 768px) */
@media (max-width: 768px) {
    /* Hide Desktop Elements */
    .top-bar,
    .main-header,
    .desktop-banner 
    {
        display: none;
    }
}

@media (max-width: 768px) {
     .mobile-header {
        height: 80px;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
    }

    .mobile-header .logo {
        font-size: 28px; /* Bigger logo */
        font-weight: bold; /* Bold for better visibility */
        flex-grow: 1; /* Allow logo to take remaining space */
        text-align: center; /* Center logo text */
        
    }

    .hamburger, .expert-icon {
        font-size: 25px; /* Larger icon size */
        cursor: pointer; /* Make icons clickable */
    }
}

       /* Hide Unnecessary Elements on Mobile */
@media (max-width: 768px) {
    .top-bar, .search-bar, .get-quote-btn {
        display: none; /* Hide these sections */
    }


    /* Navigation Bar */
    .mobile-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background: #fff; /* Optional: Match theme */
    }
    

    /* Hamburger Icon (Left) */
    .hamburger-menu {
        font-size: 25px;
        cursor: pointer;
        margin-left: -6px; /* Moves right */
    }

    /* Logo (Center) */
    .logo {
        flex-grow: 1;
        text-align: center;
        
    }
}

    .logo img {
        max-height: 90px; /* Adjust logo size */
    }

    /* WhatsApp Expert Icon (Right) */
    .expert-icon a {
        font-size: 25px;
        color: green;
         margin-right: -6px; /* Moves left */
    }

    /* Banner Section */
    .banner {
        width: 100%;
        height: auto; /* Ensure responsive scaling */
    }

    .banner img {
        width: 100%;
        height: auto;
    }

   /* Sidebar Menu (Hidden by Default) */
     .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        width: 250px;
        height: 100%;
        background: #fff;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
        z-index: 1000;
    }

    /* Open Sidebar */
    .sidebar.open {
        left: 0; /* Slide in */
    }


    .sidebar ul {
        list-style: none;
        padding: 20px;
    }

    .sidebar ul li {
        padding: 12px 0;
    }
    /* Hide Desktop Header on Mobile */
    @media (max-width: 768px) {
        .top-bar, .main-header {
            display: none; /* Hide these sections */
        }
    }

     .category-section {
    text-align: center;
    padding: 40px 82px;
}

.category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.5s ease;
    background-color: #f9f9f9; /* Fallback background */
}

.category-box img {
    width: 100%;
    height: 250px; /* Maintain uniform height */
    object-fit: cover; /* Ensures the image covers the box without stretching */
    border-radius: 12px;
}

.category-box span {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
}

.category-box:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .category-section {
        padding: 20px; /* Reduced padding */
    }

    .category-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for better fit */
        gap: 10px; /* Reduced gap */
    }

    .category-box img {
        height: 200px; /* Increased image height */
    }

    .category-box span {
        font-size: 0.9rem; /* Reduced text size */
        white-space: nowrap; /* Keep text in a single line */
        padding: 5px 12px; /* Adjusted padding */
    }
}

@media (max-width: 480px) {
    .category-section {
        padding: 15px; /* Minimal padding */
    }

    .category-container {
        grid-template-columns: repeat(2, 1fr); /* Maintain 2 columns */
        gap: 8px; /* Further reduced gap */
    }

    .category-box img {
        height: 160px; /* Adjusted for small screens */
    }

    .category-box span {
        font-size: 0.8rem; /* Smaller font */
        padding: 4px 10px;
    }
}


    .best-selling-section {
            padding: 50px 80px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: bold;
            text-align: left;
            margin-bottom: 20px;
        }
        .category-tabs a {
            margin-right: 20px;
            font-size: 1.1rem;
            text-decoration: none;
            color: #666;
            position: relative;
            padding-bottom: 5px;
        }
        .category-tabs a.active {
            color: #333;
            font-weight: bold;
        }
        .category-tabs a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: #333;
            bottom: 0;
            left: 0;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        .product-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
            text-align: center;
        }
        .product-card:hover {
            transform: scale(0.97);
        }
        .product-image img {
            width: 100%;
            height: auto;
            border-bottom: 1px solid #eee;
        }
        .product-name {
            padding: 15px;
            font-size: 1.1rem;
        }
        /* Best Selling Section - Responsive Design */

@media (max-width: 768px) {
    .best-selling-section {
        padding: 20px; /* Reduced padding for tablets */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for better alignment */
        gap: 10px; /* Reduced gap */
    }

    .product-card {
        border-radius: 12px; /* Consistent with category section */
    }

    .product-image img {
        height: 200px; /* Increased image height */
        object-fit: cover; /* Ensure no distortion */
    }

    .product-name {
        font-size: 0.9rem; /* Reduced text size */
        white-space: nowrap; /* Keep text in a single line */
        overflow: hidden;
        text-overflow: ellipsis; /* Add ellipsis if text overflows */
    }
}

@media (max-width: 480px) {
    .best-selling-section {
        padding: 15px; /* Minimal padding for small screens */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns */
        gap: 8px; /* Further reduced gap */
    }

    .product-image img {
        height: 160px; /* Smaller image height */
    }

    .product-name {
        font-size: 0.8rem; /* Further reduced text size */
    }
}
/* Hide Desktop Header on Mobile */
@media (max-width: 768px) {
    .main-header {
        display: none; /* Hide extra logo and Get Quote on mobile */
    }

    /* Show Mobile Header */
    .mobile-header {
        display: flex;
    }
}
/* Default: Show Desktop Banner, Hide Mobile Banner */
.desktop-banner {
    display: block; /* Visible by default */
}

.mobile-banner {
    display: none; /* Hidden by default */
}

/* For Small Screens: Show Mobile Banner, Hide Desktop Banner */
@media (max-width: 768px) {
    .desktop-banner {
        display: none; /* Hide desktop banner */
    }

    .mobile-banner {
        display: block; /* Show mobile banner */
    }

    /* Adjust Banner Text Size for Mobile */
    .mobile-banner .banner-text h1 {
        font-size: 1.8rem; /* Smaller Heading */
    }

    .mobile-banner .banner-text p {
        font-size: 1rem; /* Smaller Subtext */
    }

    .mobile-banner .browse-btn {
        font-size: 0.9rem; 
        padding: 8px 12px; /* Adjust button size */
    }
}
 .whatsapp-circle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
        }

        .whatsapp-circle img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 0 12px 4px rgba(0, 128, 0, 0.8);
        }
        
/* ----- GENERAL STYLES ----- */
.collection-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

/* Collection Title */
.collection-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

/* Collection Subtitle */
.collection-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    
}

/* ----- COLLECTION CONTAINER ----- */
.collection-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ----- COLLECTION CARD ----- */
.collection-card {
    position: relative;
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Image Styling - FIXED FOR MOBILE */
.collection-card img {
    width: 100%;  /* Ensure image does not exceed card width */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Collection Info Overlay */
.collection-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
}

/* ----- RESPONSIVE STYLES ----- */
@media (max-width: 1024px) {
    .collection-title {
        font-size: 2rem;
        
    }

    .collection-subtitle {
        font-size: 1rem;
    }

    .collection-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .collection-title {
        font-size: 1.8rem;
        margin-bottom: 12px; /* Adjusted for mobile */
    }

    .collection-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .collection-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .collection-card {
        width: 90%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .collection-title {
        font-size: 1.5rem;
        margin-bottom: 10px; /* Smaller space on very small screens */
    }

    .collection-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .collection-container {
        gap: 10px;
    }

    .collection-card {
        width: 95%;
        max-width: 300px;
    }

    .collection-card img {
        width: 100%;  /* Fix image overflow */
        height: auto; /* Maintain aspect ratio */
        max-height: 250px; /* Optional: Limits height */
    }

    .collection-info {
        font-size: 0.9rem;
        padding: 4px 8px;
    }
}

.enquiry-button {
             display: inline-block;
            padding: 8px 16px;
            margin-top: 10px;
            color: transparent; /* Gradient text */
           background: linear-gradient(135deg, #64D5FA, #2ECC71);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: background-color 0.3s ease;
            margin-bottom: 10px;
            
        }
        .enquiry-button:hover {
            
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(46, 204, 113, 0.6);
        }
        .button-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

     
.contact-box {
        border: 3px solid black; /* Black outline */
        padding: 13px;
        margin: 1px auto;
        max-width: 600px; /* Centered for large screens */
        border-radius: 16px; /* Rounded corners */
        text-align: center; /* Center the content */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }
    
    

    