.elementor-1064 .elementor-element.elementor-element-b415371{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-1064 .elementor-element.elementor-element-b415371{--content-width:1900px;}}/* Start custom CSS for html, class: .elementor-element-9406447 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.site-header {
  width: 100%;
}

/* Top Color Line */
.top-color-line {
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff0066, #ffcc00, #33cc33, #00ccff, #6600ff);
}

/* Top Header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 220px;
  background: #fff;

}

.logo img {
  width: 100px;
  height: auto;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 25px;
  

}
.header-info .address{
 font-size: 18px;
  font-weight: 400;
   color: #151515;
   line-height: 1.5;
   font-family: "montserrat", sans-serif;

}

.header-info .divider {
  width: 1px;
  height: 35px;
  background: #aaa;
}

.header-info .contact {
  line-height: 1.4;
  text-align: left;
  color: #151515;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
 
  font-family: "montserrat", sans-serif;
 

  
}

/* Navigation Bar */
.nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2d2d2d;
  color:#ffffff;
  padding: 12px 40px;
  border-radius: 40px;
  max-width: 1400px;
  margin: 10px auto 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;
  gap: 195px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 12px;
  transition: 0.3s;
  text-transform: uppercase;
  text-wrap: nowrap
}

.navbar ul li a.active,
.navbar ul li a:hover {
  color: #fee827;
  border-radius: 4px;
}


/* Search */
.search-icon {
  display: flex;
  align-items: center;
  position: relative;
}

.search-icon button {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.search-box {
  position: absolute;
  right: 45px;
  width: 0;
  opacity: 0;
  padding: 6px 10px;
  transition: all 0.3s ease;
  font-size: 14px;
  outline: none;
  color: #000;
}

.search-icon:hover .search-box {
  width: 170px;
  opacity: 1;
  border-radius: 50px;
}

/* Sticky Nav */
.nav-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  margin: 0;
  
  background: #111;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  justify-content: center;
  gap: 190px;
  align-items: center;
}

.content-spacer {
  display: none;
  height: 70px;
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
  font-weight: normal;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0; /* JS se dynamically set hoga */
  right: -100%;
  width: 260px;
  height: 100vh; /* JS se dynamically adjust hoga */
  background: #ffffff;
  padding: 20px 15px;
  transition: right 0.3s ease-in-out;
  z-index: 10000;
  overflow-y: auto;
  border: 1px solid #f7f7f7;
    box-shadow: 0 0 5px 0 rgba(1, 3, 4, 0.19);
}



.sidebar.active {
  right: 0;

}

.sidebar .close-btn {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  text-align: right;
  margin-bottom: 20px;
}

.sidebar-search {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.sidebar-search input.sidebar-search-box {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 30px;
  border: 1px solid black;
  outline: none;
  max-width: 100%;
}

.sidebar-search button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin: 15px 0;
  
}

.sidebar ul li a {
  color: #151515;
  padding: 9px 120px 9px 12px;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: "Rubik", sans-serif;
  text-decoration: none;
  transition: color 0.3s;
  text-wrap:nowrap;
}
.sidebar ul li a:focus{
      background-color: #fee827;
      color:#ffffff;
}


/* Responsive */
@media screen and (max-width: 1024px) {
  .top-header {
    padding: 15px 20px;
  }
  .nav-wrapper {
    padding: 12px 20px;
  }
}

@media screen and (max-width: 992px) {
  .header-info {
    display: none;
  }
  .nav-wrapper {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .top-header {
    justify-content: space-between;
    padding: 10px 20px;
  }
   .nav-wrapper,
  .nav-wrapper.sticky {
    display: none !important;
  }
 
}

@media screen and (max-width: 768px) {
  .top-header {
    padding: 8px 15px;
  }
  .logo img {
    width: 85px;
  }
  .hamburger {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .top-header {
    padding: 6px 12px;
  }
  .logo img {
    width: 70px;
  }
  .hamburger {
    font-size: 20px;
  }
  .sidebar {
    width: 90%;
  }
  .sidebar-search input.sidebar-search-box {
    font-size: 13px;
    padding: 6px 10px;
  }
  .sidebar-search button {
    font-size: 16px;
  }
  .sidebar ul li a {
    font-size: 14px;
  }
}/* End custom CSS */