/* ---------- Global Reset ---------- */
*{margin:0;padding:0;box-sizing:border-box}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
  padding-top: 60px; /* ✅ Adjust to match actual navbar height */
}

@media (max-width: 900px) {
  body {
    padding-top: 60px; /* adjust to match your mobile navbar height */
  }
}

/* ---------- Navbar (global) ---------- */
#flex-header.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  margin: 0;
  padding: 0 !important;
  z-index: 2000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#flex-header .container,
#flex-header .container-fluid {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

#flex-header .navbar-brand,
#flex-header .phone-button,
#flex-header .navbar-toggler {
  flex: 0 0 auto;
  margin: 0;
}

#flex-header .navbar-collapse { height: auto; }

/* ---------- Desktop (≥992px) ---------- */
@media (min-width: 992px) {
  #flex-header .navbar-brand { order: 1; }
  #flex-header .navbar-collapse {
    order: 2;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 1;
  }
  #flex-header .phone-button { order: 3; margin-left: 16px; }
  #flex-header .navbar-toggler { display: none; }

  /* ✅ Tighter link spacing + cleaner rhythm */
  #flex-header .navbar-nav {
    text-align: center;
    align-items: center;
  }
  #flex-header .navbar-nav .nav-item {
    margin: 0 0.35rem; /* closer links */
  }
  #flex-header .navbar-nav .nav-link {
    padding: 0.4rem 0.5rem; /* compact padding */
    line-height: 1.2;
    font-weight: 600;
    color: #000 !important;
    transition: color 0.25s ease, opacity 0.25s ease;
  }
  #flex-header .navbar-nav .nav-link:hover,
  #flex-header .navbar-nav .nav-link.active {
    color: #198754 !important;
    opacity: 0.9;
  }
}

/* ---------- Logo ---------- */
#flex-header .navbar-brand img.logo {
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
}

/* ---------- Phone CTA ---------- */
.phone-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: #007BA7;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
  text-decoration: none;
}
.phone-button:hover {
  background: #005f80;
  color: #fff;
}
.phone-button .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ---------- Mobile (≤992px) ---------- */
@media (max-width: 992px) {
  #flex-header.navbar { height: auto; padding: 0; }
  #flex-header .container {
    height: auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 1px;
  }
  #flex-header .container > * { min-width: 0; }

  #flex-header .navbar-brand { order: 1; }
  #flex-header .phone-button { order: 2; }
  #flex-header .navbar-toggler { order: 3; margin-left: auto; }

  #flex-header .navbar-collapse {
    order: 4;
    flex: 1 1 100%;
    position: relative !important;
    background: #fff;
    width: 100%;
    padding: 0.75rem 1rem;
    border-top: 1px solid #ddd;
    flex-direction: column;
    align-items: flex-start;
  }

  #flex-header .navbar-collapse.collapse { display: none !important; }
  #flex-header .navbar-collapse.collapse.show { display: block !important; }

  #flex-header .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 0.5rem;
    text-align: left;
  }

  #flex-header .navbar-nav .nav-item { margin: 0; }

  #flex-header .navbar-nav .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: #000 !important;
    font-weight: 500;
  }
  #flex-header .navbar-nav .nav-link:last-child { border-bottom: none; }
  #flex-header .navbar-nav .nav-link:hover {
    background: #f9f9f9;
    color: #007BA7 !important;
  }

  #flex-header .btn-primary,
  #flex-header .phone-button {
    display: inline-flex;
    width: auto;
    margin-top: 0;
    justify-content: center;
    white-space: nowrap;
  }

  #flex-header .navbar-brand img.logo { max-height: 44px; }
  }

@media (max-width: 992px) {
  /* Always show the Services dropdown list */
  #flex-header .nav-item.dropdown .dropdown-menu {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Clean spacing for dropdown items */
  #flex-header .dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 18px !important;
    color: #000 !important;
    font-weight: 500;
    border-bottom: 1px solid #eee;
  }

  #flex-header .dropdown-item:hover {
    background: #f9f9f9 !important;
    color: #005b96 !important;
  }

  /* Remove the caret arrow */
  #flex-header .nav-item.dropdown > .dropdown-toggle::after {
    display: none !important;
  }
}

