/* Header Styling */
/* Sticky Contact Button  */

.sticky-phone {
  position: fixed;
  top: 45%;
  left: 0;
  background-image: linear-gradient(
    to right,
    hsl(273, 54%, 48%),
    hsl(234, 55%, 41%)
  );
  color: white;
  padding: 15px 15px;
  border-radius: 0px 0px 10px 10px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-weight: bold;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.sticky-phone.show {
  opacity: 1;
  visibility: visible;
}

/* Sticky Contact Button End */

/* Make full header sticky */

img.message-icon,
img.phone-icon,
.dropdown-icon {
  width: 20px;
  height: 20px;
}

img.white-arrow-icon,
img.purple-arrow-icon {
  width: 16px !important;
  height: 13.7px !important;
}

/* Animated topbar */
.topbar {
  overflow: hidden;
  max-height: 60px;
  /* adjust based on your design */
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease-in-out;
}

/* When scrolled down - hide topbar smoothly */
.custom-header.hide-topbar .topbar {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  padding: 0;
}

.header-home {
  background: transparent;
}

.header-inner {
  background-image: url(../images/header/Hero-bg.webp);
  background-size: cover;
}

header.custom-header.hide-topbar {
  padding: 5px 0px 0px 0px;
  background-image: url(../images/header/Hero-bg.webp);
  background-size: cover;
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 999;
}

.banner-btn button {
  position: relative;
}

.custom-header .container {
  overflow: visible;
}

.logo img {
  width: 59.5%;
}

.topbar {
  padding: 10px 0;
}

/* Navbar Links */
.nav-links li {
  margin: 0 9px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
  transition: color 0.3s;
  padding: 10px 12px;
  font-family: "Montserrat";
}

/* .nav-links a:hover {
  color: #FFD700;
} */

/* Hamburger Button (Hidden by Default) */
.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
  /* Hide on desktop */
}

/* Close Button (Hidden by Default) */
.close-menu {
  font-size: 30px;
  color: white;
  cursor: pointer;
  text-align: right;
  margin-bottom: 10px;
  padding-right: 20px;
  display: none;
  /* Hide by default */
}

/* Dropdown Styling */

/* Basic Dropdown CSS */
.dropdown {
  position: relative;
}

/* Show on Hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-menu {
  background: white;
  border: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  min-width: 100%;
  width: auto;
  padding: 0px;
  border-radius: 4px;
  overflow: hidden;
}

ul.dropdown-menu li {
  margin: 0 !important;
  text-align: left;
}

.dropdown-menu a {
  color: black;
  padding: 10px 20px;
  font-size: 13px;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a:hover {
  background: #f9f3ff;
  color: black;
}

.nav-links li a.active {
  background-color: #f9f3ff;
  /* ✅ Change as per your theme */
  color: black;
}

.live-chat,
.contact {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

.live-chat i,
.contact i {
  margin-right: 5px;
  color: white;
}

.hire-us {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 12px 23px 12px 23px;
  border-radius: 10px 10px 10px 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 16px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hire-us img {
  margin-left: 5px;
}

.snake-button:before {
  content: "";
}

.snake-button:hover::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: -1px;
  bottom: 0px;
  border: 1px solid #ffffff;
  animation: clippath 4s infinite linear;
  border-radius: 10px;
  background: unset;
  z-index: 999;
}

@keyframes clippath {
  0%,
  100% {
    clip-path: inset(0 0 98% 0);
  }

  25% {
    clip-path: inset(0 98% 0 0);
  }

  50% {
    clip-path: inset(98% 0 0 0);
  }

  75% {
    clip-path: inset(0 0 0 98%);
  }
}

.navigation-bar {
  padding: 15px 0px 25px 0px;
  border-bottom: 1px solid #ffffff99;
  position: relative;
}

.hire-us i {
  margin-left: 5px;
}

.hire-us:hover {
  background-image: linear-gradient(266deg, #173b9c 0%, #8639be 100%);
  color: white;
  border-color: #02010100;
}

/* Sticky Header */

/* Sticky Header End*/

/* MOBILE VIEW (CSS Fix) */
@media all and (max-width: 992px) {
  /* Show Hamburger */
  .hamburger {
    display: block;
  }

  /* Hide Default Navigation */
  .nav-menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 17%;
    right: 0;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    background: white;
    z-index: 999;
  }

  /* Show When Active */
  .nav-menu.active {
    display: block !important;
    transform: translateX(0);
  }

  /* Show Close Button When Menu is Active */
  .nav-menu.active .close-menu {
    display: block;
    position: absolute;
    top: -25px;
    right: 5%;
    font-size: 50px;
    color: black;
  }

  .nav-menu.active li a {
    font-size: 14px;
    color: black;
  }

  .nav-menu.active li {
    padding: 10px 0px;
    font-family: "Montserrat";
    text-align: left;
  }

  ul.dropdown-menu li {
    padding: 0 !important;
  }

  ul.dropdown-menu li a {
    font-size: 16px !important;
    padding: 13px 15px !important;
  }
}

@media all and (max-width: 500px) {
  .dropdown-menu {
    width: 100%;
  }

  ul.dropdown-menu li a {
    font-size: 14px !important;
    white-space: normal;
  }

  .row.d-flex.topbar {
    display: none !important;
  }

  .navigation-bar {
    padding: 15px 0px 20px 0px;
  }

  .header-inner,
  header.custom-header.hide-topbar {
    background-image: url(../images/header/Hero-bg.webp) !important;
    background-size: cover;
  }

  .nav-menu {
    top: 90%;
  }
}    

/* Home Banner  */
.hero-main-banner {
  padding: 225px 0px 60px 0px;
  background-image: url(../images/hero-img/hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: -160px;
}

.hero-main-banner h2 {
  color: #ffffff;
  font-family: "Work Sans", Sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 55px;
  text-transform: capitalize;
}

.hero-main-banner p {
  font-size: 16px;
  font-weight: 500;
  color: white;
  width: 80%;
}

.hero-main-banner button {
  background-image: linear-gradient(
    to right,
    hsl(273, 54%, 48%),
    hsl(234, 55%, 41%)
  ) !important;
  transition: opacity 0.5s linear, border-radius 0.5s ease !important;
  border-radius: 10px !important;
  color: white !important;
  padding: 13px 16px 13px 16px !important;
  gap: 0 !important;
}

.hero-main-banner .col.banner-btn {
  padding: 0;
}

.hero-main-banner button img {
  margin-left: 5px;
}

.hero-main-banner .banner-img img {
  width: 100%;
  transform: scale(1.1);
  transform-origin: 160% 50%;
}

.hero-arrow {
  width: 100%;
  position: relative;
  left: 8%;
}

.brand-image-grid {
  margin-top: 30px !important;
}

/* Home Banner End */