/* ========================
   Global Reset & Base
======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #0a0a14;
  --color-surface: #12122a;
  --color-primary: #4f46e5;
  --color-primary-h: #6366f1;
  --color-accent: #7c3aed;
  --color-text: #e2e8f0;
  --color-muted: #94a3b8;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-card: rgba(255, 255, 255, 0.04);
  --font-main: 'Inter', sans-serif;
  --nav-height: 134px;
  --radius-md: 12px;
  --radius-full: 9999px;
  --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  /* background-color: var(--color-bg); */
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.font-600 {
  font-weight: 600;
}


.service-banner-wave svg {
    max-width: 100%;
}

.partner-img-wrapper {
    height: 100px;
}

.partner-card img {
    width: 100% !important;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
    max-width: 150px;
    max-height: 70px;
}



/* ========================
   NAVBAR
======================== */
#hydra-navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  /* max-width: 1200px; */
  height: 110px;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  z-index: 1030;
  padding: 0 1.5rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

#hydra-navbar.scrolled {
  background: rgba(10, 10, 20, 0.90);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  top: 12px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
  gap: 1.5rem;
}

/* Brand */
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b2d31;
  border-radius: 8px;
  padding: 4px 10px;
  font-family: var(--font-main);
  font-weight: 800;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.brand-logo-card .brand-h {
  color: #ffffff;
}

.brand-logo-card .brand-y {
  color: #f97316;
}

.navbar-brand-custom:hover .brand-logo-card {
  transform: scale(1.05);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.brand-name span {
  color: var(--color-primary-h);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .nav-item {
  position: relative;
}

.nav-links .nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-links .nav-link i {
  font-size: 0.7rem;
  transition: transform 0.25s;
}

.nav-links .nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 290px;
  background: rgba(18, 18, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-dropdown a i {
  font-size: 1rem;
  color: #fff;
  transition: transform 0.25s ease;
  width: 20px;
  text-align: center;
}

.nav-dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown a:hover i {
  transform: scale(1.15);
  color: #fff;
}

/* CTA Button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.55);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1029;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-border);
}

.mobile-menu .mobile-sub {
  padding-left: 1.5rem;
  font-size: 0.9rem;
}

.mobile-menu .mobile-cta {
  margin-top: 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* Body padding for fixed nav */
body {
  padding-top: var(--nav-height);
}

/* ========================
   RESPONSIVE BREAKPOINTS
======================== */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 576px) {
  .brand-name {
    font-size: 1.15rem;
  }
}

/* ========================
   FOOTER
======================== */
#hydra-footer {
  position: relative;
  /* background: linear-gradient(180deg, #080812 0%, #0b0f2a 60%, #0e1233 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06); */
  font-family: var(--font-main);
  color: #94a3b8;
  overflow: hidden;
  background-image: url(..//images/footer-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Blue radial glow at bottom center */
.footer-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(59, 80, 200, 0.22) 0%, rgba(79, 70, 229, 0.10) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/* Footer Logo */
/* Footer logo style matches header */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.3px;
}

.footer-brand-name span {
  color: var(--color-primary-h);
  font-style: italic;
}

/* Tagline */
.footer-tagline {
  font-size: 0.78rem;
  line-height: 1.75;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

/* Contact list under tagline */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-list li a,
.footer-contact-list li span {
  font-size: 0.78rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact-list li a:hover {
  color: #e2e8f0;
}

/* Column headings */
.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
  margin-bottom: 0.85rem;
}

/* Link lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li a {
  font-size: 0.8rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}


/* Bottom bar */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

.footer-copy {
  font-size: 0.73rem;
  color: #b9bfc8;
  letter-spacing: 0.2px;
}

.footer-copy a {
  color: var(--color-primary-h);
  text-decoration: none;
}

/* Footer responsive */
@media (max-width: 767px) {
  .footer-top {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .elitech-section {
    padding: 3rem 0 !important;
  }
}

/* ========================
   LOGO SECTION & CAROUSEL
======================== */
.logo-section {
  position: relative;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
  padding: 3.5rem 0;
  overflow: hidden;
}

.logo-section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #212121;
  margin-bottom: 30px;
  /* matching subheader color */
}

.customer-logo {
  max-height: 70px;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
}

/* .customer-logo:hover {
  filter: grayscale(0%) opacity(0.95);
  transform: scale(1.05);
} */

@media (max-width: 767px) {
  .logo-section {
    padding: 2.5rem 0;
  }

  .customer-logo {
    max-height: 38px;
  }
}

/* ========================
   HERO SECTION
======================== */
.hero-section {
  position: relative;
  margin-top: calc(-1 * var(--nav-height));
  padding: calc(3rem + var(--nav-height)) 0 4rem 0;
  background: radial-gradient(140% 140% at 50% -20%, #0e0e28 0%, #05050f 70%, #030307 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Left Content Column */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #a5b4fc;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #fff;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.gradient-text {
  color: #94B0FF;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 540px;
}

/* CTAs */
.hero-ctas .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}

.hero-ctas .btn i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.hero-ctas .btn-primary-cta {
  background: #ffffff;
  color: #05050f;
  border: 1px solid #ffffff;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.hero-ctas .btn-primary-cta:hover {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.hero-ctas .btn-primary-cta:hover i {
  transform: translateX(4px);
}

.hero-ctas .btn-outline-cta {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  backdrop-filter: blur(10px);
}

.hero-ctas .btn-outline-cta:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.3);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.15);
}

.hero-ctas .btn-outline-cta:hover i {
  transform: translateX(4px);
}

/* Compliance Strip */
.hero-compliance .compliance-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4a5a75;
  font-weight: 700;
}

.hero-compliance img {
  max-height: 70px;
}

.compliance-logos-img {
  height: 42px;
  width: auto;
  filter: invert(1) brightness(3.5) !important;
  opacity: 0.85 !important;
  transition: all 0.3s ease;
}

