.elementor-10 .elementor-element.elementor-element-bf02b8a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}.elementor-10 .elementor-element.elementor-element-98bed5e{width:100%;max-width:100%;}.elementor-10 .elementor-element.elementor-element-98bed5e > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:1024px){.elementor-10 .elementor-element.elementor-element-98bed5e > .elementor-widget-container{margin:-11px -11px -11px -11px;}}@media(max-width:767px){.elementor-10 .elementor-element.elementor-element-98bed5e > .elementor-widget-container{margin:-11px -11px -11px -11px;}}/* Start custom CSS for html, class: .elementor-element-98bed5e *//* 🌐 RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
img {
  max-width: 100%;
  height: auto;
}

/* 🔴 TOP BAR */
.custom-top-bar {
  background: #ed1d24;
  padding: 6px 80px;
  display: flex;
  justify-content: flex-end;
  color: white;
  font-size: 13px;
}
.top-menu {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.top-menu a,
.top-menu span {
  color: white;
}

/* 🔻 HEADER */
.custom-header {
  background: #ed1d24;
  position: sticky;
  top: 0;
  z-index: 999;
}
.custom-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 19px;
}
.logo img {
  height: 120px;
}
.gst-box {
  background: black;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
}
.header-right {
  display: flex;
  gap: 42px;
  align-items: center;
}
.contact-box {
  background: #ed1d24;
  padding: 10px 14px;
  color: white;
  border-radius: 6px;
  display: flex;
  gap: 10px;
}
.hamburger {
  font-size: 30px;
  font-weight: 600;
  color: red;
  cursor: pointer;
  display: none;
}

/* 🧭 MAIN MENU */
.main-menu {
  background: #fff;
}
.main-menu ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  gap: 25px;
  padding: 1px 40px;
}
.main-menu li {
  position: relative;
}
.main-menu li a {
  color: black;
  display: block;
  font-size: 15px;
  font-weight: 500;
}

/* 📂 DESKTOP DROPDOWN */
.has-submenu:hover .dropdown-grid {
  display: grid;
}
.dropdown-grid {
  display: none;
  position: absolute;
  background: white;
  grid-template-columns: repeat(4, 1fr); /* Default 4 Columns */
  gap: 12px;
  padding: 20px 25px;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 600px;
  max-width: 900px;
  white-space: nowrap;
  z-index: 1000;
}
.dropdown-grid a {
  padding: 8px 10px;
  background: #f9f9f9;
  border-radius: 4px;
  color: black;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}
.dropdown-grid a:hover {
  background: #ed1d24;
  color: white;
}

/* ✅ SERVICES: Only 2-column dropdown */
.has-submenu.services:hover .dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 400px;
  left: 0;
}

/* ✅ CITIES WE SERVE: Center-aligned dropdown */
.has-submenu.cities {
  position: relative;
}
.has-submenu.cities .dropdown-grid {
  left: 50%;
  transform: translateX(-50%);
}

/* 📱 MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100%;
  background: #fff;
  padding: 20px 15px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}
.mobile-header {
  display: flex;
  justify-content: flex-end;
}
.close-btn {
  font-size: 19px;
  cursor: pointer;
  color: red;
  font-weight: bold;
}
.blink {
  animation: blinker 1s infinite;
}
@keyframes blinker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.mobile-menu ul {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}
.mobile-menu li {
  margin-bottom: 12px;
}
.mobile-menu li a,
.expandable span {
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  padding: 10px 0;
  display: block;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ✅ MOBILE SUBMENU GRID */
.mobile-dropdown-grid {
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 5px;
  padding-left: 1px;
}
.mobile-dropdown-grid a {
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  display: block;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-dropdown-grid a:hover {
  background: #ed1d24;
  color: #fff;
}
.mobile-dropdown-grid.open {
  display: grid;
}

/* 📱 RESPONSIVE */
@media (max-width: 1024px) {
  .main-menu,
  .gst-box,
  .custom-top-bar {
    display: none;
  }
  .hamburger {
    display: block;
  }
}/* End custom CSS */