/* ==========================
   NAVIGATION
========================== */
/* =========================================
   GLOBAL OVERFLOW FIX
========================================= */
/* Ensure parent containers don't clip absolute dropdowns */
header,
.header,
.nav-wrapper,
.main-nav {
  overflow: visible !important;
}

/* =========================================
   MAIN NAVIGATION BASE
========================================= */
.main-nav {
  background: #294594;
  width: 100%;
  position: relative;
  z-index: 9999;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 18px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-menu > li > a:hover {
  background: #0e2461;
}

.arrow {
  font-size: 10px;
}

.enquiry {
  background: #0e2461 !important;
  border-radius: 3px;
  margin-left: 5px;
}

/* =========================================
   DESKTOP STYLES (Min-width: 901px)
========================================= */
@media (min-width: 901px) {
  .mobile-product-menu,
  .mobile-manual-menu,
  .mobile-menu-toggle {
    display: none !important;
  }

  .main-nav {
    display: block !important;
  }

  /* --- Standard Dropdown --- */
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 999999;
  }

  .submenu li a {
    display: block;
    padding: 13px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }

  .submenu li a:hover {
    background: #0e2461;
    color: #fff;
  }

  .dropdown:hover > .submenu {
    display: block;
  }

  /* --- Desktop Product Mega Menu --- */
  .product-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1100px;
    min-height: 0;
    display: none;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    z-index: 999999;
  }

  .product-menu:hover > .product-panel {
    display: block !important; /* Forces layout rendering */
  }

  .product-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 0 28px;
    padding: 24px 28px;
    /* No max-height/overflow here on purpose: clipping this panel is what
       hid the Centrifugal Blower group before — let it grow to fit. */
  }

  .product-col {
    display: flex;
    flex-direction: column;
  }

  .product-group {
    margin-bottom: 18px;
  }

  .product-group h4 {
    margin: 0 0 6px;
    padding-bottom: 6px;
    color: #294594;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #f0c4b8;
  }

  .product-group h4 a {
    color: inherit;
    text-decoration: none;
  }

  .product-group h4 a:hover {
    color: #0e2461;
  }

  .product-group a {
    display: block;
    padding: 7px 0;
    color: #333;
    text-decoration: none;
    font-size: 13.5px;
    border-bottom: 1px solid #f4d9cd;
  }

  .product-group a:last-child {
    border-bottom: 0;
  }

  .product-group a:hover {
    color: #0e2461;
    /* text-decoration: underline; */
  }

  /* --- Manual & Brochure Panel --- */
  .manual-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 620px;
    display: none;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    z-index: 999999;
  }

  .manual-menu:hover > .manual-panel {
    display: block !important;
  }

  .manual-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 0 28px;
    padding: 24px 28px;
  }

  .manual-col {
    display: flex;
    flex-direction: column;
  }

  .manual-group h4 {
    margin: 0 0 6px;
    padding-bottom: 6px;
    color: #df202b;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #f0c4b8;
  }

  .manual-group a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    color: #333;
    text-decoration: none;
    font-size: 13.5px;
    border-bottom: 1px solid #f4d9cd;
  }

  .manual-group a:last-child {
    border-bottom: 0;
  }

  .manual-group a:hover {
    color: #0e2461;
    /* text-decoration: underline; */
  }

  .pdf-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 22px;
    background: #294594;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 3px;
    flex-shrink: 0;
  }
}