.compliance-logos-img:hover {
  opacity: 1;
}

/* Right Column Overlapping Images */
.hero-glow-bg {
  pointer-events: none;
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: 50px;
  background: #4E2FFF;
  filter: blur(140.849px);
  right: 0;
}

.hero-glow-bg1 {
  pointer-events: none;
  position: absolute;
  width: 250px;
  height: 250px;
  background: #4E2FFF;
  filter: blur(140.849px);
  right: 0;
  top: 50px;
}

.overlapping-images-wrapper {
  position: relative;
  height: 480px;
  width: 100%;
  z-index: 1;
}

.overlapping-images-wrapper .image-box {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(79, 70, 229, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.overlapping-images-wrapper .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.overlapping-images-wrapper .vertical-box {
  left: 8%;
  top: 15%;
  width: 171px;
  height: 302px;
  z-index: 2;
}

.overlapping-images-wrapper .horizontal-box {
  left: 42%;
  top: 5%;
  width: 231px;
  height: 267px;
  z-index: 1;
}

.overlapping-images-wrapper .image-box:hover {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(99, 102, 241, 0.2);
  z-index: 5;
}

.overlapping-images-wrapper .image-box:hover img {
  transform: scale(1.04);
}

/* Stats Row */
.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.stat-card {
  padding: 0.5rem;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.stat-arrow {
  font-size: 1rem;
  color: #f97316;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.stat-card:hover .stat-arrow {
  transform: translate(3px, -3px);
  color: #ffffff;
}

.stat-label {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-muted);
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .hero-section {
    padding-top: calc(7rem + var(--nav-height));
    padding-bottom: 4.5rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .overlapping-images-wrapper {
    height: 340px;
    max-width: 440px;
    margin: 3rem auto 0;
  }

  .overlapping-images-wrapper .vertical-box {
    width: 130px;
    height: 230px;
    left: 5%;
  }

  .overlapping-images-wrapper .horizontal-box {
    width: 175px;
    height: 202px;
    left: 42%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: calc(4rem + var(--nav-height));
    padding-bottom: 3.5rem;
  }

  .hero-badge {
    padding: 5px 12px;
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-compliance {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 0.5rem !important;
  }

  .overlapping-images-wrapper {
    height: 250px;
    max-width: 320px;
  }

  .overlapping-images-wrapper .vertical-box {
    width: 95px;
    height: 168px;
  }

  .overlapping-images-wrapper .horizontal-box {
    width: 128px;
    height: 148px;
  }

  .stat-number {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

/* ========================
   OFFERS / SERVICES SECTION
======================== */
.offers-section {
  padding: 5.5rem 0;
  background: #f0f2f8;
}

/* Section label */
.offers-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4f46e5;
}

/* Section title */
.offers-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #111827;
  margin: 0;
}

/* Wave SVG decoration */
.offers-wave {
  margin: 0.6rem auto 0;
  width: 100px;
}

.offers-wave svg {
  width: 100%;
  height: auto;
}

/* ── Service Card ── */
.offer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.10);
  border-color: rgba(79, 70, 229, 0.12);
}

/* Icon wrapper */
.offer-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon-wrap {
  transform: scale(1.1);
}

/* Icon color themes */
.offer-icon--pink {
  background: #ffe4ea;
  color: #e11d48;
}

.offer-icon--purple {
  background: #ede9fe;
  color: #7c3aed;
}

.offer-icon--red {
  background: #fee2e2;
  color: #dc2626;
}

.offer-icon--teal {
  background: #ccfbf1;
  color: #0f766e;
}

.offer-icon--olive {
  background: #ecfccb;
  color: #4d7c0f;
}

.offer-icon--blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.offer-icon--orange {
  background: #ffedd5;
  color: #ea580c;
}

.offer-icon--violet {
  background: #ede9fe;
  color: #6d28d9;
}

.offer-icon--cyan {
  background: #cffafe;
  color: #0e7490;
}

/* Card title */
.offer-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.35;
}

/* Card description */
.offer-card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6b7280;
  margin: 0.6rem 0 0;
  flex: 1;
}

/* View Page link */
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.offer-link i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.offer-link:hover {
  color: #4338ca;
  gap: 8px;
}

.offer-link:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 991px) {
  .offers-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .offers-section {
    padding: 4rem 0;
  }

  .offers-title {
    font-size: 1.75rem;
  }

  .offer-card {
    padding: 1.5rem;
  }
}

/* ========================
   WHY HYDRA SECTION
======================== */
.why-hydra-section {
  padding-bottom: 5.5rem;
  background: #ffffff;
}

/* Section label */
.why-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4f46e5;
}

/* Section heading */
.why-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #111827;
  line-height: 1.2;
  margin: 0;
}

/* Wave */
.why-wave {
  margin: 0.8rem auto 0;
  width: 100px;
}

.why-wave svg {
  width: 100%;
  height: auto;
}

/* ── Narrow centered zigzag wrapper ── */
.why-items {
  max-width: 12hy00px;
  margin: 0 auto;
}

/* Row: no bottom margin — connector handles gap */
.why-row {
  margin-bottom: 0;
  padding: 0.3rem 0;
}

/* ── White card (horizontal flex) ── */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #dde3ee;
  border-radius: 14px;
  padding: 1.35rem 1.6rem;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.09);
}

/* ── Icon square ── */
.why-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-icon--blue {
  background: #e0eaff;
  color: #3b5bdb;
}

.why-icon--indigo {
  background: #edf2ff;
  color: #4f46e5;
}

/* Card body text */
.why-card-body {
  flex: 1;
  min-width: 0;
}

.why-card-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
}

/* ── Large numbers ── */
.why-number {
  display: block;
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-weight: 900;
  color: #4f46e5;
  line-height: 1;
  letter-spacing: -3px;
}

/* ── Diagonal dashed connectors ── */
.why-connector {
  display: block;
  width: 60px;
  height: 40px;
  margin: 2px 0;
}