/* ---------- Hero Section (Fixed) ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen for strong visual impact */
  overflow: hidden;
  margin-top: 0;
}

.myHeroSwiper {
  width: 100%;
  height: 100%; /* ensure swiper wrapper fills full height */
}

.myHeroSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.10); /* gentle overlay for readability */
  padding: 2rem;
  border-radius: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: #007BA7;
}

.hero-slider .swiper-pagination-bullet {
  background: #007BA7;
  opacity: 0.6;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ---------- Responsive (≤768px) ---------- */
@media (max-width: 768px) {
  .hero-slider,
  .myHeroSwiper,
  .myHeroSwiper .swiper-slide {
    height: 65vh;
  }

  .hero-content {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .hero-content p,
  .hero-content ul {
    font-size: 0.9rem;
  }

  .hero-content .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* ---------- TRAILER HERO (FIT CONTENT VERSION – FINAL CLEAN) ---------- */
.trailer-hero {
  position: relative;
  width: 100%;
  height: auto;          /* fits content */
  min-height: 400px;     /* safety floor */
  overflow: hidden;
}

.trailer-hero .swiper-slide {
  width: 100%;
  height: auto;           /* 🔹 allow slides to expand naturally */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 0;        /* 🔹 gives top/bottom spacing for hero text */
}

.trailer-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.10);   /* dark overlay for text contrast */
  z-index: 1;
}

.trailer-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.trailer-hero .hero-content h1 {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.trailer-hero .btn {
  background: #007BA7;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.trailer-hero .btn:hover {
  background: #005f80;
}

/* ✅ Optional: handle navbar overlap on mobile */
@media (max-width: 992px) {
  .trailer-hero {
    padding-top: 70px; /* adjust to your fixed navbar height */
  }
}
/* Controls */
.trailer-hero .swiper-button-next,
.trailer-hero .swiper-button-prev {
  color: #007BA7;
  transition: color 0.3s ease, transform 0.3s ease;
}

.trailer-hero .swiper-button-next:hover,
.trailer-hero .swiper-button-prev:hover {
  color: #005b7a;
  transform: scale(1.1);
}

.trailer-hero .swiper-pagination-bullet {
  background: #007BA7;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.trailer-hero .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .trailer-hero {
    height: 65vh;
  }
  .trailer-hero .hero-content {
    padding: 1rem;
  }
  .trailer-hero .hero-content h1 {
    font-size: 1.4rem;
  }
}

/* --- Trailer Hero Fine-Tuning (Non-Global) --- */
.trailer-hero .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.trailer-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* ---------- Trailer Slider ---------- */
.trailer-slider,
.promo-slider {
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
  padding: 80px 0;
}

.trailer-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 550px;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trailer-slider .swiper-slide:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.trailer-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ keeps portrait and landscape clean */
  object-position: center;
  background: #fff;
  border-radius: 1rem;
}

/* Controls */
.trailer-slider .swiper-button-next,
.trailer-slider .swiper-button-prev {
  color: #007BA7;
  transition: color 0.3s ease, transform 0.3s ease;
}

.trailer-slider .swiper-button-next:hover,
.trailer-slider .swiper-button-prev:hover {
  color: #005b7a;
  transform: scale(1.1);
}

.trailer-slider .swiper-pagination-bullet {
  background: #007BA7;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.trailer-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive height */
@media (max-width: 992px) {
  .trailer-slider .swiper-slide { height: 420px; }
}
@media (max-width: 768px) {
  .trailer-slider .swiper-slide { height: 340px; }
  .trailer-slider .swiper-button-next,
  .trailer-slider .swiper-button-prev { display: none; }
}



/* ---------- Promo Section ---------- */
.promo {
  background: #005b96;
  padding: 20px; /* ✅ more breathing room top & bottom */
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* ✅ keeps items stacked vertically */
  overflow: visible;       /* ✅ prevents content from being clipped */
  min-height: 400px;       /* ✅ maintains a solid visual base */
  height: auto;            /* ✅ allows content to grow naturally */
}

/* ✅ Responsive adjustment */
@media (max-width: 768px) {
  .promo {
    padding: 100px 1rem 0px;
    min-height: auto;
    height: auto;
    background-attachment: scroll; /* fixes mobile background issues */
  }
}

/* ✅ Content wrapper */
.promo .promo-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: left; /* optional: set to left-align for paragraph-heavy content */
}

