
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white);
}

.btn.btn-secondary {
    background: #0dcaf000 !important;
    color: var(--bs-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border: 1px solid #6485a3;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    /* background: var(--bs-primary) !important; */
    color: black !important;
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    /* background: var(--bs-primary) !important; */
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.nav-bar .categories-bars .categories-bars-item {
    padding: 5px 15px;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    display: flex;
    justify-content: space-between;
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item a,
.nav-bar .categories-bars .categories-bars-item span {
    color: var(--bs-dark);
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item:hover {
    background: var(--bs-primary);
}

.nav-bar .categories-bars .categories-bars-item:hover a,
.nav-bar .categories-bars .categories-bars-item:hover span {
    color: var(--bs-white);
}

.nav-bar .navbar.navbar-light {
    padding: 0 !important;
}
.nav-bar {
    position: sticky;  /* ya fixed */
    top: 0;
    z-index: 1020;
    background-color: #020b14;
    margin-top: 0; /* topbar scroll me upar chali jaaye */
}

.nav-bar .navbar .navbar-nav .nav-link {
    padding: 18px 15px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}





.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}
.dropdown-menu{
    color: white !important;
}

.navbar .navbar-toggler {
    padding: 5px 15px;
}
.nav-bar {
  background-color: #020b14; /* ya transparent */
}
.nav-bar .row {
  overflow: visible !important;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(2,11,20,0.95);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.mobile-menu-overlay.show { display: flex; }
.mobile-menu-overlay .close-btn {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  background: none;
  border: none;
  color: #fff;
}
.mobile-menu-overlay .mobile-nav {
  list-style: none;
  padding: 0;
  text-align: center;
}
.mobile-menu-overlay .mobile-nav li {
  margin: 15px 0;
}
.mobile-menu-overlay .mobile-nav a {
  color: #888888;
  font-size: 22px;
  text-decoration: none;
}
.mobile-menu-overlay .mobile-nav ul {
  list-style: none;
  padding-left: 0;
}
.mobile-menu-overlay .mobile-nav ul li a {
  font-size: 18px;
}


/* Collapse ko upar dikhane ke liye */
#allCat {
  position: absolute;
  top: 100%; /* button ke neeche open ho */
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999 !important; /* sabse upar */
  overflow: visible !important;
}

/* Parent nav row ka overflow hata */
.all-cat {
  white-space: nowrap; /* text wrap na ho */
  color: #fff; /* visible ho */
  position: relative;
  z-index: 10000; /* background ke upar dikhne ke liye */
}
/* Normal state (thoda andar) */
/* Default: thoda andar */
.nav-bar .categories-nav {
  margin-left: 170px;
  transition: margin 0.4s ease;
}

/* Scroll hone ke baad: left corner */
.nav-bar.sticky-active .categories-nav {
  margin-left: 0 !important;
}
footer, 
.container-fluid.bg-dark {
  background-color: #020b14 !important;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
    font-size: 0 !important; /* default text ko hide karega */
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
    font-size: 20px; /* icons ka size normal */
    color: #333; /* arrow ka color apni marzi se */
}

body {
  font-size: 1rem !important;   /* default bootstrap */
  zoom: 100% !important;        /* koi zoom effect ho to reset */
}



.nav-bar, .topbar, .topbar2 {
    overflow: visible !important;  /* dropdown cut nahi hoga */
}


.nav-bar .navbar-toggler {
    border-radius: 5px !important; 
    box-shadow: none !important;
}
/* Custom dropdown width */
.dropdown-menu-custom {
    width: 420px;         /* Desktop width adjust */
    max-width: 95vw;      /* Mobile friendly */
    padding: 10px 15px;
}

/* Remove Bootstrap row negative margins */
.dropdown-menu-custom .row {
    margin: 0;
}

/* Columns padding */
.dropdown-menu-custom .col-6 {
    padding: 0 5px;
}

/* Optional: smaller items */
.dropdown-menu-custom .dropdown-item {
    padding: 5px 10px;
}
/* Topbar upar ka fixed height */


/* Topbar height fix kar do */
.topbar {
    height: 45px; /* topbar ki fixed height */
    overflow: hidden; /* extra content ko hide kar dega */
}
.topbar {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Only hide topbar, logo and navbar remain */
body.scrolled .topbar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Ensure logo stays fixed */
.logo-left {
    z-index: 1100;
}


/* Row ke andar items vertically center */
.topbar .row {
    height: 100%;
    align-items: center; /* vertical center */
}

/* Logo container */
.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%; /* topbar ke height ko inherit kare */
}

.topbar2 {
    background-color: #020b14!important;
    height: 70px;
    position: relative;
    /* z-index: 1030; */
    overflow: visible; /* allow logo overflow */
}

.nav-bar {
    overflow: visible;
}

.navbar-brand {
    position: relative;
    z-index: 1100; 
}

.logo-img {
    position: absolute;
    top: -50px;
    left: 0;
    height: 105px;
    width: auto;
    transition: all 0.3s ease;
    z-index: 1100;
    margin-left: 50px;
    object-fit: cover;
}
.logo-container {
    position: relative; /* <-- important */
}

#navbarCollapse.collapsing {
  overflow: hidden;
  transition: height 0.4s ease;
}


.container-fluid.bg-dark .parent .row{
    overflow: visible;
}


/* .navbar.sticky-active .logo-img {
    position: relative;
    top: 0;
    height: 60px;
} */
.topbar2,
.topbar2 .row,
.topbar2 .col-md-4,
.nav-bar,
.nav-bar .row,
.nav-bar .col-lg-3 {
    overflow: visible;
}
.nav-bar .col-lg-3,
.nav-bar .col-md-4,
.nav-bar .d-inline-flex {
    overflow: visible;
}

/* ==================== COMMON NAVBAR STYLES ==================== */
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #020b14;
    margin-top: 0;
    overflow: visible !important;
}
.navbar .navbar-toggler {
    border-radius: 5px !important;
    box-shadow: none !important;
    padding: 5px 15px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1100;
}


/* Desktop Links */
.nav-bar .navbar .navbar-nav .nav-link {
    padding: 18px 15px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    transition: .5s;
    color: #fff !important;
}

/* Dropdown Hover */
.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}
.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width:50px) and (max-width: 993px) {
    .logo-img{
        top: -19px;
    }
    .navbar-nav{
        margin-left: auto;
    }
}
 @media (min-width:992px){
    .logo-img{
        top:-50px;
        margin-left: 120px;
        height: 110px;
    }
 }
