.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
  border-bottom-color: #e5e5e5;
}
.header-section.sticky-header {
  background: linear-gradient(
    153.06deg,
    #f58634eb 11.29%,
    #1769ffe0 87.63%
  ) !important;
}
.navbar-menu {
  display: none;
  list-style: none;
  align-items: center;
  gap: 10px;
}

@media (min-width: 1024px) {
  .navbar-menu {
    display: flex;
  }
}

.navbar-item {
  position: relative;
}

.navbar-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 15px;
  position: relative;
}

.navbar-link:hover {
  color: #f58634;
}
.navbar-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background: rgba(245, 134, 52, 1);
  transition: transform 0.25s ease;
  border-radius: 1px;
}

.navbar-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.chevron {
  transition: transform 0.2s ease;
}

.navbar-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 21px);
  left: 0;
  min-width: 270px;
  background: #2b2b2b;
  /* border: 1px solid #e5e5e5; */
  border-radius: 0 0 12px 12px;
  padding: 8px;
  backdrop-filter: blur(5px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.menu-icon {
  flex-shrink: 0;
  opacity: 0.8;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: rgba(245, 134, 52, 1);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgb(255 255 255 / 9%);
  color: #ffffff;
  padding-left: 20px;
}

.dropdown-menu a:hover .menu-icon {
  opacity: 1;
  color: rgba(245, 134, 52, 1);
}

.dropdown-menu a:hover::before {
  height: 60%;
}

/* Mega Menu */
.megamenu-container {
  position: absolute;
  top: calc(100% + 21px);
  left: 0%;
  transform: translateX(-50%) scale(0.97);
  width: 70vw;
  max-width: 1024px;
  background: #2b2b2b;
  backdrop-filter: blur(5px);
  border-radius: 0px 0px 16px 16px;
  padding: 20px;
  box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.megamenu-container.technology-megamenu {
  left: -100%;
  width: 60vw;
}
.megamenu:hover .megamenu-container {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.megamenu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.megamenu-container.industries .megamenu-content {
  grid-template-columns: repeat(2, 1fr);
}

.megamenu-column {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.megamenu-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(245, 134, 52, 1);
  margin-bottom: 4px;
  padding: 0px 0 10px;
  border-bottom: 1px solid #ffffff9c;
}
.title-icon {
  flex-shrink: 0;
  color: rgba(245, 134, 52, 1);
  opacity: 0.7;
}

.megamenu-column a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.megamenu-column a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: rgba(245, 134, 52, 1);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}

.megamenu-column a:hover {
  background: rgb(255 255 255 / 9%);
  color: #ffffff;
  padding-left: 20px;
  transform: translateX(2px);
}

.megamenu-column a:hover::before {
  height: 60%;
}
.megamenu-container.industry-container {
  width: 60vw;
  left: 10%;
}
.megamenu-container.solution-container {
  padding: 10px 20px;
  left: 50%;
}
/* Navbar Actions */
.navbar-actions {
  display: none;
}

@media (min-width: 1024px) {
  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.btn-primary {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(245, 134, 52, 1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.2);
}

.btn-primary:hover {
  background: rgba(245, 134, 52, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(255, 87, 34, 0.2);
}

@media (max-width: 1022px) {
  .header-btn.demo-btn.position-relative {
    display: none;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.hamburger {
  width: 24px;
  height: 2px;
  background: #f58634;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #f58634;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* .mobile-toggle.active .hamburger {
  background: transparent;
}

.mobile-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
} */

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 100vh;
  max-width: 400px;
  background: #2b2b2b;
  border-left: 1px solid #e5e5e5;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}
.mobile-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffffff73;
  font-size: 14px;
  line-height: 1;
  padding: 8px 8px;
  cursor: pointer;
  z-index: 9999;
  color: #ffffff;
  border-radius: 5px;
}

.mobile-close-btn:hover {
  background: #f0f0f0;
}
.mobile-menu.active {
  right: 0;
}

.mobile-menu::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.15);
}

.mobile-menu-content {
  padding: 50px 15px;
}
.mobile-menu-item {
  margin-bottom: 8px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
}
button:focus:not(:focus-visible) {
  outline: 0;
  border-bottom: none;
  border-radius: 0;
}

.mobile-menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: rgba(245, 134, 52, 1);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}

.mobile-menu-link:hover {
  background: rgba(255, 87, 34, 0.04);
  color: #ffffff;
}

.mobile-menu-link:hover::before {
  height: 60%;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu-item.active .mobile-submenu {
  max-height: fit-content;
}
.mobile-menu-item.active .chevron {
  transform: rotate(180deg);
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  margin-left: 16px;
  margin: 10px 10px 0 12px;
  font-size: 16px;
  color: #dddddd;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.mobile-submenu a::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: rgba(245, 134, 52, 1);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-submenu a:hover {
  background: rgb(255 255 255 / 7%);
  color: #ffffff;
  padding-left: 20px;
}
.mobile-submenu a:hover::before {
  opacity: 1;
}

.mobile-category {
  padding: 12px 0;
}

.mobile-category-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  padding: 8px 16px;
  background: rgb(255 255 255 / 12%);
  border-radius: 6px;
  margin-bottom: 4px;
}

.mobile-category-title .title-icon {
  flex-shrink: 0;
}

.mobile-menu-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.mobile-menu-cta .btn-primary {
  width: 100%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 1200px) {
  .navbar-link {
    gap: 0;
    padding: 15px 5px;
  }
 
}

@media only screen and (min-width: 421px) {
  .demo-btn {
    left: 20px;
  }
}

/* updated css */

a#show-popup {
  background: rgba(245, 134, 52, 1);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 0;
  transform: rotate(270deg);
}

