.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-30f22d1 *//* ==============================
 CTN CLEAN HEADER CSS - FINAL
 Desktop: Logo Left / Nav Center / Button Right
 Mobile: Logo Left / Button Right / Nav Scroll
============================== */

:root {
  --ctn-blue: #0B8CC6;
  --ctn-green: #B5CC6D;
  --ctn-orange: #F58220;
  --ctn-orange-dark: #E06F12;
  --ctn-heading: #303236;
  --ctn-text: #555655;
  --ctn-white: #ffffff;
  --ctn-light-bg: #F7FCFF;
  --ctn-border: rgba(48, 50, 54, 0.10);
}

/* Main Header */
.ctn-clean-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(48, 50, 54, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'Poppins', sans-serif;
}

/* Desktop Layout */
.ctn-clean-header-container {
  width: min(1180px, 100%);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo nav button";
  align-items: center;
  gap: 28px;
}

/* Logo */
.ctn-clean-logo {
  grid-area: logo;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none !important;
  flex-shrink: 0;
}

.ctn-clean-logo img {
  width: auto;
  height: 90px;
  max-width: 290px;
  object-fit: contain;
  display: block;
}

/* Navigation Wrapper */
.ctn-clean-nav-wrap {
  grid-area: nav;
  width: 100%;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop Navigation */
.ctn-clean-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.ctn-clean-nav a {
  position: relative;
  color: var(--ctn-heading);
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.ctn-clean-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ctn-blue);
  transition: width 0.22s ease;
}

.ctn-clean-nav a:hover {
  color: var(--ctn-blue);
}

.ctn-clean-nav a:hover::after {
  width: 100%;
}

/* Desktop CTA Button */
.ctn-clean-header-btn {
  grid-area: button;
  justify-self: end;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--ctn-white);
  background: var(--ctn-orange);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(245, 130, 32, 0.22);
  transition: all 0.22s ease;
  white-space: nowrap;
}

.ctn-clean-header-btn:hover {
  color: var(--ctn-white);
  background: var(--ctn-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.28);
}

/* Hide Scroll Arrows on Desktop */
.ctn-nav-scroll-arrow {
  display: none;
}

/* Tablet */
@media (max-width: 1080px) {
  .ctn-clean-header-container {
    min-height: 82px;
    gap: 18px;
  }

  .ctn-clean-logo img {
    height: 66px;
    max-width: 190px;
  }

  .ctn-clean-nav {
    gap: 15px;
  }

  .ctn-clean-nav a {
    font-size: 13.2px;
  }

  .ctn-clean-header-btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 13.5px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ctn-clean-header-container {
    min-height: auto;
    padding: 10px 14px 10px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo button"
      "nav nav";
    align-items: center;
    justify-items: stretch;
    gap: 10px 12px;
  }

  .ctn-clean-logo {
    grid-area: logo;
    justify-self: start;
    justify-content: flex-start;
    width: auto;
  }

  .ctn-clean-logo img {
    height: 80px;
    max-width:210px;
    margin: 0;
  }

  .ctn-clean-header-btn {
    grid-area: button;
    justify-self: end;
    width: auto;
    max-width: none;
    min-height: 40px;
    padding: 0 16px;
    font-size: 12.8px;
    box-shadow: 0 8px 18px rgba(245, 130, 32, 0.20);
  }

  .ctn-clean-nav-wrap {
    grid-area: nav;
    width: 100%;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
  }

  .ctn-clean-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 34px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }

  .ctn-clean-nav::-webkit-scrollbar {
    display: none;
  }

  .ctn-clean-nav a {
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(172, 219, 238, 0.16);
    border: 1px solid rgba(48, 50, 54, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.8px;
    font-weight: 700;
  }

  .ctn-clean-nav a::after {
    display: none;
  }

  .ctn-clean-nav a:hover {
    color: var(--ctn-blue);
    background: rgba(172, 219, 238, 0.26);
  }

  /* Mobile Scroll Arrows */
  .ctn-nav-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(48, 50, 54, 0.08);
    color: var(--ctn-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(11, 140, 198, 0.12);
    pointer-events: none;
  }

  .ctn-nav-arrow-left {
    left: 0;
  }

  .ctn-nav-arrow-right {
    right: 0;
  }

  /* Side Fade Effects */
  .ctn-clean-nav-wrap::before,
  .ctn-clean-nav-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 32px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .ctn-clean-nav-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 100%);
  }

  .ctn-clean-nav-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255,255,255,0) 100%);
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .ctn-clean-header-container {
    padding: 9px 12px 9px;
    gap: 9px 10px;
  }

  .ctn-clean-logo img {
    height: 90px;
    max-width: 170px;
  }

  .ctn-clean-header-btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12.2px;
  }

  .ctn-clean-nav a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12.4px;
  }
}/* End custom CSS */