.why-connector svg {
  width: 100%;
  height: 100%;
}

/*
  Right connector: appears after ODD rows (card=col7-left, num=col5-right).
  Positioned at ~52% — just past the card column boundary (58.33%),
  visually bridging toward the number column on the right.
*/
.why-connector--right {
  margin-left: 52%;
}

/*
  Left connector: appears after EVEN rows (num=col5-left, card=col7-right).
  Positioned at ~38% — inside the boundary zone between number column
  and the card column start, bridging back left.
*/
.why-connector--left {
  margin-left: 38%;
}

/* ── Responsive: Tablet (768px–991px) ── */
@media (max-width: 991px) {
  .why-title {
    font-size: 2rem;
  }

  .why-items {
    max-width: 100%;
  }

  /* Connectors hidden — layout stacks */
  .why-connector {
    display: none;
  }

  .why-row {
    margin-bottom: 1.25rem;
  }

  /* Numbers sit below their card on tablet */
  .why-number {
    font-size: 3rem;
    letter-spacing: -2px;
  }
}

/* ── Responsive: Mobile (<768px) ── */
@media (max-width: 767px) {
  .why-hydra-section {
    padding-bottom: 4rem;
  }

  .why-title {
    font-size: 1.75rem;
  }

  .why-row {
    margin-bottom: 1.5rem;
  }

  /* Each row stacks fully: card on top, number below */
  .why-row .col-lg-7,
  .why-row .col-lg-5 {
    width: 100%;
  }

  /* On mobile, number always renders below card regardless of DOM order */
  .why-row>[class*="order-2"] {
    order: 2 !important;
  }

  .why-row>[class*="order-1"] {
    order: 1 !important;
  }

  .why-number {
    font-size: 2.5rem;
    letter-spacing: -1.5px;
    text-align: center !important;
    margin-top: 0.5rem;
  }

  .why-card {
    padding: 1.1rem 1.25rem;
    gap: 0.85rem;
  }

  .why-icon-wrap {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ========================
   RESPONSIBILITY SECTION
======================== */
.responsibility-section {
  padding-bottom: 6.5rem;
  background: #ffffff;
}

/* Label */
.resp-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3b82f6;
  /* blue accent */
}

/* Title */
.resp-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #1f2937;
  margin: 0;
}

/* Wave */
.resp-wave {
  margin: 0.6rem auto 0;
  width: 100px;
}

.resp-wave svg {
  width: 100%;
  height: auto;
}

.resp-wave svg path {
  stroke: #3b82f6;
}

/* responsibility-grid layout */
.responsibility-grid {
  border: 1px solid #d6e0f7;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
}

.responsibility-col {
  padding: 3.5rem 2.25rem;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.responsibility-col:not(:last-child) {
  border-right: 1px solid #d6e0f7;
}

.responsibility-col:hover {
  background-color: #f8fafc;
}

.resp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* Circular icon */
.resp-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eff6ff;
  /* soft blue circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #3b82f6;
  /* icon color */
  flex-shrink: 0;
  transition: transform 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.08);
}

.responsibility-col:hover .resp-icon-wrap {
  transform: scale(1.08);
  background: #dbeafe;
}

/* Card title */
.resp-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.35;
}

/* Card description */
.resp-card-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4b5563;
  margin: 0.75rem 0 0;
  flex: 1;
}

/* LEARN MORE link */
.resp-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.resp-link:hover {
  color: #2563eb;
  letter-spacing: 2px;
}

/* Responsive adjustments for layout and borders */
@media (max-width: 991px) {
  .responsibility-section {
    padding-bottom: 4.5rem;
  }

  .resp-title {
    font-size: 2.1rem;
  }

  .responsibility-col {
    padding: 2.5rem 1.75rem;
  }

  .responsibility-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #d6e0f7;
  }
}

@media (max-width: 576px) {
  .responsibility-section {
    padding-bottom: 4rem;
  }

  .resp-title {
    font-size: 1.75rem;
  }
}

/* ========================
   ISO STANDARDS & COMPLIANCE SECTION
======================== */
.compliance-certs-section {
  padding-top: 6.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.compliance-certs-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3b82f6;
  /* matching the label color in the screenshot */
}

.compliance-certs-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #1f2937;
  /* slightly darker neutral */
  margin: 0;
}

.compliance-certs-wave {
  margin: 0.6rem auto 0;
  width: 100px;
}

.compliance-certs-wave svg {
  width: 100%;
  height: auto;
}

.compliance-certs-wave svg path {
  stroke: #3b82f6;
  /* matching blue wave color */
}

/* Left Column: Tilted Image Layout */
.compliance-expert-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  /* slightly larger for premium feel */
  margin: 0 auto;
}

.compliance-expert-bg-shape {
  position: absolute;
  top: 5%;
  left: -5%;
  width: 100%;
  height: 94%;
  background: #dbeafe;
  /* solid light blue background matching image bg */
  border-radius: 24px;
  z-index: 1;
  transform: rotate(-3.5deg) translate(-10px, 10px);
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(37, 99, 235, 0.03);
}

.compliance-expert-image-box {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  background: #dbeafe;
  transform: rotate(-3.5deg);
  /* tilted to match bg shape and screenshot layout */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: none;
}

.compliance-expert-image-box:hover {
  transform: rotate(-3.5deg) translateY(-4px);
}

.compliance-expert-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Right Column: Staggered Cards Layout */
.compliance-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compliance-card {
  display: flex;
  align-items: center;
  /* vertically center icons & text like in screenshot */
  gap: 1.25rem;
  background: #ffffff;
  padding: 1.25rem 1.75rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.015),
    0 1px 3px rgba(15, 23, 42, 0.01);
  border: 1px solid rgba(226, 232, 240, 0.7);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: 580px;
  /* slightly wider cards to fill space */
  width: 100%;
}

.compliance-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.05),
    0 0 1px rgba(59, 130, 246, 0.1);
}