/* Shrinked logo when navbar sticky */
/* #allCat {
    position: absolute; 
    left: 0; 
    right: 0; 
    top: 51px; 
    z-index: 999; 
    background: var(--bs-light);
} */




/*** Navbar End ***/

/*** Carousel Header Start ***/
/* Ensure carousel wrapper is full width */
.header-carousel.owl-carousel,
.header-carousel.owl-carousel .owl-stage-outer,
.header-carousel.owl-carousel .owl-stage,
.header-carousel.owl-carousel .owl-item {
    width: 100% !important;
}

/* Overlay banner stretching full width */
.carousel .carousel-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(143, 143, 143, 0.164);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px; /* optional */
    box-sizing: border-box; /* make padding not shrink width */
    z-index: 1;
}

/* Navigation buttons properly aligned at vertical center */
.header-carousel.owl-carousel .owl-nav .owl-prev,
.header-carousel.owl-carousel .owl-nav .owl-next {
    top: 50% !important;
    transform: translateY(-50%);
}


/*** Carousel Header End ***/


/*** Page Header start ***/
/* .page-header {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(59, 59, 59, 0.5), rgba(70, 70, 70, 0.5)), url(../img/carousel-1.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
} */
/*** Page Header end ***/


/*** Products Start ***/
.product .product-item {
    width: 100%;
    height: 100%;
    position: relative;
}
.product-card img {
  height: 220px;   /* jitni height chahiye utni fix kar */
  width: 100%;
  object-fit: cover; /* image ko crop/resize karega without distortion */
  transition: transform 0.4s ease;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.product-card img {
  transition: transform 0.4s ease;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card .overlay {
  position: absolute;
  top: 0; left: 0; 
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .overlay {
  opacity: 1;
}

.product .product-item .product-item-inner {
    height: 100%;
}

.product .product-item .product-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.product .product-item:hover .product-item-add {
    background: var(--bs-white);
    margin-bottom: -124px;
    opacity: 1;
}
.product .product-item:hover .product-item-inner {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.product .product-item .product-item-inner .product-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.product .product-item .product-item-inner .product-item-inner-item .product-new,
.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    position: absolute;
    width: 60px; 
    height: 60px;
    border-radius: 60px; 
    top: 20px; 
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.product .product-item .product-item-inner .product-item-inner-item .product-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner img {
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner img {
    transform: scale(1.1);
}

.product .product-item .product-item-inner .product-item-inner-item .product-details {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.product .product-item .product-item-inner .product-item-inner-item .product-details a i {
    width: 50px; 
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner .product-item-inner-item .product-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item:hover .product-item-inner .product-details {
    opacity: 1;
}

.product .tab-class .nav .nav-item a.active {
    background: var(--bs-primary) !important;
}

.product .tab-class .nav .nav-item a.active span {
    color: var(--bs-white) !important;
}
/*** Product End ***/


/*** ProductList Categories Start ***/
/* =========================
   Product List Carousel 
   ========================= */
.productList .productList-carousel {
    height: auto !important;
    padding-bottom: 40px;
}

/* Product Items */
.productList .productList-carousel .productImg-carousel.productList-item .productImg-item {
    position: relative;

    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Product Image */
.products-mini-img {
    position: relative;
    overflow: hidden;
}



.productImg-item:hover .products-mini-img img {
    transform: scale(1.08);
}

/* Hover Eye Icon */
.products-mini-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productImg-item:hover .products-mini-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Product Content */
.products-mini-content a.d-block.mb-2 {
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
}

.products-mini-content .h4 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.products-mini-content .h4:hover {
    color: var(--bs-primary);
}

.products-mini-content del {
    color: #999;
    font-size: 15px;
}

.products-mini-content span.text-primary {
    font-weight: 700;
    font-size: 17px;
}


/* Add To Cart Section */
.products-mini-add {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

.products-mini-add .btn {
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-mini-add .btn:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
}
.productlist-container {
  width: 100%;      /* full width ya fixed max-width set kar sakte ho */
  overflow: hidden; /* sirf andar ka content slide hoga */
  position: relative;
}


/* Action Buttons */
.btn-sm-square {
    width: 38px;
    height: 38px;
    font-size: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-sm-square:hover {
    background: var(--bs-primary);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =========================
   Owl Carousel Arrows
   ========================= */
.productList .productList-carousel .owl-nav .owl-prev,
.productList .productList-carousel .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 35px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.productList .productList-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .owl-nav .owl-prev { left: 0; }
.productList .productList-carousel .owl-nav .owl-next { right: 0; }

/* Inner Carousel Arrows (hover) */
.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    padding: 5px 10px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
    opacity: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev { left: 0; }
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next { right: 0; }

.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-next {
    opacity: 1;
}


/*** ProductList Categories End ***/



/*** bestseller Products Start ***/
.products .products-mini .products-mini-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.products .products-mini .products-mini-item .products-mini-img {
 position: relative;
 overflow: hidden;
}

.products .products-mini .products-mini-item .products-mini-img img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img img {
    border-bottom-left-radius: 0 !important;
    transform: scale(1.3);
}

.products .products-mini .products-mini-item .products-mini-img .products-mini-icon {
    position: absolute;
    width: 50px; 
    height: 50px; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon {
    opacity: 1;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon:hover {
    background: var(--bs-secondary) !important;
}

.products .products-mini .products-mini-item .products-mini-add {
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bs-white);
    transition: 0.5s;
    z-index: 9;
    opacity: 0;
}

.products .products-mini .products-mini-item:hover .products-mini-add {
    opacity: 1;
    margin-bottom: -75px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** bestseller Products End ***/

/*** Pagination Start ***/








.related-product .related-carousel .related-item {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 125px;
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 99;
}

.related-product .related-carousel .related-item:hover .related-item-add {
    background: var(--bs-white);
    margin-bottom: -125px;
    opacity: 1;
}

.related-product .related-carousel .related-item:hover .related-item-inner {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new,
.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    position: absolute;
    width: 60px; 
    height: 60px;
    border-radius: 60px; 
    top: 20px; 
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center; 
    z-index: 5;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner img {
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner img {
    transform: scale(1.1);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details a i {
    width: 50px; 
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-item-inner-item .related-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-details {
    opacity: 1;
}


.related-product .owl-nav .owl-prev,
.related-product .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 40px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .owl-nav .owl-prev {
    left: 0;
}

.related-product .owl-nav .owl-next {
    right: 0;
}

.related-product .owl-nav .owl-prev:hover,
.related-product .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
}
/*** Single Products End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #5baaef !important;
}
/*** copyright end ***/
/* Parent should be relative for absolute Add To Cart */
.productImg-item {
    position: relative;
    overflow: hidden; /* ensures Add To Cart doesn't go outside */
}

.productImg-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.productImg-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Image zoom */
.products-mini-img {
    width: 100%;
    height: 220px; /* apni requirement ke hisaab se adjust karo */
    overflow: hidden;
    position: relative;
}

.products-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* image crop karke container me fit ho jayega */
    transition: transform 0.4s ease;
}

/* optional hover zoom effect */
.products-mini-img:hover img {
    transform: scale(1.1);
}


.productImg-item:hover .products-mini-img img {
    transform: scale(1.08);
}

/* Eye icon hover */
.products-mini-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.productImg-item:hover .products-mini-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.productImg-item {
  position: relative; /* Important for absolute children */
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.products-mini-add {
  position: absolute;
  bottom: 0;            /* start hidden below content */
  left: 0;
  width: 100%;
  padding: 12px 15px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-radius: 0 0 12px 12px;

  transform: translateY(100%); /* hide below */
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.productImg-item:hover .products-mini-add {
  transform: translateY(0); /* slide up */
  opacity: 1;
}

/* Optional: image zoom on hover */
.productImg-item:hover img {
  transform: scale(1.08);
  transition: transform 0.4s ease;
}
.productImg-item {
    display: flex;
    flex-direction: column; /* image upar, content niche */
    justify-content: space-between; /* content aur add-to-cart evenly distribute */
    height: 100%; /* carousel container ke andar full height */
    min-height: 420px; /* adjust according to your design */
}

.products-mini-content {
    flex-grow: 1; /* content area automatically expand kare equal height cards ke liye */
}

/* Optional: image fixed height */
.products-mini-img {
    height: 220px; /* same for all cards */
    overflow: hidden;
}

.products-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.productlist-container {
    position: relative; /* arrows ke liye reference */
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff; /* arrow button color */
    color: #da1b1b;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    z-index: 100;
}

.owl-nav .owl-prev {
    left: -25px; /* left arrow position */
}

.owl-nav .owl-next {
    right: -25px; /* right arrow position */
}

.owl-nav button:hover {
    background: #0056b3;
}

.owl-prev::before,
.owl-next::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 18px;
}

.owl-prev::before {
    content: "\f053"; /* left arrow */
}

.owl-next::before {
    content: "\f054"; /* right arrow */
}
/* Arrows ko center vertically laane ke liye */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none; /* container click disable */
}

.owl-carousel .owl-nav button,
.owl-carousel .owl-nav div {
    pointer-events: all; /* buttons clickable rahe */
    background: #007bff;
    color: #fff !important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.owl-carousel .owl-nav button:hover,
.owl-carousel .owl-nav div:hover {
    background: #0056b3;
}
h2 {
  font-weight: 700;
  color: #f28b00;
  font-family:  "Roboto", sans-serif;
}

ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.carousel-inner img {
  max-height: 400px;
  object-fit: contain;
}
.carousel-item {
  border-radius: 15px;
  overflow: hidden; /* corner crop karega */
}

.carousel-item img {
  border-radius: 15px;   /* extra safety */
  display: block;
  width: 100%;
  height: auto;
}
.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.thumb-img:hover {
  border-color: #007bff;
  transform: scale(1.05);
}
h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 2rem;
  color: #222;
}

h5 {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: #007bff;
}

p, li {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
.product-features {
  border-left: 5px solid #007bff; /* blue accent */
}

.product-features h3 {
  font-weight: 700;
  font-size: 22px;
}

.feature-list div {
  background: #fff;
  border-radius: 8px;
  padding: 12px 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
/* Carousel ke andar images ke liye */
#productCarousel .carousel-inner img {
  transition: transform 0.6s ease; /* thoda slow aur smooth */
  transform-origin: center center; /* zoom hamesha center se hoga */
  cursor: zoom-in;
}

#productCarousel .carousel-inner img:hover {
  transform: scale(1.15); /* zoom size */
}
.feature-card {
  background: #fff;
  border: 1px solid #5baaef; /* light blue border */
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* all content top aligned */
  height: 100%; /* equal height */
}
.dropdown .dropdown-menu a:hover{
    background: #007bff;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.feature-card i {
  transition: transform 0.3s;
}
.feature-card:hover i {
  transform: scale(1.2) rotate(10deg);
}
.app-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.key-heading{
    font-size: 1.85rem;
}
.img-stack {
  position: relative;
  height: 450px;
}
.about-img {
  position: absolute;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transition: transform 0.5s, box-shadow 0.5s;
}
.img1 { top: 0; left: 0; transform: rotate(-5deg);}
.img2 { top: 50px; left: 120px; transform: rotate(5deg);}
.img3 { top: 120px; left: 40px; transform: rotate(-3deg);}
.img4 { top: 200px; left: 180px; transform: rotate(3deg);}
.about-img:hover {
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.7);
  z-index: 10;
}
.about{
    font-size: 1.85rem !important;
}

/* Industrial Button */
.btn-industrial {
  background: linear-gradient(125deg, #00c6ff, #44caff);
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 12px 35px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.btn-industrial:hover {
  transform: translateY(-5px) scale(1.05);
  color: #0000008e;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.863);
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .img-stack { height: 350px; }
  .about-img { width: 150px; }
}
@media (max-width: 576px) {
  .img-stack { height: 300px; }
  .about-img { width: 120px; position: relative !important; top: 0 !important; left: 0 !important; transform: rotate(0deg); margin: 10px; }
}
/* 🎨 Brand Theme Colors */
:root {
  --primary-dark: #2e58a6;   /* Dark Blue */
  --primary: #2c92ea;        /* Medium Blue */
  --primary-light: #5baaef;  /* Light Blue */
  --black: #000000;          /* Black */
  --white: #ffffff;          /* White */
}

/* Base */
body {
  background-color: var(--white);
  color: var(--black);
  font-family: 'Segoe UI', sans-serif;
}

/* Text */
.text-primary-dark { color: var(--primary-dark) !important; }
.text-primary { color: var(--primary) !important; }
.text-primary-light { color: var(--primary-light) !important; }
.text-black { color: var(--black) !important; }
.text-white { color: var(--white) !important; }

/* Backgrounds */
.bg-primary-dark { background-color: var(--primary-dark) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-black { background-color: var(--black) !important; }
.bg-white { background-color: var(--white) !important; }

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border: none;
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Cards (Features / Applications) */
.feature-card, .app-card {
  background: var(--white);
  border: 1px solid var(--primary-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover, .app-card:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
}
.footer a {
  color: var(--primary-light);
  text-decoration: none;
}
.footer a:hover {
  color: var(--primary);
}

.valve-carousel img {
  height: 450px;       /* apni marzi se set karo jaise 350px, 400px */
  object-fit: cover;   /* image crop hoke bhi center me rahegi */
}

.carousel-caption {
  padding: 40px;       /* thoda kam padding taki content bhi compact lage */
}

.valve-carousel img {
  height: 550px;       /* apni marzi se set karo jaise 350px, 400px */
  object-fit: cover;   /* image crop hoke bhi center me rahegi */
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50px; /* ya padding jo aapne diya */
    transform: translateY(-50%);
    z-index: 2; /* overlay ke upar */
}


/* Carousel Slide Overlay */
/* Current overlay might be dark, so we make it brighter or semi-transparent */
.valve-carousel h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.valve-carousel h4 {
    font-size: 1.2rem;
    color: #f28b00; /* consistent highlight */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.valve-carousel p {
    font-size: 1rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(117, 117, 117, 0.10);
}

.valve-carousel .btn {
    font-size: 1rem;
    font-weight: 600;
}
.valve-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* center perfectly */
    z-index: 2; /* above overlay */
    color: #fff;
    max-width: 900px;
    width: 90%;
    padding: 20px;
    text-align: left; /* for desktop */
}
.valve-carousel .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15); /* slightly brighter */
    z-index: 1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* 40% black */
    z-index: 1; /* text ke neeche */
}



.map-responsive {
    position: relative;
    overflow: hidden;
}
.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.products-mini-img {
  overflow: hidden;
}

.products-mini-img img {
  transition: transform 0.3s ease;
}

.products-mini-img:hover img {
  transform: scale(1.05); /* subtle zoom on hover */
}

.products-mini-content {
  min-height: 100px; /* ensures name + description aligned */
  background-color: #fff;
  padding: 15px;
}
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.3); /* light blue overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .overlay {
  opacity: 1;
}

.about-image{
    height: 60vh;
    width: 100%;
}

.custom-card {
  position: relative;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

/* FULL animated border (hidden by default) */
.custom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 4px;
  background: linear-gradient(90deg, #2e58a6, #4a90e2, #2e58a6, #4a90e2, #2e58a6);
  background-size: 200% 200%;
  pointer-events: none;
  z-index: 2;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 220ms linear;
}

/* TWO CORNERS IN NORMAL STATE */
.custom-card .corner {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 4px solid;
  border-color: #2e58a6 #2e58a6 transparent transparent; /* top-left style */
  border-radius: 6px;
  transform: rotate(270deg); /* flips top-left style to bottom-right */
top: 0;
  left: 0;
  z-index: 2;
}

.custom-card .corner.bottom-right {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  transform: rotate(90deg); /* flips top-left style to bottom-right */
}

/* Hover effect */
.custom-card:hover::before {
  opacity: 1;
  animation: snake-border 2s linear infinite forwards;
}

.custom-card:hover .corner {
  opacity: 0; /* hide small corners when hover */
}

@keyframes snake-border {
  0%   { background-position: 0% 0%; }       
  25%  { background-position: 100% 0%; }    
  50%  { background-position: 100% 100%; } 
  75%  { background-position: 0% 100%; }   
  100% { background-position: 0% 0%; }      
}
/* ================= Desktop: General adjustments ================= */
.nav-bar, .topbar, .topbar2 {
    overflow: visible !important;  /* dropdown cut nahi hoga */
}

.nav-bar .navbar-toggler {
    border-radius: 5px !important; 
    box-shadow: none !important;
}

/* Custom dropdown */
.dropdown-menu-custom {
    width: 420px;        
    max-width: 95vw;     
    padding: 10px 15px;
}
.dropdown-menu-custom .row { margin: 0; }
.dropdown-menu-custom .col-6 { padding: 0 5px; }
.dropdown-menu-custom .dropdown-item { padding: 5px 10px; }

/* Topbar height fix + transition for hide on scroll */
.topbar {
    height: 45px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Only hide topbar, logo remains */
body.scrolled .topbar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Logo adjustments */
.logo-left {
    z-index: 1100;
}
.navbar-brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1100; 
}


/* Navbar sticky adjustments */
.navbar.sticky-top {
    z-index: 1030;
}



/* navbar start */
            
        :root {
            --primary-blue: #007bff;
            --dark-navy: #1a1a2e;
            --light-bg: #f8f9fa;
            --accent-blue: #0d6efd;
            --text-white: #ffffff;
            --text-light: #e9ecef;
            --text-gray: #6c757d;
            --border-light: rgba(255, 255, 255, 0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        
        /* Header Styles */
        .site-header {
            background: linear-gradient(135deg, var(--dark-navy) 0%, #16213e 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            flex-wrap: wrap;
        }
        
        /* Brand/Logo Section */
        .brand-section {
            flex: 0 0 25%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            background-color: #020b14;
            border-right: 1px solid var(--border-light);
        }
        
        .brand-logo {
            max-height: 100px;
            transition: var(--transition);
        }
        
        .brand-logo:hover {
            transform: scale(1.05);
        }
        
        /* Right Content Section */
        .header-right {
            flex: 0 0 75%;
            display: flex;
            flex-direction: column;
        }
        
        /* Info Bar */
        .info-bar {
            background: rgba(0, 0, 0, 0.2);
            padding: 8px 24px;
            border-bottom: 1px solid var(--border-light);
            display: none;
            justify-content: flex-end;
            align-items: center;
        }
        
        .contact-info {
            color: var(--text-light);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            color: var(--primary-blue);
            width: 20px;
            text-align: center;
            margin-right: 8px;
        }
        
        .contact-info + .contact-info {
            margin-left: 30px;
        }
        
        /* Navigation Bar */
        .navigation-bar {
            padding: 8px 24px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Desktop Navigation */
        .desktop-nav {
            display: none;
            align-items: center;
            width: 100%;
            justify-content: space-between;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            gap: 16px;
        }
        
        .nav-item-link {
            color: var(--text-light);
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
            text-decoration: none;
            display: block;
        }
        
        .nav-item-link:hover, 
        .nav-item-link.active {
            color: var(--text-white);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .nav-item-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background-color: var(--primary-blue);
        }
        
        /* Dropdown Styles */
        .nav-item.dropdown {
            position: relative;
        }
        
        .dropdown-toggle {
            cursor: pointer;
        }
        
        .dropdown-toggle::after {
            display: inline-block;
            margin-left: 8px;
            vertical-align: middle;
            content: "";
            border-top: 0.3em solid;
            border-right: 0.3em solid transparent;
            border-bottom: 0;
            border-left: 0.3em solid transparent;
        }
        
        .products-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-light);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            padding: 16px;
            min-width: 300px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1001;
        }
        
        .nav-item.dropdown:hover .products-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .menu-grid {
            display: flex;
            gap: 16px;
        }
        
        .menu-column {
            flex: 1;
        }
        
        .menu-item {
            color: var(--text-light);
            padding: 8px 16px;
            border-radius: 4px;
            transition: var(--transition);
            text-decoration: none;
            display: block;
        }
        
        .menu-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-white);
        }
        
        /* Call Button */
        .call-button {
            background: rgba(13, 110, 253, 0.1);
            border: 1px solid rgba(13, 110, 253, 0.3);
            color: var(--primary-blue);
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
            padding: 8px 16px;
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .call-button:hover {
            background: rgba(13, 110, 253, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
        }
        
        .call-button i {
            margin-right: 8px;
        }
        
        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: block;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Mobile Navigation Panel */
        .mobile-nav-panel {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.98);
            z-index: 2000;
            display: none;
            overflow-y: auto;
            padding: 32px;
        }
        
        .mobile-nav-panel.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        .mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-light);
        }
        
        .mobile-logo {
            max-height: 50px;
        }
        
        .close-menu {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-nav-list {
            list-style: none;
        }
        
        .mobile-nav-option {
            margin-bottom: 8px;
        }
        
        .mobile-nav-link {
            display: block;
            color: var(--text-light);
            padding: 12px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .mobile-nav-link.active,
        .mobile-nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-white);
        }
        
        .mobile-submenu {
            margin-left: 16px;
            margin-top: 8px;
            border-left: 2px solid var(--primary-blue);
            padding-left: 16px;
            display: none;
        }
        
        .mobile-submenu.show {
            display: block;
        }
        
        .mobile-submenu-link {
            display: block;
            color: var(--text-gray);
            padding: 8px 0;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .mobile-submenu-link:hover {
            color: var(--text-light);
        }
        
        .mobile-contact-section {
            margin-top: 32px;
            padding-top: 16px;
            border-top: 1px solid var(--border-light);
        }
        
        .mobile-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            color: var(--text-light);
        }
        
        .mobile-contact-item i {
            color: var(--primary-blue);
            width: 24px;
            margin-right: 12px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Responsive adjustments */
        @media (min-width: 992px) {
            .info-bar {
                display: flex;
            }
            
            .desktop-nav {
                display: flex;
            }
            
            .mobile-toggle {
                display: none;
            }
        }
        
        @media (max-width: 991px) {
            .brand-section {
                flex: 0 0 100%;
                border-right: none;
                border-bottom: 1px solid var(--border-light);
            }
            
            .header-right {
                flex: 0 0 100%;
            }
        }
        
        @media (max-width: 767px) {
            .brand-logo {
                max-height: 50px;
            }
            
            .call-button {
                font-size: 0.85rem;
                padding: 6px 12px;
            }
        }