.fixed-btn {
  position: fixed;
  z-index: 1111;
  top: 50%;
  right: 0;
}

.custom-cta-btn span {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: white;
}

.enquiry-button {
  position: relative;
}

.desc-contact:hover,
.desc-mail:hover,
a:hover {
  color: #d7d7d7;
}

.send-img {
  position: relative;
  z-index: 1111111111;
}

.location-wrapper {
  text-align: end;
}

.location-details a {
  color: #f58634;
  font-weight: 500;
}
/* 
.top-bar {
  border-bottom: 1px solid #ffffff26;
} */

.location-wrapper {
  text-align: end;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 50px;
  padding: 5px 0;
}

.location-details {
  font-size: 14px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

#header {
  padding: 0px;
  backdrop-filter: blur(10px);
  background: #cfcfcf1a;
}

/* .home-page-wrapper {
        margin-top: -25px;
    } */

.demo-btn {
  left: 0;
}

#menuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* translucent black overlay */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9;
  /* just below your mobile menu */
}

#menuOverlay.active {
  opacity: 1;
  pointer-events: auto;
}

#header div {
  font-family: var(--bs-font-sans) !important;
}

#header li {
  font-family: var(--bs-font-sans) !important;
}

span.sBtn-text {
  font-size: 16px;
}

.pl-0 {
  padding-left: 0 !important;
}

.home-toggle-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}

/* Toggle switch */
.home-toggle-field .switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.home-toggle-field .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider */
.home-toggle-field .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d5d5d5;
  transition: 0.4s;
  border-radius: 34px;
}

.home-toggle-field .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* When checked */
.home-toggle-field .switch input:checked + .slider {
  background: #007bff;
}

.home-toggle-field .switch input:checked + .slider:before {
  transform: translateX(24px);
}

/* Label text */
.home-toggle-field .toggle-label {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a3d;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-box label {
  font-size: 20px;
  font-weight: 500;
  color: rgba(5, 6, 37, 1);
}

.captcha-input {
  width: 48px !important;
  height: 31px;
  border-radius: 4px;
  text-align: center;
  padding: 3px !important;
  background: rgba(255, 255, 255, 1);
  border: 0.5px solid rgba(157, 157, 157, 1);
  font-size: 16px;
}
.popup-details-wrap {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.footer-social-icon a {
  color: rgba(181, 181, 181, 1);
  transition: all 0.3s;
}

.footer-social-icon a:hover {
  color: rgba(3, 79, 217, 1);
}

@media only screen and (min-width: 768px) {
  #country1 {
    font-family: "Twemoji Country Flags", serif !important;
  }
}

/* service popup css  */
.service_enquiry_pupop.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999;
}