.compliance-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eff6ff;
  /* soft blue circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #3b82f6;
  /* bright blue checkmark badge */
  flex-shrink: 0;
  transition: transform 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.08);
}

.compliance-card:hover .compliance-card-icon-wrap {
  transform: scale(1.08);
  background: #dbeafe;
}

.compliance-card-body {
  flex: 1;
  min-width: 0;
}

.compliance-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.2rem 0;
  line-height: 1.3;
}

.compliance-card-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0;
}

/* Staggering offsets on large viewports */
@media (min-width: 992px) {
  .compliance-card-stagger-left {
    align-self: flex-start;
  }

  .compliance-card-stagger-right {
    align-self: flex-start;
    margin-left: 6rem;
    /* Stagger shift */
  }
}

/* Tablet & Mobile Adjustments */
@media (max-width: 991px) {
  .compliance-certs-section {
    padding-top: 4.5rem 0;
  }

  .compliance-certs-title {
    font-size: 2.1rem;
  }

  .compliance-expert-wrapper {
    max-width: 360px;
    margin-bottom: 2rem;
  }

  .compliance-card {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .compliance-certs-section {
    padding: 3.5rem 0;
  }

  .compliance-certs-title {
    font-size: 1.75rem;
  }

  .compliance-card {
    padding: 1.1rem 1.25rem;
    gap: 0.85rem;
  }

  .compliance-card-icon-wrap {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
}

/* ========================
   TESTIMONIALS SECTION
======================== */
.testimonial-section {
  padding: 6.5rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3b82f6;
  /* matching the label color in the screenshot */
}

.testimonial-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #1f2937;
  margin: 0;
}

.testimonial-wave {
  width: 100px;
}

.testimonial-wave svg {
  width: 100%;
  height: auto;
}

.testimonial-wave svg path {
  stroke: #3b82f6;
}

/* Custom Navigation Buttons */
.testimonial-carousel-nav {
  display: inline-flex;
  gap: 12px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-nav-btn:hover {
  background: #f8fafc;
  color: #2563eb;
  border-color: #cbd5e1;
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.testimonial-nav-btn:active {
  transform: translateY(0);
}

/* Testimonial Cards Layout */
.testimonial-slider .item {
  padding: 15px 15px 30px 15px;
  /* bottom padding allows shadow to show fully */
}

.testimonial-card {
  background: transparent;
  padding: 2.25rem 2rem;
  border-radius: 20px;
  border: 1px solid transparent;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
}

/* Featured card pops out with white background and shadow as in the screenshot */
.testimonial-card-featured {
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08),
    0 1px 3px rgba(15, 23, 42, 0.02);
  border-color: rgba(226, 232, 240, 0.8);
}

/* Hover effect on any card makes it white with rich shadow */
.testimonial-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08),
    0 0 1px rgba(59, 130, 246, 0.1);
}

.testimonial-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #94a3b8;
  display: block;
  font-weight: 500;
}

.testimonial-divider {
  border: 0;
  border-top: 1px solid #f1f5f9;
  margin: 1.25rem 0;
  opacity: 1;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #fbbf24;
  /* yellow/gold stars */
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .testimonial-section {
    padding: 4.5rem 0;
  }

  .testimonial-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 4rem 0;
  }

  .testimonial-carousel-nav {
    margin-top: 1rem;
  }

  .testimonial-title {
    font-size: 1.75rem;
  }
}

/* ========================
   FAQ ACCORDION SECTION
======================== */
.faq-section {
  padding-bottom: 6.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3b82f6;
  /* matching the label color in the screenshot */
}

.faq-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #1f2937;
  margin: 0;
}

.faq-wave {
  width: 100px;
  margin: 0.6rem auto 0;
}

.faq-wave svg {
  width: 100%;
  height: auto;
}

.faq-wave svg path {
  stroke: #3b82f6;
}

/* Accordion Outer Container */
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  /* space between individual accordion cards */
  background: transparent;
}

/* Individual Accordion Items */
.faq-accordion-item {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid transparent !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035) !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-accordion-item:hover {
  border-color: rgba(59, 130, 246, 0.15) !important;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.055) !important;
}

/* Trigger Button Styles */
.faq-accordion-button {
  background-color: #ffffff !important;
  color: #1f2937 !important;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.65rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
}

.faq-accordion-button:focus {
  box-shadow: none !important;
}

/* Hide Bootstrap's default chevron icon */
.faq-accordion-button::after {
  display: none !important;
}

/* Custom Icon styling */
.faq-accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}

/* Plus sign using horizontal and vertical bars */
.faq-accordion-icon::before,
.faq-accordion-icon::after {
  content: "";
  position: absolute;
  background-color: #1f2937;
  /* dark grey bar */
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

/* Horizontal bar */
.faq-accordion-icon::before {
  width: 16px;
  height: 2px;
}

/* Vertical bar */
.faq-accordion-icon::after {
  width: 2px;
  height: 16px;
}

/* When expanded: rotate the vertical bar to match the horizontal bar, making a minus sign! */
.faq-accordion-button:not(.collapsed) .faq-accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
  /* hides the vertical bar to leave only horizontal bar, which is a minus sign! */
}

/* Also animate the horizontal bar to slide / fade if needed, or just let it remain */
.faq-accordion-button:not(.collapsed) .faq-accordion-icon::before {
  background-color: #2563eb;
  /* make the minus sign blue! */
}

/* Active header text styling */
.faq-accordion-button:not(.collapsed) {
  color: #1f2937 !important;
  /* keep text dark when expanded */
  background-color: #ffffff !important;
}

