.elementor-17 .elementor-element.elementor-element-118ce2a{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-052d36e */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  padding-top: 72px;          /* space for fixed header */
}

/* ===== HEADER - FIXED ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #f0f0f0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  height: 100%;
}

.logo img {
  height: 58px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.4px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #1a56db;
}

.nav-links a.active {
  color: #1a56db;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f97316;
  border-radius: 2px;
}

.btn-quote {
  background: #f97316;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-quote:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

.btn-quote svg {
  width: 14px;
  height: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  padding: 16px 24px 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  gap: 2px;
  z-index: 9998;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 8px;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu a.active {
  color: #1a56db;
}

.mobile-menu .btn-quote {
  margin-top: 16px;
  justify-content: center;
  padding: 14px;
}

/* Responsive */
@media (max-width: 960px) {
  .header {
    padding: 0 20px;
    height: 68px;
  }

  body {
    padding-top: 68px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    height: 50px;
    max-width: 220px;
  }

  .mobile-menu {
    top: 68px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0 16px;
  }

  .logo img {
    height: 44px;
    max-width: 180px;
  }
}
/* ===== SITE LOADER ===== */
#site-loader {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#site-loader.hide {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.loader-logo {
  height: 150px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain;
  animation: logoPulse 1.6s ease-in-out infinite;
}

.loader-bar {
  width: 100px;
  height: 3px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1a56db, #f97316);
  border-radius: 4px;
  animation: loadBar 1.4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

@keyframes loadBar {
  0% { width: 0; margin-left: 0; }
  50% { width: 70%; margin-left: 15%; }
  100% { width: 0; margin-left: 100%; }
}

@media (max-width: 480px) {
  .loader-logo {
    height: 56px !important;
    max-width: 140px !important;
  }
  .loader-bar {
    width: 90px;
  }
}
}/* End custom CSS */