/* =========================================
   MOBILE STYLES (Max-width: 900px)
========================================= */
@media (max-width: 900px) {
  /* Hide Desktop Panels */
  .product-panel,
  .manual-panel {
    display: none !important;
  }

  /* Hamburger Toggle Button */
  .mobile-menu-toggle {
    display: block !important;
    width: 45px;
    height: 45px;
    margin: 10px 15px;
    padding: 8px;
    background: #294594;
    border: 0;
    cursor: pointer;
    z-index: 100000;
    position: relative;
    float: right;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
  }

  /* Mobile Nav Dropdown Frame */
  .main-nav {
    display: none; /* Hidden until hamburger is clicked */
    width: 100%;
    background: #294594;
  }

  .main-nav.mobile-open {
    display: block !important;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a {
    width: 100%;
    padding: 15px 18px;
    box-sizing: border-box;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* Mobile Standard Submenus */
  .submenu {
    display: none;
    position: static;
    width: 100%;
    /* background: #fff; */
    /* background-color: #0e2461; */
    color: #ffffff;
  }

  .dropdown.mobile-active > .submenu {
    display: block !important;
  }

  /* Mobile Product & Manual Accordions */
  .mobile-product-menu,
  .mobile-manual-menu {
    display: none;
    width: 100%;
    background: #fff;
  }

  .product-menu.mobile-active > .mobile-product-menu,
  .manual-menu.mobile-active > .mobile-manual-menu {
    display: block !important;
  }

  .mobile-group {
    border-bottom: 1px solid #ddd;
  }

  .mobile-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 18px;
    border: 0;
    background: #f7f7f7;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }

  .mobile-title::after {
    content: "▼";
    font-size: 10px;
    transition: 0.3s;
  }

  .mobile-title.active {
    background: #0e2461;
    color: #fff;
  }

  .mobile-title.active::after {
    transform: rotate(180deg);
  }

  .mobile-links {
    display: none;
    background: #fff;
  }

  .mobile-links.show {
    display: block !important;
  }

  .mobile-links a {
    display: block;
    padding: 12px 30px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
}
/* =====================================
   MOBILE PRODUCTS & SUBMENUS FIX
===================================== */
/* Ensure the main mobile products container opens */
.product-menu.mobile-active > .mobile-product-menu {
  display: block !important;
  width: 100%;
  background: #fff;
}

.mobile-group {
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.mobile-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 18px;
  border: 0;
  background: #f7f7f7;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.mobile-title::after {
  content: "▼";
  font-size: 10px;
  transition: transform 0.3s ease;
}

.mobile-title.active {
  background: #0e2461;
  color: #fff;
}

.mobile-title.active::after {
  transform: rotate(180deg);
}

/* Force hidden by default, force block when .show is added */
.mobile-links {
  display: none !important;
  background: #ffffff;
  width: 100%;
}

.mobile-links.show {
  display: block !important;
}

.mobile-links a {
  display: block;
  padding: 12px 30px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}

.mobile-links a:hover {
  background: #f5f5f5;
}

/* ==========================================================================
   LAPTOP NAVIGATION REDESIGN (1024px Viewport)
   ========================================================================== */

@media screen and (min-width: 901px) and (max-width: 1024px) {
  /* Container Alignment */
  .container {
    max-width: 980px;
    padding: 0 15px;
  }

  /* --- Top Header Adjustments --- */
  .header-top .container {
    gap: 12px;
  }

  .logo {
    flex: 0 0 190px;
  }

  .header-top .info-box1 p,
  .header-top .info-box p {
    font-size: 13px;
  }

  .social {
    gap: 6px;
  }

  /* --- Main Navigation Items --- */
  .main-nav {
    display: relative !important;
  }

  .nav-menu {
    justify-content: space-between;
    padding: 0 10px;
  }

  .nav-menu > li > a {
    padding: 16px 7px; /* Tightened horizontal padding to fit all items */
    font-size: 0.72rem;
    letter-spacing: -0.2px;
  }

  .enquiry {
    margin-left: 0;
    padding: 10px 10px !important;
  }

  /* Reset product-menu positioning context */
  .product-menu {
    position: static !important;
  }

  .product-panel {
    width: 100% !important; /* Spans neatly within the page container width */
    max-width: 980px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important; /* Centers the mega menu perfectly */
    transform: none !important; /* Clears any previous translateX shifts */
    min-height: 0;
  }

  /* Switch from 4 columns to 2 columns on tablet/small-laptop widths */
  .product-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    padding: 18px 20px;
  }

  .product-group h4 {
    font-size: 13px;
  }

  .product-group a {
    padding: 6px 0;
    font-size: 13px;
  }

  /* --- Manual & Brochure Dropdown Adjustments --- */
  .manual-menu {
    position: relative;
  }

  .manual-panel {
    width: 560px !important;
    left: -80px !important; /* Counteract boundary clipping */
  }

  .manual-columns {
    gap: 0 20px;
    padding: 18px 20px;
  }

  .manual-group h4 {
    font-size: 13px;
  }

  .manual-group a {
    padding: 6px 0;
    font-size: 13px;
  }
}

.contact-card {
  /* background: rgba(15, 46, 74, 0.25); */
  background-color: #2c2b2b;
  padding: 24px 20px;
  border-radius: var(--ft-radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--ft-transition);
  border: 1px solid transparent;
}

.contact-card:hover {
  border-color: #22aeed;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.contact-icon {
  font-size: 17px;
  color: #294594;
  background: rgb(232 231 229 / 93%);
  padding: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 2px;
}

.membership-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  letter-spacing: 0.6px;
}

.membership-text {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

/* Our Locations */

.arrow {
  transition: transform 0.3s ease;
}

a[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

.location-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #b7282c;
}

.location-title {
  font-size: 18px;
  font-weight: 800;
  color: #030303;
  margin-bottom: 10px;
  border-bottom: 2px solid #f1f3f5;
  padding-bottom: 8px;
}

.city-name {
  font-weight: 700;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 5px;
}

.product-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.product-list li {
  padding: 4px 0;
  color: #6c757d;
  font-size: 14px;
}

.product-list li:before {
  content: "✓";
  color: #82370f;
  font-weight: bold;
  margin-right: 8px;
}

.country-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

a.btn-link {
  color: #000000;
  text-decoration: none;
}

a.btn-link:hover {
  color: #fd571c;
  text-decoration: none;
}
.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}
.export-countries-card {
  padding: 24px;
}

.export-countries-card h3 {
  margin-bottom: 20px;
}

.export-flags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
  margin-bottom: 22px;
}