/* Accordion Body / Content Styles */
.faq-accordion-body {
  padding: 0 2rem 1.75rem 2rem;
  /* remove top padding, align with header */
  font-size: 0.95rem;
  line-height: 1.65;
  color: #64748b;
  /* muted dark grey text */
  background: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .faq-section {
    padding-bottom: 4.5rem;
  }

  .faq-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding-bottom: 4rem;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-accordion-button {
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
  }

  .faq-accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

/* ========================
   SECTION LEARN MORE LINKS
======================== */
.section-learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-learn-more-link i {
  font-size: 0.82rem;
  transition: transform 0.3s ease;
}

.section-learn-more-link:hover {
  color: #2563eb;
  gap: 10px;
}

.section-learn-more-link:hover i {
  transform: translateX(4px);
}

.offers-learn-more,
.why-learn-more,
.resp-learn-more,
.compliance-certs-learn-more,
.faq-learn-more,
.testimonial-learn-more {
  text-align: center;
  margin-top: 0.5rem;
}

/*.customer-logo--tranzone {*/
/*  transform: scale(1.6);*/
/*}*/

/* ========================
   SERVICE DETAIL PAGES
   ======================== */
.service-detail-section {
  background: radial-gradient(130% 130% at 50% 0%, #0d0d26 0%, #050511 60%, #020206 100%);
  min-height: 100vh;
  color: var(--color-text);
  padding-top: 3.5rem !important;
}

/* Breadcrumbs */
.service-breadcrumb {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  display: inline-flex;
}

.service-breadcrumb .breadcrumb-item a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.service-breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.service-breadcrumb .breadcrumb-item.active {
  color: var(--color-primary-h);
  font-size: 0.85rem;
  font-weight: 600;
}

.service-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.2);
}

/* Sidebar Service Card */
.service-sidebar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.sidebar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.85rem;
}

.sidebar-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.sidebar-item-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sidebar-item-icon {
  font-size: 1.1rem;
  color: var(--color-primary-h);
  transition: transform 0.3s ease;
}

.sidebar-item-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.sidebar-arrow {
  font-size: 0.8rem;
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sidebar-menu-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sidebar-menu-item:hover .sidebar-item-icon {
  transform: scale(1.1);
}

.sidebar-menu-item:hover .sidebar-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.sidebar-menu-item.active {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(124, 58, 237, 0.2));
  border-color: rgba(79, 70, 229, 0.4);
  color: #fff;
}

.sidebar-menu-item.active .sidebar-item-icon {
  color: #fff;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
}

.sidebar-menu-item.active .sidebar-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: var(--color-primary-h);
}

/* Sidebar Call To Action Card */
.sidebar-cta-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0f0f2d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-glow-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, rgba(124, 58, 237, 0.05) 50%, transparent 80%);
  pointer-events: none;
}

.cta-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.cta-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.cta-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.btn-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 1.5rem;
  background: #fff;
  color: #050511 !important;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  transition: all 0.3s ease;
}

.btn-sidebar-cta:hover {
  background: transparent;
  color: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.btn-sidebar-cta:hover i {
  transform: translateX(4px);
}

/* Service Page Content */
.service-content-wrapper {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.service-page-badge {
  background: transparent !important;
  border-color: #fff !important;
  color: #fff !important;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #fff;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 70%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}

.service-description .lead-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-muted);
}

.badge-standard-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
}

.service-section-divider {
  border-color: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.section-sub-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

/* Benefit Bullet Cards */
.benefit-bullet-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.benefit-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  flex-shrink: 0;
}

.benefit-number {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary-h);
}

.benefit-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.benefit-bullet-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-2px);
}

.benefit-bullet-card:hover .benefit-icon-box {
  background: var(--color-primary-h);
  border-color: var(--color-primary-h);
}

.benefit-bullet-card:hover .benefit-number {
  color: #fff;
}

.benefit-bullet-card:hover .benefit-text {
  color: #fff;
}

/* Responsive adjustments for service details */
@media (max-width: 767px) {
  .service-detail-section {
    padding-top: 2rem !important;
  }

  .service-content-wrapper {
    padding: 1.75rem;
  }

  .service-title {
    font-size: 1.95rem;
  }

  .service-subtitle {
    font-size: 0.98rem;
  }
}

/* ========================
   ABOUT PAGE
   ======================== */
.about-hero-section {
  background: radial-gradient(120% 120% at 50% 0%, #0d0d26 0%, #050511 70%, #020206 100%);
  min-height: 50vh;
  color: var(--color-text);
  padding-top: 5.5rem !important;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.15;
}

.about-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 780px;
  margin: 0 auto;
}

.about-content-section {
  background: #050511;
}

.about-info-box .info-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--color-muted);
}

.about-stats-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  height: 48px;
  align-self: center;
}

.about-glow-card {
  background: #0f0f2d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.promise-quote {
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: #e2e8f0;
}

.promise-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary-h);
}

.about-values-section {
  background: #03030b;
}

.value-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-icon {
  font-size: 2rem;
  color: var(--color-primary-h);
  transition: transform 0.3s ease;
}

.value-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.value-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.03);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.about-certs-section {
  background: #050511;
}

.cert-item-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cert-icon {
  font-size: 2.25rem;
  color: var(--color-primary-h);
}

.cert-title {
  font-size: 1.15rem;
  font-weight: 750;
  color: #fff;
}

.cert-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.cert-item-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}


/* ========================
   CONTACT PAGE
   ======================== */
.contact-hero-section {
  background: radial-gradient(120% 120% at 50% 0%, #0d0d26 0%, #050511 70%, #020206 100%);
  min-height: 45vh;
  color: var(--color-text);
  padding-top: 5.5rem !important;
}

.contact-main-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
}

.contact-main-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 680px;
}

.contact-layout-section {
  background: #050511;
}

.contact-info-card,
.contact-offices-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.info-block d-flex {
  align-items: start;
}

.info-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--color-primary-h);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  font-weight: 700;
}

.info-val {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

a.info-val:hover {
  color: var(--color-primary-h);
}

.office-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.office-address {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Glassmorphic Contact Form */
.contact-form-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
}

.card-glow-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-custom {
  font-size: 0.8rem;
  font-weight: 600;
  color: #a5b4fc;
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.form-control-custom::placeholder {
  color: #4b5563;
}

.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-primary-h);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.25);
  outline: none;
}