/* ✅ Headings and text styling */
.promo h1,
.promo h2,
.promo h3,
.promo h5,
.promo h6 {
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem 0;
}

.promo h1 {
  font-size: 2rem;
  text-transform: uppercase;
}

.promo h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.promo h3 {
  font-size: 1.75rem;
  text-transform: uppercase;
}

.promo h5 {
  font-size: 1.5rem;
}

.promo h6 {
  font-size: 1.1rem;
  color: #e6e6e6;
}

/* ✅ Buttons */
.btn-promo,
.promo .btn-primary {
  background: #007BA7;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-promo:hover,
.promo .btn-primary:hover {
  background: #218838;
  color: #fff;
}


/* ---------- Secondary Promo Section ---------- */
.promo-secondary {
  background: #005b96; /* deep green contrast to blue promo */
  padding: 0 80px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;

  /* Height controls */
  min-height: 150px;     /* slightly shorter than main promo */
  max-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .promo-secondary {
    min-height: 220px;
    max-height: none;
    background-attachment: scroll;
  }
}

/* Inner content */
.promo-secondary .promo-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.promo-secondary h3,
.promo-secondary h5,
.promo-secondary h6 {
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem 0;
}

.promo-secondary h3 {
  font-size: 1.75rem;
  text-transform: uppercase;
}

.promo-secondary h5 {
  font-size: 1.4rem;
}

.promo-secondary h6 {
  font-size: 1.05rem;
  color: #e6e6e6;
}

/* Buttons for secondary promo */
.btn-promo-secondary,
.promo-secondary .btn-primary {
  background: #00bfa6; /* teal tone for variation */
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-promo-secondary:hover,
.promo-secondary .btn-primary:hover {
  background: #009c87;
  transform: scale(1.05);
  color: #fff;
}

/* Swiper Promo Section */
.promo3 .promo-swiper {
  position: relative;
  overflow: hidden;
}

.promo3 .swiper-slide {
  position: relative;
  text-align: center;
  color: #fff;
}

/* Image fills container nicely */
.promo3 .swiper-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: brightness(60%);
  border-radius: 8px;
}

/* Text overlay positioning */
.promo3 .swiper-slide h3,
.promo3 .swiper-slide p,
.promo3 .swiper-slide .btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

.promo3 .swiper-slide h3 {
  top: 40%;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}

.promo3 .swiper-slide p {
  top: 50%;
  width: 80%;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.4;
}

.promo3 .swiper-slide .btn {
  top: 63%;
  background-color: #0d6efd;
  border: none;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .promo3 .swiper-slide img {
    height: 300px;
  }
  .promo3 .swiper-slide h3 {
    font-size: 1.4rem;
    top: 38%;
  }
  .promo3 .swiper-slide p {
    font-size: 0.9rem;
    top: 50%;
    width: 90%;
  }
  .promo3 .swiper-slide .btn {
    top: 65%;
    font-size: 0.9rem;
    padding: 8px 18px;
  }
}
.promo3 .slide-caption {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  color: #fff;
  z-index: 5;
}

.promo3 .slide-caption h3 {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}

.promo3 .slide-caption p {
  max-width: 600px;
  margin: 10px auto 20px;
  font-size: 1rem;
  line-height: 1.4;
}

.promo3 .btn-promo {
  background-color: #0d6efd;
  border: none;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .promo3 .slide-caption h3 { font-size: 1.4rem; }
  .promo3 .slide-caption p { font-size: 0.9rem; width: 90%; }
}


/* ---------- Search Bar Section ---------- */
.searchbar {
  background: #005b96;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: visible;
  min-height: 250px;
}

/* ✅ Responsive adjustment */
@media (max-width: 768px) {
  .searchbar {
    padding: 100px 1rem 40px;
    min-height: auto;
    height: auto;
    background-attachment: scroll;
  }
}

/* ✅ Content wrapper */
.searchbar .searchbar-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ✅ Heading text */
.searchbar h2 {
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* ✅ Search input and button */
.searchbar form {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.searchbar input[type="text"] {
  flex: 1;
  min-width: 0;
  max-width: 600px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  outline: none;
  color: #333;
}

.searchbar button {
  background: #007BA7;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.searchbar button:hover {
  background: #218838;
}

/* ✅ Responsive behavior */
@media (max-width: 600px) {
  .searchbar form {
    flex-direction: column;
    gap: 12px;
  }

  .searchbar input[type="text"],
  .searchbar button {
    width: 100%;
  }
}


/* ---------- Promo Background Section ---------- */
.promo-bg {
  background: url('../img/o-37-1920w.jpg') center center / cover no-repeat fixed;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Optional: dark overlay for better text contrast */
.promo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.10); /* adjust opacity as needed */
  z-index: -1;
}

/* ---------- Home Page About Section ---------- */
.about-section {
  width: 100%;
  margin: 0;
  padding: 0;
}
.about-section .row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  min-height: 400px; /* ✅ keeps a solid base height but allows content to grow */
  height: auto;      /* ✅ ensures it expands naturally */
}
.about-section .col-md-6 {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}
.about-image {
  background-size: cover;
  background-position: center;
  flex: 1;
}
.about-text {
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  flex-wrap: wrap;              /* ✅ allows content wrapping */
  word-break: break-word;       /* ✅ breaks long text lines */
  white-space: normal;          /* ✅ ensures text wraps naturally */
}
.about-text h3.fw-bold {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #000;
}
.about-text p {
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}
.about-text a {
  color: #007BA7;
  font-weight: 500;
  text-decoration: none;
}
.about-text a:hover {
  text-decoration: underline;
  color: #00a3d9;
}

/* ---------- About Section 2 ---------- */
.about-section2 {
  width: 100%;
  margin: 0;
  padding: 20px 0;
}
.about-section2 .row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* ✅ keeps both columns even in height */
  min-height: 400px;    /* ✅ visual balance baseline */
}

