/* Start custom CSS for html, class: .elementor-element-728d2db *//* ==========================================================================
   SWIFT EXECUTIVE HEADER STYLES (DESKTOP ICONS + FLAT MOBILE SERVICES)
   Paste into: Elementor → Site Settings → Custom CSS (or WP Customizer CSS)
   ========================================================================== */

.swift-custom-header-wrapper {
  width: 100%;
  position: relative;
  z-index: 99999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #02050a;
  -webkit-font-smoothing: antialiased;
}

.swift-custom-header-wrapper *,
.swift-custom-header-wrapper *::before,
.swift-custom-header-wrapper *::after {
  box-sizing: border-box;
}

/* 1. TOP UTILITY BAR */
.swift-topbar {
  background-color: #010307;
  border-bottom: 1px solid rgba(29, 78, 216, 0.18);
  font-size: 11.5px;
  color: #94a3b8;
  padding: 7px 0;
}

.swift-topbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swift-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.swift-topbar-item i {
  color: #3b82f6;
  font-size: 11px;
}
.swift-topbar-item:hover {
  color: #93c5fd;
}

.swift-topbar-right {
  display: flex;
  gap: 22px;
}

/* 2. MAIN NAV BAR */
.swift-main-nav {
  position: relative;
  background: rgba(3, 7, 16, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.22);
}

.swift-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.swift-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.swift-brand-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Desktop Menu */
.swift-nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.swift-menu-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.swift-menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.swift-menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 10px 0;
  transition: color 0.22s ease;
  cursor: pointer;
}

.swift-menu-icon {
  font-size: 13px;
  color: #3b82f6;
  transition: transform 0.2s ease, color 0.2s ease;
}

.swift-menu-item > a:hover,
.swift-menu-item.active > a {
  color: #ffffff;
}

.swift-menu-item > a:hover .swift-menu-icon,
.swift-menu-item.active > a .swift-menu-icon {
  color: #93c5fd;
  transform: scale(1.1);
}

.swift-chevron {
  font-size: 10px;
  transition: transform 0.24s ease;
  color: #64748b;
  margin-left: 2px;
}
.swift-menu-item:hover .swift-chevron {
  transform: rotate(180deg);
  color: #3b82f6;
}

/* ==========================================================================
   COMPACT SERVICES DROPDOWN MENU
   ========================================================================== */
.swift-has-dropdown {
  position: relative;
}

.swift-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 250px;
  background: linear-gradient(145deg, rgba(13, 32, 63, 0.98) 0%, rgba(3, 7, 16, 0.99) 100%);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(37, 99, 235, 0.15);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.swift-has-dropdown:hover .swift-dropdown-menu,
.swift-has-dropdown:focus-within .swift-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.swift-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.swift-dropdown-link:hover,
.swift-dropdown-menu li.active .swift-dropdown-link {
  background: rgba(37, 99, 235, 0.22);
}

.swift-dd-icon {
  width: 20px;
  text-align: center;
  color: #3b82f6;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.swift-dropdown-link:hover .swift-dd-icon {
  color: #93c5fd;
  transform: scale(1.15);
}

.swift-icon-blue {
  color: #60a5fa !important;
}

.swift-dd-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #e2e8f0;
  transition: color 0.2s ease;
}
.swift-dropdown-link:hover .swift-dd-title,
.swift-dropdown-menu li.active .swift-dd-title {
  color: #ffffff;
}

.swift-dd-divider {
  height: 1px;
  background: rgba(37, 99, 235, 0.2);
  margin: 4px 6px;
}

/* Header Action Buttons */
.swift-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.swift-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.24s ease;
  white-space: nowrap;
}

.swift-btn-ghost {
  color: #e2e8f0;
  background: rgba(13, 32, 63, 0.6);
  border: 1px solid rgba(37, 99, 235, 0.35);
}
.swift-btn-ghost:hover {
  background: rgba(17, 40, 77, 0.95);
  border-color: #3b82f6;
  color: #ffffff;
}

.swift-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border: 1px solid #3b82f6;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.swift-btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

/* Mobile Toggle Hamburger */
.swift-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   3. MOBILE MENU (FLAT LIST OF ALL SERVICES & PAGES)
   ========================================================================== */
.swift-mobile-menu {
  display: none;
  max-height: 0;
  overflow-y: auto;
  background: #02050a;
  border-top: 1px solid rgba(29, 78, 216, 0.2);
  transition: max-height 0.35s ease-in-out;
  padding: 0 20px;
}
.swift-mobile-menu.is-open {
  max-height: 650px;
  padding: 18px 20px 28px;
}

.swift-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.swift-mobile-list li {
  margin: 0;
  padding: 0;
}

.swift-mobile-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 10px;
  background: rgba(13, 32, 63, 0.35);
  border: 1px solid rgba(37, 99, 235, 0.18);
  transition: all 0.2s ease;
}

.swift-mobile-list a i {
  color: #3b82f6;
  font-size: 15px;
  width: 22px;
  text-align: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.swift-mobile-list a:hover,
.swift-mobile-list li.active > a {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.25) 0%, rgba(13, 32, 63, 0.8) 100%);
  border-color: #3b82f6;
  color: #ffffff;
}

.swift-mobile-list a:hover i,
.swift-mobile-list li.active > a i {
  color: #93c5fd;
  transform: scale(1.15);
}

.swift-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.w-100 {
  width: 100%;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .swift-nav-menu,
  .swift-header-actions .swift-btn {
    display: none;
  }
  .swift-mobile-toggle,
  .swift-mobile-menu {
    display: block;
  }
  .swift-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 767px) {
  .swift-topbar-location {
    display: none;
  }
  .swift-topbar-container {
    justify-content: center;
  }
  .swift-nav-container {
    padding: 0 20px;
    height: 70px;
  }
  .swift-brand-logo img {
    height: 44px;
  }
}/* End custom CSS */