.form-select-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
}

.form-select-custom option {
  background: #121225;
  color: #fff;
}

/* Responsive contact adjustments */
@media (max-width: 991px) {

  .contact-main-title,
  .about-title {
    font-size: 2.45rem;
  }
}

/* ========================
   PRODUCT DETAIL PAGES
   ======================== */
.table-dark-custom {
  background: rgba(255, 255, 255, 0.01);
  border-color: rgba(255, 255, 255, 0.05) !important;
  margin-top: 1rem;
}

.table-dark-custom td {
  padding: 1rem 1.25rem;
  border-color: rgba(255, 255, 255, 0.05) !important;
  font-size: 0.9rem;
  background: transparent;
  color: var(--color-text);
}

.table-dark-custom .spec-label {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.table-dark-custom .spec-value {
  color: var(--color-muted);
}

/* ========================
   CONTACT PAGE V2 LAYOUT
   ======================== */
/* ========================
   CONTACT PAGE V2 LAYOUT
   ======================== */
.contact-section {
  background-color: #f3f6fc;
  /* light grayish-blue background */
}

/* Main white card container wrapping left & right columns */
.contact-main-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  margin-top: -110px;
  position: relative;
}

.contact-left-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  /* dark charcoal */
  letter-spacing: -1px;
}

.contact-detail-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2563eb;
  /* royal blue */
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
}

.contact-detail-label i {
  color: #2563eb;
  font-size: 1.15rem;
}

.contact-detail-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
  /* readable dark slate-grey */
  padding-left: 1.5rem;
  /* indent to align under label text, not icon */
}

.contact-detail-text a {
  color: #4b5563;
  font-weight: 600;
  transition: var(--transition);
}

.contact-detail-text a:hover {
  color: #2563eb;
}

.social-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-circle-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  color: #fff;
}

/* Outlined Form Card on the right */
.contact-form-outlined-card {
  background: rgba(56, 108, 255, 0.02) !important;
  border: 1.5px solid #386cff !important;
  /* solid blue border */
  border-radius: 20px !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.contact-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid #386cff;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #386cff;
  background: rgba(56, 108, 255, 0.08);
}

.contact-badge-dot {
  width: 6px;
  height: 6px;
  background-color: #386cff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.contact-form-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #111827;
  /* dark charcoal */
  letter-spacing: -0.5px;
}

.form-group-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-label-v2 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2563eb;
  /* Blue labels */
}

textarea.form-control-v2 {
  height: 100px;
}

.contact-left-content {
  position: sticky;
  top: 150px;
}

.wpcf7 form .wpcf7-response-output {
  color: red;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-control-v2 {
  background: #f8fafc;
  border: 1px solid #94a3b8;
  /* solid grey outline */
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #0f172a;
  /* dark text color */
  font-size: 0.9rem;
  transition: all 0.25s ease;
  width: 100%;
}

.form-control-v2::placeholder {
  color: #94a3b8;
}

.form-control-v2:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  color: #0f172a;
  outline: none;
}

.btn-contact-sales-v2 {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: none;
  height: 50px;
}

.btn-contact-sales-v2:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* ========================
   PARTNER SECTION (Orbit Diagram Layout)
======================== */
.partner-section {
  padding-bottom: 5rem;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.partner-content {
  max-width: 520px;
}

.partner-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #212529;
  /* dark corporate grey */
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.partner-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4b5563;
  /* muted dark grey body */
}

.partner-orbit-wrapper {
  display: inline-block;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  float: right;
}

.partner-orbit-img {
  max-width: 100%;
  height: auto;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.partner-orbit-wrapper:hover .partner-orbit-img {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.06));
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .partner-section {
    padding-bottom: 3.5rem;
  }

  .partner-title {
    font-size: 2.25rem;
    text-align: center;
  }

  .partner-desc {
    text-align: center;
    max-width: 100%;
  }

  .partner-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .partner-title {
    font-size: 1.85rem;
  }

  .partner-desc {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1500px;
    width: 94%;
  }
}

/* ========================
   PROFESSIONALS SECTION (About Page Team Carousel)
======================== */
.professionals-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #000000 0%, #001550 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.team-subtitle {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #386CFF;
}

.team-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.team-wave {
  display: flex;
  justify-content: center;
}

.team-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto;
}

/* Professional Card Design */
.professional-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.professional-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dark gradient overlay for text readability */
.professional-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.professional-card:hover::after {
  height: 100%;
}

.professional-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem;
  z-index: 2;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.info-line-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.professional-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}



.professional-role {
  font-size: 0.82rem;
  color: #fff;
  margin: 4px 0 0 0;
}

.professional-bio {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Card Hover Micro-interactions */
.professional-card:hover {
  transform: translateY(-8px);
}

.professional-card:hover .professional-img {
  transform: scale(1.05);
  opacity: 0.12;
}


.professional-card:hover .professional-bio {
  max-height: 200px;
  opacity: 1;
  margin-top: 15px;
}

/* Custom Dots for Carousel */
.professionals-slider .owl-dots {
  margin-top: 2.5rem !important;
  text-align: center;
}

.professionals-slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 6px;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.professionals-slider .owl-dots .owl-dot.active span {
  background: #386CFF !important;
  width: 24px;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .professionals-section {
    padding: 4.5rem 0;
  }

  .team-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .professionals-section {
    padding: 3.5rem 0;
  }

  .team-title {
    font-size: 1.75rem;
  }

  .team-desc {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}


.icon-img img {
  max-width: 90px;
}

/* ========================
   WHO WE ARE SECTION
======================== */
.who-we-section {
  padding: 6.5rem 0;
  background-color: #ffffff;
  color: #212529;
  position: relative;
}

.who-we-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #386CFF;
}

.who-we-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a24;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.who-we-wave {
  display: flex;
  justify-content: center;
}

.who-we-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #495057;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .who-we-section {
    padding: 4.5rem 0;
  }

  .who-we-title {
    font-size: 2.5rem;
  }

  .who-we-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .who-we-section {
    padding: 3.5rem 0;
  }

  .who-we-title {
    font-size: 1.9rem;
  }
}