.about-section2 .col-md-6 {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}
.about-image {
  background-size: cover;
  background-position: center;
  flex: 1;
}
.about-text {
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  flex-wrap: wrap;              /* ✅ allows content wrapping */
  word-break: break-word;       /* ✅ breaks long text lines */
  white-space: normal;          /* ✅ ensures text wraps naturally */
}
.about-text h3.fw-bold {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #000;
}
.about-text p {
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}
.about-text a {
  color: #007BA7;
  font-weight: 500;
  text-decoration: none;
}
.about-text a:hover {
  text-decoration: underline;
  color: #00a3d9;
}

@media (max-width: 768px) {
  .about-section2 .row {
    flex-direction: column; /* ✅ stacks text and image vertically */
    min-height: auto;
  }
  .about-section2 .col-md-6 {
    flex: 1 1 100%;
  }
  .about-section2 img {
    max-width: 100%;
    height: auto;
  }
}

.about-section2 .col-md-6 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* ---------- Contact Info Section ---------- */
.contact-info-section{display:flex;flex-wrap:wrap;width:100%;margin:0;padding:0;height:400px}
.contact-info-section>div{flex:1 1 50%;display:flex;flex-direction:column;justify-content:center}
.contact-info-section .contact-text{background:#fff;color:#000;padding:3rem 2rem}
.contact-info-section .contact-text h3{font-family:Oswald,sans-serif;font-size:2rem;text-transform:uppercase;font-weight:700;line-height:1.3;margin-bottom:1.5rem}
.contact-info-section .contact-text p{font-family:Poppins,sans-serif;font-size:1.05rem;line-height:1.6;color:#333}
.contact-info-section .contact-text a{color:#007BA7;text-decoration:none;font-weight:500}
.contact-info-section .contact-text a:hover{text-decoration:underline;color:#00a3d9}
.contact-info-section .contact-details{background:#005b96;color:#fff;padding:3rem 2rem;gap:1.5rem}
.contact-info-section .contact-item{display:flex;align-items:center;gap:1rem;border:0px solid #fff;padding:1rem;border-radius:4px;transition:background .3s ease,color .3s ease}
.contact-info-section .contact-item:hover{background:#007BA7}
.contact-info-section .contact-item svg{width:24px;height:24px;fill:#fff}
.contact-info-section .contact-item p,.contact-info-section .contact-item a{margin:0;color:#fff;font-weight:500;font-size:1rem;text-decoration:none}
.contact-info-section .contact-item a:hover{text-decoration:underline}

/* ---------- Sections responsive (≤768px) ---------- */
@media (max-width:768px){
  .about-section .row,.contact-info-section{height:auto}
  .about-section .col-md-6,.contact-info-section>div{flex:1 1 100%}
}

/* ---------- Hero Responsive (≤768px) ---------- */
@media (max-width:768px){
  .hero-slider,.hero-slider .swiper-slide{height:60vh}
  .hero-slider .hero-content{padding:1rem;font-size:.9rem}
  .hero-slider .hero-content h1{font-size:1.25rem;line-height:1.3}
  .hero-slider .hero-content p,.hero-slider .hero-content ul{font-size:.9rem}
  .hero-slider .btn{padding:.5rem 1rem;font-size:.9rem}
}

/* ---------- Testimonials ---------- */
.testimonial{background:#007BA7;color:#fff;border-radius:0;padding:1rem;font-size:.9rem;line-height:1.4}

/* ---------- Map Section ---------- */
section iframe{border:0;border-radius:4px}
.bg-dark ul{color:#fff}
.bg-light ul{color:#000}



/* ---------- Footer ---------- */
footer {background:#198754;color:#fff;text-align:center;font-size:.85rem}
footer a{color:#fff;text-decoration:none}
footer a:hover{text-decoration:underline}


/* ---------- SVG Icons (Service Section) ---------- */
.service-svg {
  width: 100px;
  height: 100px;
  display: inline-block;
  margin: 0 auto;
  fill: #007BA7; /* ✅ primary blue */
  transition: transform 0.3s ease, fill 0.3s ease, border-color 0.3s ease;
}

/* Hover: slightly enlarge and darken fill */
.service-svg:hover {
  transform: scale(1.08);
  fill: #005f80;
}

/* Center the SVG container */
.graphicWidget {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px; /* slightly taller for larger object */
  overflow: visible;
}

/* 🟢 Larger green ring around SVG with extra spacing */
.graphicWidget svg {
  border: 4px solid #198754;   /* green ring */
  border-radius: 50%;          /* circular ring */
  padding: 14px;               /* ✅ increased space between SVG and ring */
  background: transparent;
  width: 110px;                /* ✅ enlarged total object size */
  height: 110px;
  box-sizing: border-box;
  display: block;
  overflow: visible;
}

/* Optional: hover ring color change and subtle lift */
.graphicWidget svg:hover {
  border-color: #007BA7;
  transform: scale(1.07);
  box-shadow: 0 0 8px rgba(0, 123, 167, 0.3);
}



/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .specialists-row {
    flex-direction: column;
    max-height: none; /* allow natural stacking on mobile */
  }
  .specialists-text {
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .specialists-text p {
    max-width: 100%;
  }
  .specialists-image {
    height: 280px;
  }
}


/* Op*
/* ---------- Specialists Section ---------- */
.specialists-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Two-column layout on desktop */
.specialists-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;      /* keeps columns equal height */
  min-height: 400px;
  overflow: hidden;
}

/* Left Column: Text */
.specialists-text {
  flex: 1 1 50%;
  background: #007b3a;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 3rem;
}

.specialists-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.specialists-text .arrow {
  color: #fff;
  margin-left: 0.5rem;
}

.specialists-text p {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #fff;
  max-width: 900px;
  word-wrap: break-word;
  white-space: normal;
}

.specialists-text a.link {
  color: #00d9ff;
  text-decoration: none;
  font-weight: 500;
}

.specialists-text a.link:hover {
  text-decoration: underline;
  color: #00ffff;
}

/* Right Column: Image */
.specialists-image {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.specialists-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills height equally with text */
  display: block;
}

/* ---------- Responsive Layout ---------- */
@media (max-width: 991px) {
  .specialists-row {
    flex-direction: column;  /* stack vertically */
  }

  .specialists-text,
  .specialists-image {
    flex: 1 1 100%;
    width: 100%;
  }

  .specialists-text {
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .specialists-image img {
    height: auto;
    max-height: 500px;
  }
}

/* ---------- Small Screens (≤600px) ---------- */
@media (max-width: 600px) {
  .specialists-text {
    padding: 2rem 1.25rem;
  }

  .specialists-text h3 {
    font-size: 1.6rem;
  }

  .specialists-text p {
    font-size: 0.95rem;
  }

  .specialists-image img {
    height: 100%;
    object-fit: cover;
  }
}




/* --- Secure your space today! ---*/

section.bg-light.text-center {
  background: #f8f9fa; /* subtle gray */
  border-top: 0 solid #007BA7;
  border-bottom: 0 solid #007BA7;
}

section.bg-light.text-center h5 {
  font-size: 1.5rem;
  color: #000;
}

section.bg-light.text-center h6 {
  font-size: 1.1rem;
  color: #555;
}


/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .specialists-row {
    flex-direction: column;
    max-height: none; /* allow natural stacking on mobile */
  }
  .specialists-text {
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .specialists-image {
    height: 280px;
  }
}


/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .specialists-row {
    flex-direction: column;
  }
  .specialists-text {
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .specialists-image {
    height: 280px;
  }
}


/* ---------- Map & Coverage Section ---------- */
.map-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.map-section h2 {
  font-size: 2rem;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}

.map-section p {
  color: #555;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.map-section .ratio {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-section .bg-white {
  background: #fff;
}

.map-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-section ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.map-section ul li:last-child {
  border-bottom: none;
}

.map-section h5 {
  font-size: 1.25rem;
  color: #007BA7;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .map-section {
    padding: 40px 0;
  }
  .map-section ul li {
    font-size: 0.95rem;
  }
}

/* ---------- Reviews Section ---------- */
.reviews {
  background: #ffffff;
  padding: 20px 0;
}

.reviews .container {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews h2 {
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* ---------- Review Cards ---------- */
.review-card {
  background: #005b96; /* ✅ Deep professional blue */
  color: #fff;
  border-radius: 0; /* ✅ Square corners (matches screenshot) */
  padding: 40px 30px;
  min-height: 400px; /* ✅ Uniform height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ✅ Text aligned from top */
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Reviewer Name */
.review-card h3 {
  font-family: 'Oswald', sans-serif; /* ✅ Bold, condensed uppercase font */
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Review Text */.review-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
  color: #fff;
  flex: 1;
  display: flex;
  align-items: flex-start; /* ✅ top aligned text */
  justify-content: center;
  text-align: center;
  font-weight: 700; /* ✅ makes all paragraph text strong */
  letter-spacing: 0.3px; /* ✅ slight spacing for clean bold look */
}

/* Hover Animation */
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

/* ---------- Swiper Pagination ---------- */
.reviews .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.reviews .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
  .review-card {
    min-height: 320px;
    padding: 30px 20px;
  }

  .review-card h3 {
    font-size: 1.3rem;
  }

  .reviews h2 {
    font-size: 1.5rem;
  }
}



/* ---------- Hamburger Icon ---------- */
.navbar-light .navbar-toggler-icon{
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.8%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width:1.5rem;height:1.5rem
  

}


/* ---------- Fix Overlapping Between Promo and Service Icons ---------- */

/* Ensure promo section ends cleanly */
.promo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0; /* ✅ pushes down blue area to avoid overlap */
}
.promo-secondary {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 80px 0; /* ✅ pushes down blue area to avoid overlap */
}

.promo3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 80px 0; /* ✅ pushes down blue area to avoid overlap */
}


/* Start service grid cleanly */
.services-section {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-top: 40px;    /* ✅ adds breathing room */
  padding-bottom: 40px;
  clear: both;
}

/* Each service card alignment */
.service-box {
  text-align: center;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 400px;     /* ✅ uniform height for all icons/text/buttons */
}

/* Icon container */
.graphicWidget {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon itself */
.service-svg {
  width: 90px;
  height: 90px;
  fill: #007BA7;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.service-svg:hover {
  fill: #005f80;
  transform: scale(1.08);
}

/* Service titles and buttons */
.service-box h4 {
  font-weight: 700;
  margin: 10px 0;
  font-size: 1.05rem;
  color: #000;
}

.service-box .btn {
  margin-top: auto; /* ✅ pushes buttons to bottom evenly */
  background: #007BA7;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  padding: 10px 20px;
  transition: background 0.3s ease;
}

.service-box .btn:hover {
  background: #005f80;
}

/* --- Trailer Slider Independent Behavior --- */
.trailer-slider {
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
  padding: 80px 0;
}

.trailer-slider .swiper-wrapper {
  align-items: stretch;
}

.trailer-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 550px;                /* consistent gallery height */
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trailer-slider .swiper-slide:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Image fix — handle portrait + landscape equally */
.trailer-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* ✅ keeps aspect ratio */
  object-position: center;
  background: #fff;
  border-radius: 1rem;
  display: block;
}

/* Navigation + pagination styling */
.trailer-slider .swiper-button-next,
.trailer-slider .swiper-button-prev {
  color: #007BA7;
  transition: color 0.3s ease, transform 0.3s ease;
}

.trailer-slider .swiper-button-next:hover,
.trailer-slider .swiper-button-prev:hover {
  color: #005b7a;
  transform: scale(1.1);
}

.trailer-slider .swiper-pagination-bullet {
  background: #007BA7;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.trailer-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive height adjustments */
@media (max-width: 992px) {
  .trailer-slider .swiper-slide { height: 420px; }
}

@media (max-width: 768px) {
  .trailer-slider .swiper-slide { height: 340px; }
  .trailer-slider .swiper-button-next,
  .trailer-slider .swiper-button-prev { display: none; }
}

/* =====================================================
   ✅ MOBILE DROPDOWN FIX — Visible + Touch-Friendly
   ===================================================== */
@media (max-width: 991px) {

  /* Keep navbar collapse clean */
  #flex-header .navbar-collapse {
    background: #fff !important;
    border-top: 1px solid #eee;
    padding: 0;
  }

  /* Fix dropdown toggle tap */
  #flex-header .nav-item.dropdown > .dropdown-toggle {
    pointer-events: auto !important;
  }

  /* When Bootstrap adds .show, reveal dropdown */
  #flex-header .nav-item.dropdown.show > .dropdown-menu {
    display: block !important;
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Dropdown items style */
  #flex-header .dropdown-item {
    display: block;
    padding: 10px 18px !important;
    color: #000 !important;
    font-weight: 500;
    border-bottom: 1px solid #eee;
  }

  #flex-header .dropdown-item:hover {
    background: #f7f7f7 !important;
    color: #005b96 !important;
  }

  /* Prevent horizontal scroll issues */
  #flex-header .navbar-nav {
    width: 100%;
    overflow-x: hidden;
  }

  /* Keep Services title visible but not overlapping */
  #flex-header .nav-item.dropdown {
    position: relative !important;
  }

  /* Hide dropdown caret (optional for clean look) */
  #flex-header .nav-item.dropdown > .dropdown-toggle::after {
    display: none !important;
  }
}

/* ---------- Global Button Custom ---------- */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  background: #005b96;           /* ✅ matches site blue */
  color: #fff;                   /* white text */
  border: 2px solid #005b96;     /* consistent outline on hover */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle elevation */
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #007BA7;           /* lighter blue hover tone (site accent) */
  border-color: #007BA7;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,123,167,0.25); /* soft glow */
  transform: translateY(-2px);   /* slight lift */
}

.btn-custom:active {
  transform: translateY(0);      /* reset lift on click */
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-custom:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(0,91,150,0.25);
}


/* ---------- Navbar Social Icons ---------- */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.social-icons a:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(0,123,167,0.5));
}
.social-icons svg {
  vertical-align: middle;
}

/* === Responsive Social Icons (below 900px) === */
@media (max-width: 900px) {
  #flex-header .social-icons {
    display: flex !important;           /* show on mobile */
    order: 5 !important;                /* move below everything */
    width: 100%;                        /* take full row width */
    justify-content: center;            /* center icons horizontally */
    margin-top: 8px;
    padding: 8px 0;
    border-top: 1px solid #ddd;         /* subtle top divider */
    background: #fff;                   /* ensure clean white background */
  }

  /* Tighter spacing for icons */
  #flex-header .social-icons a {
    margin: 0 6px;
    transform: scale(1);
  }
}
