.btn.show{
            background-color: #1973cd;
            color:#fff;
        }
        h2{color:#db0f0d}
         .mega-dropdown {
  position: fixed;
  top: 64px; /* adjust if your navbar height is different */
  left: 0;
  width: 100vw;
  background: #fff;
  padding: 1.5rem 3rem;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1050; /* keep above navbar */
}

    .mega-dropdown.show {
      display: flex;
    }

    .menu-list {
     /*max-width: 220px; */
      border-right: 1px solid #ddd;
    }
    

    .menu-list a {
      display: block;
      padding: 10px;
      color: #000;
      text-decoration: none;
    }

    .menu-list a:hover,
    .menu-list a.active {
      background-color: #f8f9fa;
    }

    .submenu-content {
      flex-grow: 1;
      padding-left: 2rem;
      display: none;
      overflow-x:hidden;
      height:300px;
    }

    .submenu-content.active {
      display: block;
    }

    .submenu-content .card {
      border: none;
      text-align: center;
    }
         /* Hide on desktop, show only on mobile */
        @media (min-width: 992px) {
            .mobile-navbar {
                display: none;
            }
        }

        .mobile-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
        }

        .mobile-brand {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
        }

        .menu-toggle {
            background: none;
            border: none;
            font-size: 20px;
            color: #333;
            cursor: pointer;
        }

        /* Overlay Styles */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .slide-menu {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            
            height: 100vh;
            background: white;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .slide-menu.active {
            left: 0;
        }

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
            background: #f8f9fa;
        }

        .menu-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            padding: 5px;
        }

        .close-btn:hover {
            color: #333;
        }

        .menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .menu-item {
            /* Remove border-bottom as it's now handled by individual elements */
        }

        .menu-link-container {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
        }

        .menu-link {
            flex: 1;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            transition: background 0.2s ease;
        }

        .menu-link:hover {
            background: #f8f9fa;
            color: #333;
        }

        .submenu-btn {
            background: none;
            border: none;
            padding: 15px 20px;
            color: #666;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .submenu-btn:hover {
            background: #f8f9fa;
            color: #333;
        }

        .menu-item:not(:has(.menu-link-container)) .menu-link {
            display: block;
            border-bottom: 1px solid #eee;
        }

        .menu-arrow {
            font-size: 14px;
            color: #666;
        }

        /* Content spacing for fixed navbar */
        .content {
            margin-top: 80px;
            padding: 20px;
        }

        /* Desktop fallback */
        @media (min-width: 992px) {
            .content {
                margin-top: 0;
            }}

    









.carousel-container {
            position: relative;
        }
        
        .carousel-arrow {
            position: absolute;
            top: -20%;
            transform: translateY(-50%);
            z-index: 10;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: none; /* Hidden by default */
        }
        
        .carousel-arrow.show {
            display: block;
        }
        
        .left-arrow {
            right: 100px;
        }
        
        .right-arrow {
            right: 50px;
        }
        
        .product-carousel {
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .product-carousel::-webkit-scrollbar {
            display: none;
        }
        
        .product-card {
            width: 280px;
            flex-shrink: 0;
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 250px;
            }
        }










.site-footer {
  background-color: #111; /* dark background */
  color: #fff;
  padding-top: 50px;
  
  font-family: 'Arial', sans-serif;
}

/* Widget Titles */
.site-footer .widget-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Widget Content Links */
.site-footer .widget-contet ul li a,
.site-footer .footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.site-footer .widget-contet ul li a:hover,
.site-footer .footer-menu ul li a:hover {
  color: #0d6efd; /* Bootstrap blue */
}

/* Contact Info */
.site-footer .widget-contact-info a {
  color: #fff;
  text-decoration: none;
}

.site-footer .widget-contact-info a:hover {
  color: #0d6efd;
}

/* Newsletter Input Styling */
.newsletter-box input[type="email"] {
  border-radius: 30px;
  padding: 10px 15px;
  border: none;
  outline: none;
}

/* Subscribe Button */
.newsletter-box button.signup-btn,
.newsletter-box .btn {
  border-radius: 30px;
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}

.newsletter-box button.signup-btn:hover,
.newsletter-box .btn:hover {
  background-color: #0056b3;
}

/* Social Icons */
.footer-social ul {
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.footer-social ul li {
  display: inline-block;
  margin-right: 10px;
}

.footer-social ul li a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social ul li a:hover {
  color: #0d6efd;
}

/* Copyright */
.copyright {
  background-color:#000 !important;
  color: #ccc;
  font-size: 14px;
  padding: 15px 0;
}

.copyright a {
  color: #fff;
  text-decoration: none;
}

.copyright a:hover {
  color: #0d6efd;
}






.custom-input {
    border: 1px solid #ced4da; /* Default border */
    transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 25PX;
    padding: 0.375rem 0.75rem; /* Match Bootstrap's padding */
  }
  
  /* Focus state - when clicked/tabbed into */
  .custom-input:focus {
    outline: none; /* Remove default outline */
    border: 2px solid #000000 !important; /* 2px black border */
    box-shadow: none !important; /* Remove Bootstrap's default box-shadow */
  }
  
  /* Active state - while being clicked */
  .custom-input:active {
    border: 2px solid #ff0000 !important; /* 2px red border */
  }
  
  /* For textarea specifically to match other inputs */
  textarea.custom-input {
    min-height: calc(1.5em + 0.75rem + 2px); /* Match Bootstrap's height calculation */
  }







  
.floating-label-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-label-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
    font-size: 16px;
    background: transparent;
    outline: none;
}

.floating-label-group label {
    position: absolute;
    left: 0;
    top: 8px;
    color: #777;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}

.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown):valid + label {
    top: -14px;
    font-size: 12px;
    color: #000;
}








.dropdown-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dropdown-toggle-btn i {
  transition: transform 0.3s ease;
}

.dropdown-toggle-btn.open i {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .custom-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1020; /* Same as Bootstrap's sticky-top */
  }
}


.divideshape1{
overflow:hidden;
position:relative;
}
.divideshape1::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 104% 61px;
background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1134.63 158.42"><g fill="%23183883"><path d="M0 0h1134.63L565.17 111.32Z"/><path d="M0 0v51.38l565.17 107.04 569.46-115.6V0Z" opacity=".66"/></g></svg>'); 
}

@media (min-width:2100px){
.divideshape1::before{
background-size: 104% calc(2vw + 61px);
}
}




.zoomWrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.zoomWrapper img.main-product-image {
    width: 100%;
    height: auto;
    transition: transform 0.1s ease;
    transform-origin: center center;
    will-change: transform;
    pointer-events: none; /* Prevent cursor interfering with JS */
}

.single-zoom-thumb ul {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.single-zoom-thumb ul li img {
    width: 80px;
    height: auto;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 6px;
}

.single-zoom-thumb ul li a.active img {
    border-color: #000;
}




.contact-reach-us {
  background-color: #f8f9fa;
  border-radius: 8px;
}

.contact-reach-us h2 {
  font-weight: 600;
  color: #000;
}

.contact-reach-us h5 {
  font-weight: 500;
  color: #222;
}

.contact-reach-us p, .contact-reach-us a {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.contact-reach-us img {
  flex-shrink: 0;
}
  
.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}

.map-frame.active-map {
  display: block;
}

.list-group-item {
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: 0.3s ease;
}

.list-group-item.active {
  border-left-color: #007bff;
  background-color: #e9f2ff;
}