/* ========================
   INNER BANNER SECTION
======================== */
.inner-banner-section {
  margin-top: calc(-1 * var(--nav-height));
  padding: calc(5rem + var(--nav-height)) 0 5rem 0;
  background: linear-gradient(180deg, #000000 0%, #000000 100%);
  color: #ffffff;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.inner-banner-section .container {
  position: relative;
  z-index: 2;
}

/* Ambient glow balls */


.banner-glow-left {
  pointer-events: none;
  position: absolute;
  width: 200px;
  height: 200px;
  background: #4E2FFF;
  filter: blur(140.849px);
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 100%;
}

.banner-glow-right {
  pointer-events: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  transform: translateY(-50%);
  background: #4E2FFF;
  filter: blur(140.849px);
  right: 100px;
  max-width: 100%;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a5b4fc;
}

.banner-badge .badge-dot {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #ffffff;
}

.banner-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.banner-desc {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.btn-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1.75rem;
  background: #ffffff;
  color: #050511 !important;
  border: 1px solid #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-banner-cta i {
  font-size: 0.78rem;
  transition: transform 0.25s ease;
}

.btn-banner-cta:hover {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-banner-cta:hover i {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  :root {
    --nav-height: 82px;
  }

  #hydra-navbar {
    top: 12px;
    height: 85px;
    width: calc(100% - 24px);
    border-radius: 12px;
    padding: 0 1rem;
  }

  #hydra-navbar.scrolled {
    top: 6px;
  }

  .inner-banner-section {
    padding-top: calc(6.5rem + var(--nav-height));
    padding-bottom: 6.5rem;
  }

  .banner-title {
    font-size: 2.3rem;
  }

  .banner-desc {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .banner-glow-left {
    width: 250px;
    height: 250px;
    left: -80px;
    filter: blur(90px);
  }

  .banner-glow-right {
    width: 300px;
    height: 300px;
    right: -100px;
    filter: blur(100px);
  }
}

@media (max-width: 576px) {
  .inner-banner-section {
    padding-top: calc(5rem + var(--nav-height));
    padding-bottom: 5rem;
  }

  .banner-title {
    font-size: 1.85rem;
  }

  .banner-glow-left {
    width: 180px;
    height: 180px;
    left: 0;
    filter: blur(70px);
  }

  .banner-glow-right {
    width: 200px;
    height: 200px;
    right: 0;
    filter: blur(80px);
  }

  .row {
    margin: 0;
  }
}

/* ========================
   MAP SECTION
   ======================== */
.map-section {
  background-color: #ffffff;
  padding: 5.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.map-subtitle {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
}

.map-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.map-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 720px;
}

.office-map-card {
  transition: transform 0.3s ease;
}

.map-img-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.map-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.office-map-card:hover .map-img {
  transform: scale(1.03);
}

.office-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111827;
}

.office-info {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Responsive adjust for maps */
@media (max-width: 767px) {
  .map-section {
    padding: 3.5rem 0;
  }

  .map-title {
    font-size: 1.85rem;
  }

  .map-img {
    height: 200px;
  }

  .office-name {
    font-size: 1.2rem;
  }
}

/* ========================
   SERVICE INNER BANNER SECTION
   ======================== */
.mapping-section {
  margin-top: calc(-1 * var(--nav-height));
  padding: calc(4rem + var(--nav-height)) 0 4rem 0;
  background-color: #f8fafc;
  /* light grey-white */
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.service-banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111827;
  /* dark charcoal */
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.service-banner-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #4b5563;
  /* muted body grey */
  max-width: 900px;
  margin: 0 auto;
}

.service-banner-wave svg {
  stroke: #386cff;
}

.service-banner-img-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-banner-img {
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-banner-img-container:hover .service-banner-img {
  transform: scale(1.02);
}

/* Deliverable Cards */
.deliverable-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.15);
}

.deliverable-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: rgba(99, 102, 241, 0.12);
  color: #6366f1;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.deliverable-card:hover .deliverable-icon-box {
  transform: scale(1.1);
}

.deliverable-text {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1f2937;
  /* dark charcoal */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .mapping-section {
    padding-top: calc(5rem + var(--nav-height));
    padding-bottom: 5rem;
  }

  .service-banner-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .service-banner-title {
    font-size: 1.85rem;
  }

  .service-banner-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .service-banner-img {
    height: 260px;
  }
}

/* ========================
   TEMPERATURE MAPPING HERO SECTION
   ======================== */
.service-inner-banner-section {
  margin-top: calc(-1 * var(--nav-height));
  padding: calc(3rem + var(--nav-height)) 0 4rem 0;
  background-color: #000000;
  /* black background */
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-inner-banner-section .white-text {
  color: #ffffff !important;
}

.service-inner-banner-section .muted-text {
  color: #94a3b8 !important;
}

.hero-map-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  /* to allow labels to float slightly off-screen on small layouts */
}


/* Floating labels on the engineer image */
.floating-label {
  position: absolute;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #3b82f6;
  border-radius: 12px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.floating-label:hover {
  transform: translateY(-2px) scale(1.02);
}

/* Specific position adjustments for floating tags */
.tag-cold-rooms {
  top: -4%;
  right: 8%;
}

.tag-warehouses {
  top: 42%;
  left: -12%;
}

.tag-reefer {
  bottom: -5%;
  left: 10%;
}

.tag-freezers {
  bottom: 12%;
  right: -8%;
}

/* Compliance Carousel Strip inside Hero */
.compliance-label-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
  display: inline-block;
}