.export-country {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.export-country img {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.export-country span {
  color: #333;
}

.export-countries-card .enquire {
  display: block;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .export-flags {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================
   VAYU VENTS - AXIAL FAN FEATURES
   ================================ */

.axial-features-section {
  position: relative;
  padding: 90px 20px;
  background: #f4f5f6;
  overflow: hidden;
}

.axial-features-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;

  top: -180px;
  right: -100px;
}

.axial-features-section .container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Heading */

.axial-features-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #294594;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.axial-features-heading h2 {
  /* margin: 0;
  color: #171717;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px; */
  font-size: 2rem;
  line-height: 1.2;
  color: #0e2461;
  margin: 0 0 20px;
  text-align: center;
  text-transform: capitalize;
}

.axial-features-heading h2 span {
  color: #294594;
}

.axial-features-heading p {
  max-width: 650px;
  margin: 18px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/* Grid */

.axial-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.axial-features-grid > .axial-feature-card {
  flex: 1 1 calc(33.333% - 14px);
}

/* Cards */

.axial-feature-card {
  position: relative;
  /* min-height: 200px; */
  padding: 30px 28px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.axial-feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0e2461, #00aeef);
  transition: width 0.35s ease;
}

.axial-feature-card:hover {
  transform: translateY(-6px);
  border-color: #ddd;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.axial-feature-card:hover::after {
  width: 100%;
}

/* Number */

.feature-number {
  position: absolute;
  top: 17px;
  right: 20px;
  color: #e9e9e9;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

/* Icon */

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #eaf1fb;
  color: #294594;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.axial-feature-card:hover .feature-icon {
  background: #0e2461;
  color: #fff;
  transform: scale(1.05);
}

/* Text */

.axial-feature-card h3 {
  margin: 0 0 10px;
  color: #222;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.axial-feature-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.75;
}

/* Bottom CTA */

.axial-features-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 35px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #0e2461 0%, #294594 100%);
  border-radius: 4px;
  color: #fff;
}

.axial-features-bottom strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.axial-features-bottom span {
  color: #aaa;
  font-size: 13px;
}

.axial-features-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  background: #00aeef;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  transition: background 0.25s ease;
}

.axial-features-btn:hover {
  background: #ffffff;
  color: #0e2461;
}

.axial-features-btn span {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/* Tablet */

@media (max-width: 900px) {
  .axial-features-grid > .axial-feature-card {
    flex: 1 1 calc(50% - 10px);
  }

  .axial-features-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .axial-features-section {
    padding: 65px 15px;
  }

  .axial-features-heading {
    margin-bottom: 35px;
  }

  .axial-features-heading h2 {
    font-size: 30px;
  }

  .axial-features-heading p {
    font-size: 14px;
  }

  .axial-features-grid {
    gap: 15px;
  }

  .axial-features-grid > .axial-feature-card {
    flex: 1 1 100%;
  }

  .axial-feature-card {
    min-height: auto;
    padding: 25px 22px;
  }

  .axial-features-bottom {
    padding: 22px;
  }

  .axial-features-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ==========================================
   VAYU VENTS - EXPORT LOCATIONS
   Keeps existing single-column combination
   ========================================== */

.vayu-export-section {
  padding: 28px 20px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.vayu-export-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Heading */

.vayu-export-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.vayu-export-title strong {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.vayu-export-line {
  width: 4px;
  height: 22px;
  display: block;
  background: #df202b;
  border-radius: 2px;
}

/* Links */

.vayu-export-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.vayu-export-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;

  color: #0056b3;
  background: #f7f9fc;
  border: 1px solid #e3eaf2;
  border-radius: 3px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.vayu-export-links a:hover {
  color: #ffffff;
  background: #df202b;
  border-color: #df202b;
  transform: translateY(-2px);
}

/* Mobile */

@media (max-width: 768px) {
  .vayu-export-section {
    padding: 25px 15px;
  }

  .vayu-export-inner {
    display: block;
  }

  .vayu-export-title {
    margin-bottom: 16px;
  }

  .vayu-export-links {
    gap: 7px;
  }

  .vayu-export-links a {
    padding: 7px 11px;
    font-size: 12.5px;
  }
}
/* ==========================================
   VAYU VENTS - OMAN EXPORT NOTE
   Keeps existing single-column structure
   ========================================== */

.vayu-oman-note {
  padding: 32px 20px;
  background: #f3f3f3;
}

.vayu-oman-note .container {
  max-width: 1180px;
  margin: 0 auto;
}

.vayu-oman-note-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 25px;
  background: #ffffff;
  border-left: 4px solid #0e2461;
  border-radius: 3px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.045);
}

/* Check Icon */

.vayu-oman-note-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 2px;

  border-radius: 50%;
  background: #0e2461;
  color: #ffffff;

  font-size: 19px;
  font-weight: 700;
}

/* Content */

.vayu-oman-note-content h3 {
  margin: 0 0 8px;

  color: #222222;

  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

.vayu-oman-note-content p {
  margin: 0;

  color: #555555;

  font-size: 14.5px;
  line-height: 1.8;
}

.vayu-oman-note-content strong {
  color: #333333;
  font-weight: 700;
}

/* Mobile */

@media (max-width: 600px) {
  .vayu-oman-note {
    padding: 25px 15px;
  }

  .vayu-oman-note-inner {
    gap: 13px;
    padding: 18px;
  }

  .vayu-oman-note-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;

    font-size: 16px;
  }

  .vayu-oman-note-content h3 {
    font-size: 16px;
  }

  .vayu-oman-note-content p {
    font-size: 13.5px;
    line-height: 1.75;
  }
}
/* =====================================================
   VAYU SIDEBAR — PROFESSIONAL BLUE REDESIGN
   ===================================================== */

.vayu-sidebar {
  position: relative;
  padding-top: 24px;
}

/* subtle top accent strip on the whole card */
.vayu-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(90deg, #0e2461, #294594, #00aeef);
}

/* MAIN TITLE */
.vayu-sidebar-header {
  margin-bottom: 20px;
}

.vayu-sidebar-header h3 {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0e2461;
  letter-spacing: 0.01em;
}

.vayu-sidebar-header-bar {
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 2px;
  background: #00aeef;
}

/* EACH LINK GROUP */
.vayu-side-box {
  margin-bottom: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e9edf3;
}

.vayu-side-box:last-of-type {
  border-bottom: none;
}

.vayu-side-box-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.vayu-side-box-title span {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf1fb;
  color: #294594;
  font-size: 11px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

.vayu-side-box-title h4 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0e2461;
}

.vayu-side-box ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vayu-side-box li {
  position: relative;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px dashed #e4e9f0 !important;
}

.vayu-side-box li:last-child {
  border-bottom: none !important;
}

.vayu-side-box li a {
  position: relative;
  display: block;
  margin: 0 !important;
  padding: 8px 5px 8px 18px !important;
  color: #333d4d !important;
  font-size: 13.5px;
  line-height: 1.5;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease,
    background 0.2s ease;
  border-radius: 4px;
}

.vayu-side-box li a::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: #00aeef;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.vayu-side-box li a:hover {
  color: #0e2461 !important;
  background: #f0f7fd;
  padding-left: 22px !important;
}

.vayu-side-box li a:hover::before {
  color: #294594;
  transform: translateX(3px);
}

/* QUOTE BOX */
.vayu-quote-box {
  margin: 24px 0;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0e2461 0%, #294594 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(14, 36, 97, 0.25);
}

.vayu-quote-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #00aeef;
  font-size: 20px;
  font-weight: 700;
}

