/* =========================================================
   CUSTOM HEADER + HERO SLIDER
   Clean redesign inspired by globaxx.com layout
   ========================================================= */

/* ---- Top utility bar ---- */
.cw-topbar {
    background: var(--primary-color, #121240);
    color: #f5f5f5;
    font-size: 16px;
    padding: 25px 0;
}
.cw-topbar a{
  color: white !important;
}

.cw-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.cw-topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cw-topbar-left a {
  color: #f5f5f5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.cw-topbar-left a:hover {
  opacity: 1;
  color: var(--secondary-color, #f26420);
}

.cw-topbar-left i {
  color: var(--secondary-color, #f26420);
  font-size: 13px;
}

.cw-topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cw-topbar-social a {
  color: #f5f5f5;
  opacity: 0.85;
  font-size: 13px;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.cw-topbar-social a:hover {
  opacity: 1;
  color: var(--secondary-color, #f26420);
}

/* ---- Main header / nav ---- */
.cw-main-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(18, 18, 64, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.cw-main-header .cw-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.cw-main-header .cw-logo img {
  height: 90px;
  width: auto;
  display: block;
}

.cw-main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cw-main-nav li a {
  display: inline-block;
  padding: 10px 16px;
  color: var(--primary-color, #121240);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.cw-main-nav li a:hover,
.cw-main-nav li a.active {
  color: var(--secondary-color, #f26420);
  background: rgba(242, 100, 32, 0.08);
}

.cw-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cw-cta-btn {
  background: var(--secondary-color, #f26420);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cw-cta-btn:hover {
  background: #d9550f;
  transform: translateY(-1px);
  color: #fff !important;
}

.cw-toggle-btn {
  display: none;
  background: var(--primary-color, #121240);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
}

@media (max-width: 991px) {
  .cw-main-nav {
    display: none;
  }
  .cw-toggle-btn {
    display: inline-flex;
  }
  .cw-topbar-social {
    /* display: none; */
  }
}

@media (max-width: 576px) {
  .cw-topbar-left span.cw-divider {
    display: none;
  }
  .cw-nav-actions .cw-cta-btn {
    display: none;
  }
}

/* ---- Hero Slider ---- */
.cw-hero-slider {
  position: relative;
}

.cw-hero-slider .owl-carousel {
  position: relative;
}

.cw-slide {
    position: relative;
    width: 100%;
    height: 700px;      /* Change to 100vh if you want full screen */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cw-hero-slider,
.cw-slider-carousel,
.cw-slider-carousel .owl-stage-outer,
.cw-slider-carousel .owl-stage,
.cw-slider-carousel .owl-item {
    width: 100%;
    height: 700px;
}

.cw-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(18,18,64,0.88) 0%, rgba(18,18,64,0.55) 45%, rgba(18,18,64,0.25) 100%); */
}

.cw-slide-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #fff;
  padding: 0 15px;
}

.cw-slide-eyebrow {
  display: inline-block;
  background: var(--secondary-color, #f26420);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.cw-slide-content h2 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff;
}

.cw-slide-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e8e8f2;
  margin-bottom: 26px;
  text-align: left !important;
}

.cw-slide-buttons a {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-right: 12px;
  transition: all 0.25s ease;
}

.cw-btn-primary {
  background: var(--secondary-color, #f26420);
  color: #fff !important;
}

.cw-btn-primary:hover {
  background: #d9550f;
}

.cw-btn-outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.6);
}

.cw-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Owl nav / dots styling */
.cw-hero-slider .owl-nav button.owl-prev,
.cw-hero-slider .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  font-size: 22px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.cw-hero-slider .owl-nav button.owl-prev:hover,
.cw-hero-slider .owl-nav button.owl-next:hover {
  background: var(--secondary-color, #f26420) !important;
}

.cw-hero-slider .owl-nav button.owl-prev {
  left: 24px;
}

.cw-hero-slider .owl-nav button.owl-next {
  right: 24px;
}

.cw-hero-slider .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.cw-hero-slider .owl-dots .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  margin: 0;
  transition: all 0.25s ease;
}

.cw-hero-slider .owl-dots .owl-dot.active span {
  background: var(--secondary-color, #f26420);
  width: 26px;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .cw-slide-content h2 {
    font-size: 1.9rem;
  }
  .cw-hero-slider .owl-nav {
    display: none;
  }
}

@media screen and (min-width: 300px) and (max-width: 960px) {
.cw-slide {
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cw-hero-slider,
.cw-slider-carousel,
.cw-slider-carousel .owl-stage-outer,
.cw-slider-carousel .owl-stage,
.cw-slider-carousel .owl-item {
    width: 100%;
    height: 200px;
}
}