.compliance-logo {
  max-height: 50px;
  width: auto !important;
  display: inline-block !important;
  margin: 0 auto;
  /* center inside carousel columns */
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.25s ease;
}

.compliance-logo:hover {
  transform: scale(1.05);
}

/* Responsive map adjustments */
@media (max-width: 991px) {
  .floating-label {
    padding: 4px 10px;
    font-size: 0.72rem;
    border-radius: 8px;
  }

  .tag-warehouses {
    left: -2%;
  }

  .tag-freezers {
    right: -2%;
  }
}

/* ========================
   COLD ROOM QUALIFICATION SECTION
   ======================== */
.cold-section {
  padding-top: 5rem;
  background-color: #ffffff;
}

.sub-tl {
  font-weight: 700;
  font-size: 30px;
}

.cold-section .service-banner-desc {
  max-width: 800px;
}

.qualification-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.qualification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(99, 102, 241, 0.15);
}

.qualification-img-wrapper {
  width: 100%;
  aspect-ratio: 1.6;
  overflow: hidden;
}

.qualification-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.qualification-card:hover .qualification-img {
  transform: scale(1.05);
}

.qualification-content {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-grow: 1;
}

.qualification-icon {
  font-size: 1.5rem;
  color: #10b981;
  flex-shrink: 0;
}

.qualification-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.35;
}

/* Custom styles for owl-dots */
.cold-room-carousel .owl-dots {
  text-align: center;
  margin-top: 2rem;
}

.cold-room-carousel .owl-dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: #d1d5db !important;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cold-room-carousel .owl-dot.active {
  background-color: #4f46e5 !important;
  transform: scale(1.2);
}

/* ========================
   WAREHOUSE COMPLIANCE SECTION
   ======================== */
.warehouse-section {
  padding: 5rem 0;
  background-color: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.warehouse-img-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.warehouse-img {
  object-fit: cover;
  transition: transform 0.4s ease;
}

.warehouse-img-container:hover .warehouse-img {
  transform: scale(1.02);
}

/* ========================
   ELITECH DISTRIBUTOR SECTION
   ======================== */
.elitech-section {
  padding: 6rem 0;
  background-color: #ffffff;
  color: #1f2937;
}

.elitech-feature-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  height: 100%;
}

.elitech-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.15);
}

.elitech-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: #C5BBFF;
  /* Solid lavender background to match deliverables */
  color: #ffffff;
  /* White icon to match the design mockup */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.elitech-feature-card:hover .elitech-icon-box {
  transform: scale(1.1);
}

.elitech-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.45;
  margin: 0;
}

.elitech-main-img-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.elitech-main-img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.elitech-main-img-container:hover .elitech-main-img {
  transform: scale(1.03);
}

.elitech-distributor-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.5px;
}

.elitech-logo-container {
  display: inline-block;
  margin-top: 1.5rem;
}

.elitech-logo {
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.elitech-logo:hover {
  transform: scale(1.05);
}

/* ========================
   GDP GAP ASSESSMENT SECTION
   ======================== */
.gdp-gap-section {
  padding-bottom: 6rem;
  background-color: #ffffff;
}

.gdp-gap-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  aspect-ratio: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.gdp-gap-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gdp-gap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gdp-gap-card:hover .gdp-gap-img {
  transform: scale(1.04);
}

.gdp-gap-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
}

.gdp-gap-card:hover .gdp-gap-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}

.gdp-gap-title {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .gdp-gap-overlay {
    padding: 1.5rem;
  }

  .gdp-gap-title {
    font-size: 1.15rem;
  }
}

/* ========================
   AUDIT READY SOLUTIONS SECTION
   ======================== */
.audit-section {
  background-color: #f8fafc;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.audit-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.audit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.15);
}

.audit-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(99, 102, 241, 0.12);
  color: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.audit-card:hover .audit-icon-wrapper {
  transform: scale(1.08);
}

.audit-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin: 0;
}

.audit-img-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.audit-img {
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.audit-img-container:hover .audit-img {
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .audit-section {
    padding-bottom: 4.5rem;
  }

  .gdp-gap-section {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 576px) {
  .audit-card {
    padding: 1.8rem 1.4rem;
  }
}

/* ========================
   TEMPERATURE CONTROLLED SHIPPING SECTION
   ======================== */
.shipping-section {
  padding-bottom: 4rem;
}

.shipping-banner-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 340px;
  margin-bottom: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.shipping-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.08) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 2.8rem;
}

.shipping-banner-content {
  max-width: 850px;
}

.shipping-banner-title {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.shipping-banner-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* Distributor strip */
.shipping-distributor-strip {
  text-align: center;
  padding: 0 0 1rem;
}

.shipping-distributor-text {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.shipping-distributor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.shipping-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shipping-logo {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.shipping-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

@media (max-width: 1439px) {
  .hero-compliance img {
    max-height: 42px;
  }
}

@media (max-width: 991px) {
  .shipping-banner-wrapper {
    height: 280px;
  }

  .shipping-banner-overlay {
    padding: 2rem 2rem;
  }

  .shipping-banner-title {
    font-size: 1.45rem;
  }
}

@media (max-width: 768px) {
  .shipping-banner-wrapper {
    height: 240px;
  }

  .shipping-banner-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0.1) 100%);
    padding: 1.5rem 1.5rem;
  }

  .shipping-banner-content {
    max-width: 100%;
  }

  .shipping-banner-title {
    font-size: 1.25rem;
  }

  .shipping-banner-desc {
    font-size: 0.82rem;
  }

  .shipping-distributor-logos {
    gap: 2rem;
  }

  .shipping-logo {
    max-height: 60px;
  }
}

@media (max-width: 576px) {
  .shipping-section {
    padding-bottom: 3rem;
  }

  .shipping-banner-wrapper {
    height: 200px;
    border-radius: 14px;
  }

  .shipping-banner-title {
    font-size: 1.1rem;
  }

  .shipping-distributor-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .logo {
    max-width: 150px;
  }
}