.vayu-quote-text h4 {
  margin: 0 0 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
}

.vayu-quote-text p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.vayu-quote-box .enquire {
  display: inline-block;
  padding: 11px 22px;
  background: #00aeef;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.vayu-quote-box .enquire:hover {
  background: #0e2461;
}

/* CONTACT BOX */
.vayu-contact-box {
  padding: 20px;
  border-radius: 8px;
  background: #f5f8fc;
  border: 1px solid #e1e9f3;
}

.vayu-contact-box h4 {
  margin: 0 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #0e2461;
}

.vayu-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #dfe6f0;
}

.vayu-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vayu-contact-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf1fb;
  color: #294594;
  font-size: 14px;
}

.vayu-contact-item small {
  display: block;
  font-size: 11.5px;
  color: #7a8697;
  margin-bottom: 2px;
}

.vayu-contact-item a,
.vayu-contact-item strong {
  font-size: 13.5px;
  font-weight: 600;
  color: #0e2461;
  text-decoration: none;
}

.vayu-contact-item a:hover {
  color: #00aeef;
}

/* MOBILE */
@media (max-width: 480px) {
  .vayu-sidebar {
    padding-top: 20px;
  }
  .vayu-quote-box,
  .vayu-contact-box {
    padding: 18px;
  }
}