.service_enquiry_pupop .popup-head {
  padding: 30px;
  background: linear-gradient(45deg, #021b79, #104397);
  color: white;
  border-radius: 15px 0 0;
}

.service_enquiry_pupop .popup-head h2 {
  font-size: 22px;
  font-weight: 600;
}

.service_enquiry_pupop .btn:focus {
  box-shadow: none !important;
}

.service_enquiry_pupop .pop-content {
  padding: 30px;
}

.service_enquiry_pupop .pop-form-group label {
  font-size: 13px;
  color: black;
  font-weight: 500;
}

.service_enquiry_pupop .pop-form-group input {
  border-bottom: 1px solid #999999;
  font-size: 13px;
  margin-bottom: 10px;
  padding: 0px;
  margin-left: 0;
}

.service_enquiry_pupop button.pop-form-btn {
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  background: linear-gradient(45deg, #021b79, #104397);
  display: block;
  margin-top: 15px;
  width: 100%;
}

.service_enquiry_pupop .popup-inner {
  max-width: 400px;
  width: 90%;
  position: absolute;
  bottom: 20px;
  right: 20px;
  -moz-transform: translate(-50%, -50%);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-radius: 3px;
  background: #fff;
  border-radius: 15px !important;
}

.service_enquiry_pupop .popup-close {
  width: 30px;
  height: 30px;
  padding-top: 4px;
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: ease 0.25s all;
  transform: translate(50%, -50%);
  border-radius: 1000px;
  background: rgba(0, 0, 0, 0.8);
  font-family: Arial, sans-serif;
  font-size: 20px;
  text-align: center;
  line-height: 100%;
  color: #fff;
}

.service_enquiry_pupop .popup-close:hover {
  background: rgba(0, 0, 0, 1);
  text-decoration: none;
  color: #fff;
}

/* mobile location */
.location-adress-wrapper {
  border-radius: 8px;
  background: rgba(255, 255, 255, 1);
  border: 0.5px solid #f58634;
  box-shadow: 0px 2px 12.5px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  margin: 20px 0 0 0;
}

.loaction-adress-wrap {
  margin-top: 20px;
}

.location-adress-wrapper h4 {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
}

.location-adress-wrapper p {
  font-size: 14px;
  margin-bottom: 0px;
  line-height: 17px;
}

.location-contact a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(5, 6, 37, 1);
  display: inline-block;
}

.mobile-location-footer {
  border-top: 1px solid rgba(234, 234, 234, 1);
  /* background: rgba(234, 234, 234, 1); */
  display: none;
}

.location-adress-wrapper h4::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 1px;
  bottom: -3px;
  left: 0;
  background: rgba(245, 134, 52, 1);
}

@media (max-width: 1200px) {
  .popup-form {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .popup-form-content {
    display: none;
  }
  .onload-page {
    width: 50%;
  }
  .map-location {
    display: none;
  }

  .popup-form {
    max-width: 100%;
    top: 0%;
    margin: 0;
  }

  .form-body {
    margin-top: 10px;

    padding: 30px;
  }

  .popup-details-wrap {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100vh;
  }
  .whatsapp-button {
    bottom: 5% !important;
  }
  a#show-popup {
    bottom: 30% !important;
  }
  .mobile-location-footer {
    display: block;
  }
}
@media (max-width: 767px) {
  .onload-page {
    width: 60%;
  }
}
@media (max-width: 576px) {
  .location-details {
    font-size: 8px;
  }
  .popup-form {
    padding: 0px;
  }
  .home_page_banner h1 {
    font-size: 2.5rem;
    line-height: 45px;
  }
  .onload-page {
    width: 90%;
  }
}
@media (max-width: 420px) {
  .onload-page {
    width: 100%;
  }
}

/* update nav */

#header {
  padding: 0px;
  backdrop-filter: blur(10px);
  background: #12121200;
  transition: all 0.2s;
}
.navbar-link {
  color: #000000;
}
.header-section.sticky-header {
  background: white !important;
  padding: 10px !important;
  border-bottom: 1px solid #d9d9d9;
}
.header-section.sticky-header .dropdown-menu {
  top: calc(100% + 30px);
}
.header-section.sticky-header .megamenu-container {
  position: absolute;
  top: calc(100% + 30px);
}
.header-section.sticky-header .navbar-link {
  color: #000000;
}
#header:hover,
.shape-black,
.sticky-header {
  background: #12121200;
}
.navbar-link {
  display: flex;
  align-items: center;

  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 15px;
  position: relative;
}
.header-section.sticky-header .top-bar {
  display: none;
}
@media (max-width:1200px){
  .navbar-link {
   
    padding: 0 8px;
   
}
}