@media(max-width:1024px){.elementor-2844 .elementor-element.elementor-element-54d07de > .elementor-widget-container{padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-54d07de *//* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body {
  font-family: 'Poppins', sans-serif;
  padding-top: 100px; /* Adjust based on header height */
}

/* Header */
.main-header {
  background: #fff;
  position: fixed !important;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid #d9d9d9;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0);
}

/* Container */
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

/* Logo */
.logo {
  height: clamp(28px, 5vw, 40px);
  width: 180px;
  margin-bottom: -10px;
}

/* Nav */
.nav-menu {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: clamp(5px, 2vw, 32px);
  list-style: none;
  flex-wrap: nowrap;
}

.nav-menu a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s ease;
  margin-bottom: -20px;
}

.nav-menu a:hover {
  color: black;
  text-decoration: none;
}

/* ISO Icon Desktop */
.iso-icon-desktop img {
  height: clamp(20px, 3vw, 28px);
  width: auto;
}

/* Contact Button */
.contact-btn {
  background: black;
  color: white;
  padding: clamp(8px, 1.5vw, 10px) clamp(16px, 3vw, 24px);
  border: 2px solid #f28500;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  font-size: clamp(14px, 1.2vw, 16px);
  transition: 0.3s ease;
}
.contact-btn:hover {
  background: #f28500;
}

/* Hamburger + ISO for Mobile */
.mobile-icons {
  display: none;
  align-items: center;
  gap: 12px;
}
.mobile-icons img {
  height: 28px;
  width: auto;
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle img {
  height: 26px;
  width: 26px;
}

.contact-button-wrapper {
  display: none;
}

/* Responsive: Mobile View Trigger at 855px */
@media (max-width: 855px) {
  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
    border-bottom: 1px solid #d9d9d9;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    gap: 20px;
    width: 100%;
  }

  .mobile-contact-btn {
    margin-top: 10px;
  }

  .contact-button-wrapper {
    display: none;
  }

  .mobile-icons {
    display: flex;
  }

  .iso-icon-desktop {
    display: none;
  }
}

/* Gradient Border Button */
@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gradient-border-wrapper {
  padding: 3px;
  border-radius: 5px;
  position: relative;
  width: fit-content;
  overflow: hidden;
}
.gradient-border-wrapper:hover {
  box-shadow: 0px 10px 20px -5px rgba(248, 159, 0, 0.6);
}

.button-container {
  padding: 10px;
  background: black;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.custom-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 5px 16px;
  padding-bottom: 20px;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  z-index: 1;
  position: relative;
}

.custom-btn:hover {
  color: white;
  outline: 0;
}

.rotating-gradient {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -145%;
  left: -45%;
  background: conic-gradient(from 0deg at 50% 50%, white 0deg, rgb(232, 149, 72) 360deg);
  animation: rotateGradient 6s linear infinite;
  z-index: 0;
  pointer-events: none;
}/* End custom CSS */