/* =====================================================
   STATS BAR — flexbox
   ===================================================== */

.stats-bar-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}

.stats-bar-flex > div {
  flex: 1 1 calc(20% - 16px);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .stats-bar-flex > div {
    flex: 1 1 calc(33.333% - 14px);
  }
}

@media (max-width: 480px) {
  .stats-bar-flex > div {
    flex: 1 1 calc(50% - 10px);
  }
}

/* =====================================================
   RELATED PRODUCTS GRID — flexbox
   ===================================================== */

.related-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.related-product-card {
  flex: 1 1 calc(25% - 18px);
  box-sizing: border-box;
  background: #f4f6f9;
  border: 1px solid #e7eaee;
  border-radius: 10px;
  padding: 20px;
}

.related-product-image {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .related-product-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 560px) {
  .related-product-card {
    flex: 1 1 100%;
  }
}

/* =====================================================
   RELATED PRODUCTS — compact variant (inline, .lede left column)
   ===================================================== */

.axial-inline-related {
  margin: 34px 0 8px;
}

.related-products-grid--compact {
  gap: 16px;
  margin-top: 0;
}

.related-product-card--compact {
  flex: 1 1 calc(33.333% - 11px);
  padding: 14px;
  text-align: center;
}

.related-product-image--compact {
  height: 90px;
  padding: 10px;
}

