.elementor-186 .elementor-element.elementor-element-4b373b4{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-186 .elementor-element.elementor-element-c721671{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.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-c721671 *//* ===========================
   HEADER - TRANSPARENT STYLE
=========================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(10, 35, 66, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Subtle dark overlay at top for contrast with hero bg */
.main-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 35, 66, 0.6) 0%, rgba(10, 35, 66, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

/* Golden Glow Line */
.top-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.5px;
  width: 100%;
  background: linear-gradient(90deg, rgba(244, 211, 94, 0) 0%, rgba(244, 211, 94, 0.8) 50%, rgba(244, 211, 94, 0) 100%);
  box-shadow: 0 0 15px rgba(244, 211, 94, 0.4);
  opacity: 0.8;
}

/* NAV BAR LAYOUT */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.col-left .site-logo {
  height: 48px;
  transition: transform 0.3s ease;
}

.col-left .site-logo:hover {
  transform: scale(1.05);
}

/* CENTER NAV LINKS */
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #F4D35E;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover {
  color: #F4D35E;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* RIGHT CTA BUTTON */
.top-btn {
  background: #F4D35E;
  color: #0A2342;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(244, 211, 94, 0);
}

.top-btn:hover {
  background: transparent;
  color: #F4D35E;
  border: 1px solid #F4D35E;
  box-shadow: 0 0 15px rgba(244, 211, 94, 0.5);
  transform: translateY(-2px);
}

/* STICKY EFFECT ON SCROLL */
.scrolled .main-header {
  background: rgba(10, 35, 66, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.scrolled .main-header::before {
  background: rgba(10, 35, 66, 0.7);
}

/* RESPONSIVE NAV */
@media (max-width: 992px) {
  .main-nav ul {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    gap: 15px;
    padding: 10px 20px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav ul li a {
    font-size: 0.95rem;
  }

  .top-btn {
    padding: 8px 18px;
  }
}/* End custom CSS */