/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    list-style: none;
} */
* {
  font-family: "NeueHaas", sans-serif;
  box-sizing: border-box;
}
@font-face {
  font-family: "NeueHaas";
  src: url("../fonts/NeueHaas/NeueHaasDisplayLight.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  overflow-x: hidden;
  font-family: "NeueHaas", sans-serif;
}
.marquee {
  display: inline-block;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(50%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* navbar */
#mobileMenuLinks {
  right: -100%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

#mobileMenuLinks.show {
  right: 0;
  opacity: 1;
}

/* mobile menu styling */
.mobile-menu {
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-item {
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

.mobile-menu-item a {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #0f3e69;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-item a:hover {
  color: #1e40af;
}

.mobile-cta-button {
  background: linear-gradient(to right, #175e9e, #0f3e69);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.mobile-cta-button:active {
  transform: scale(0.98);
}

.close-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: #e2e8f0;
  color: #475569;
}

.menu-toggle {
  transition: transform 0.2s ease;
}

.menu-toggle:active {
  transform: scale(0.95);
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

/* Plus icon animation */
.plus-icon {
  transition: transform 0.2s ease;
}

.mobile-menu-item:hover .plus-icon {
  transform: rotate(90deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

/* text field */
.floating-label {
  position: absolute;
  left: 12px;
  top: 15px;
  color: #151515;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 4px;
}

.form-input:focus + .floating-label,
.form-input:not(:placeholder-shown) + .floating-label {
  top: -10px;
  font-size: 12px;
  color: #0f3555;
  font-weight: 500;
}

.form-input {
  background: transparent !important;
}

.form-input:focus {
  border-color: #175e9e;
  box-shadow: 0 0 0 1px #175e9e;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #555;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.dropdown-container {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #acacad;
  border-radius: 6px;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:hover {
  background-color: #f9fafb;
}

.dropdown-item:last-child {
  border-bottom: none;
}

/* hero section */

.owl-carousel .owl-item {
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.owl-carousel .owl-item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.owl-carousel .owl-item img {
  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center center;
}

.owl-carousel .owl-item:not(.center) img {
  transform: scale(0.85);
}
@media screen and (min-width: 768px) {
  .owl-carousel .owl-stage-outer {
    padding-block: 55px;
  }
  .owl-carousel .item {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .owl-carousel .owl-item.center img {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(146, 146, 146, 0.356);
    border: 1px solid #f4f4f4;
  }
}

/* fetaure */
.feature-section {
  height: 600vh; /* 6 features × 100vh each */
}

.feature-content {
  height: 100vh;
  display: flex;
  align-items: center;
}

.feature-image {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(100px);
  opacity: 0;
}

.feature-image.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-image:not(.active) {
  opacity: 0;
  transform: translateY(100px);
}