.related-product-card--compact h4 {
  margin: 12px 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #0a0a0a;
}

.related-product-card--compact a {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #0056b3;
  text-decoration: none;
}

.related-product-card--compact a:hover {
  color: #0e2461;
}

@media (max-width: 560px) {
  .related-product-card--compact {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 380px) {
  .related-product-card--compact {
    flex: 1 1 100%;
  }
}
/* =========================================================
   RELATED PRODUCTS - YOU MAY ALSO NEED
   ========================================================= */

.related-products {
  width: 100%;
  padding: 70px 40px;
  background: #ffffff;
  box-sizing: border-box;
}

.related-products-heading {
  margin: 0 0 30px;
}

.related-products-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
  color: #0e2461;
  text-align: center;
  font-weight: 700;
}

/* =========================================================
   RELATED PRODUCTS GRID
   ========================================================= */

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

/* =========================================================
   RELATED PRODUCT CARD
   ========================================================= */

.related-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;

  background: #f4f6f9;
  border: 1px solid #e7eaee;
  border-radius: 10px;

  padding: 20px;
  box-sizing: border-box;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Desktop hover */

.related-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 36, 97, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.related-product-image {
  width: 100%;
  height: 160px;

  background: #ffffff;
  border-radius: 8px;

  padding: 18px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.related-product-image img {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 125px;

  object-fit: contain;

  transition: transform 0.3s ease;
}

/* Slight image movement on desktop */

.related-product-card:hover .related-product-image img {
  transform: scale(1.04);
}

/* =========================================================
   PRODUCT CONTENT
   ========================================================= */

.related-product-content {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding-top: 18px;
}

/* Product title */

.related-product-content h4 {
  margin: 0 0 9px;

  color: #0a0a0a;

  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

/* Product description */

.related-product-content p {
  margin: 0 0 18px;

  color: #667085;

  font-size: 13.5px;
  line-height: 1.55;
}

/* =========================================================
   VIEW DETAILS
   ========================================================= */

.related-product-content a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: auto;

  color: #0056b3;

  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.related-product-content a span {
  font-size: 17px;
  line-height: 1;
}

.related-product-content a:hover {
  color: #0e2461;
  gap: 9px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .related-products {
    padding: 60px 25px;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .related-product-card {
    padding: 18px;
  }

  .related-product-image {
    height: 150px;
  }

  .related-product-content h4 {
    font-size: 16px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 576px) {
  .related-products {
    padding: 45px 15px;
  }

  .related-products-heading {
    margin-bottom: 24px;
  }

  .related-products-heading h2 {
    font-size: 27px;
    line-height: 1.3;
  }

  /*
     IMPORTANT:
     One card per row prevents horizontal overflow
     and makes the content much easier to read.
  */

  .related-products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .related-product-card {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
  }

  .related-product-image {
    height: 155px;
    padding: 15px;
  }

  .related-product-image img {
    max-height: 125px;
  }

  .related-product-content {
    padding-top: 16px;
  }

  .related-product-content h4 {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .related-product-content p {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 15px;
  }

  .related-product-content a {
    font-size: 14px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 375px) {
  .related-products {
    padding: 40px 12px;
  }

  .related-products-heading h2 {
    font-size: 25px;
  }

  .related-product-card {
    padding: 14px;
  }

  .related-product-image {
    height: 145px;
  }
}

ul.b {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;

  list-style-type: square !important;
  list-style-position: outside !important;

  padding-left: 25px !important;
  margin: 0 !important;

  column-gap: 50px !important;
  row-gap: 10px !important;
}

ul.b li {
  display: list-item !important;
  list-style-type: square !important;
  list-style-position: outside !important;

  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vv-tabs .vv-tab-panel ul.b {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-auto-flow: row !important;

  width: 100% !important;
  box-sizing: border-box !important;

  margin: 20px 0 !important;
  padding: 0 0 0 20px !important;

  list-style: none !important;
}

/* ===== FORCE EACH LI ===== */

.vv-tabs .vv-tab-panel ul.b li {
  position: relative !important;

  display: block !important;
  width: auto !important;
  float: none !important;

  margin: 0 0 10px 0 !important;
  padding: 0 20px 0 15px !important;

  list-style: none !important;
}

/* ===== SQUARE BULLET ===== */

.vv-tabs .vv-tab-panel ul.b li::before {
  content: "" !important;

  position: absolute !important;
  left: 0 !important;
  top: 8px !important;

  width: 6px !important;
  height: 6px !important;

  background: #000 !important;
  border: 0 !important;

  display: block !important;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .vv-tabs .vv-tab-panel ul.b {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   NEWSLETTER — inserted immediately before the footer
   Keeps the existing footer fonts and column structure untouched.
   ========================================================================== */

.newsletter-container {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 4.8fr);
  align-items: center;
  gap: 28px;
}

.newsletter-copy h2 {
  margin: 0;
  color: #294594;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.newsletter-copy p {
  margin: 3px 0 0;
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
}

.newsletter-form {
  min-width: 0;
  display: grid;
  grid-template-columns:
    minmax(160px, 1fr) minmax(160px, 1fr) minmax(260px, 1.35fr)
    auto;
  align-items: center;
  gap: 20px;
}

.newsletter-field {
  display: block;
  min-width: 0;
}

.newsletter-field input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #e6e8ee;
  border-radius: 0;
  background: #fff;
  color: #333;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.newsletter-field input:focus {
  border-color: #294594;
  box-shadow: 0 0 0 2px rgba(41, 69, 148, 0.12);
}

.newsletter-field input::placeholder {
  color: #111;
  opacity: 1;
}

.newsletter-captcha {
  height: 76px;
  min-width: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #c9c9c9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.captcha-checkbox {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  border: 2px solid #555;
  background: #fff;
}

.captcha-text {
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}

.captcha-brand {
  margin-left: auto;
  width: 54px;
  flex: 0 0 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #777;
  line-height: 1;
}

.captcha-logo {
  color: #4c73c9;
  font-size: 30px;
  line-height: 25px;
  font-weight: 700;
}

.captcha-brand small {
  margin-top: 3px;
  font-size: 8px;
}

.newsletter-submit {
  height: 52px;
  min-width: 182px;
  padding: 0 22px 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 28px;
  background: #294594;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.newsletter-submit:hover {
  background: #0e2461;
  transform: translateY(-1px);
}

.newsletter-arrow {
  font-size: 22px;
  line-height: 1;
  color: #bfc9e5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer contact row: keep all four contact cards aligned on desktop,
   with the map occupying the same vertical band. */
@media (min-width: 1024px) {
  .footer-middle-flex {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 32%);
    align-items: stretch !important;
    gap: 24px !important;
  }

  .contact-methods-wrapper {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
    align-items: stretch;
  }

  .contact-card {
    height: 100%;
  }

  .footer-middle-flex > .membership-card {
    width: 100% !important;
    min-height: 100%;
  }

  .footer-middle-flex > .membership-card iframe {
    flex: 1 1 auto;
    min-height: 220px;
    height: 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .newsletter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-captcha {
    width: 100%;
  }

  .newsletter-submit {
    width: 100%;
  }

  .contact-methods-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .newsletter-section {
    padding: 28px 16px;
  }

  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .newsletter-copy {
    text-align: center;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .newsletter-field input,
  .newsletter-submit {
    height: 50px;
  }

  .newsletter-captcha {
    height: 72px;
  }

  .newsletter-submit {
    width: 100%;
  }
}
