/* =========Navbar CSS======== */
.mu-nav {
  background-color: white;
  width: 100%;
  z-index: 1100;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #e8e8e8;
}

/* ---- Outer wrapper: 3-column grid on desktop ---- */
.nav-outter-hs {
  display: flex;
  align-items: center;
  padding: 0 1.1rem;
  min-height: 70px;
  position: relative;
}

/* ---- Logo block (desktop: left, mobile: right) ---- */
.navbar-logo-hs {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  /* Desktop: natural left position */
}

.vivgh {
  overflow: hidden;
  height: 46px;
  display: block;
  width: 90px;
  /* fixed width — not position:absolute */
  flex-shrink: 0;
}

.limg-hs {
  width: 100%;
  object-fit: cover;
  transform: scale(1.4);
  margin-top: 15px;
}

.logo-hs {
  width: 100px;
}

/* ---- Collapsible nav wrapper ---- */
.nav-collapse-hs {
  display: flex;
  align-items: center;
  flex: 1;
  /* fills remaining space */
}

/* ---- Centre nav links (desktop) ---- */
.nav-mid-hs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  /* push toward center */
  padding: 0;
  gap: 4px;
}

.nav-mid-hs li {
  list-style: none;
}

.nav-mid-hs li a {
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: .4px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0094d9;
  padding: 8px 12px;
  display: block;
  white-space: nowrap;
  text-decoration: none;
}

.nav-mid-hs li a:hover {
  color: #000000;
  text-decoration: none;
}

/* ---- Right: Reach us button ---- */
.nav-right-hs {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.nav-right-hs li {
  list-style: none;
}

.nav-right-hs a {
  background-color: #13aff0;
  color: #fff !important;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

.nav-right-hs a:hover {
  background-color: #0b7cac;
  color: #fff !important;
  text-decoration: none;
}

/* ---- Hamburger toggle button (hidden on desktop) ---- */
.nav-toggle-hs {
  display: none;
  /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}

.icon-bar-hs {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0094d9;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- Hamburger open state (X animation) ---- */
.nav-toggle-hs.is-open .icon-bar-hs:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-hs.is-open .icon-bar-hs:nth-child(2) {
  opacity: 0;
}

.nav-toggle-hs.is-open .icon-bar-hs:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   RESPONSIVE — Mobile / Tablet (≤ 991px)
   ========================================= */
@media (max-width: 991px) {

  /* Outer bar becomes: [toggle | spacer | logo] */
  .nav-outter-hs {
    position: relative;
    /* containing block for the absolutely-positioned dropdown */
    flex-wrap: wrap;
    padding: 0 0.8rem;
    min-height: 62px;
  }

  /* Show hamburger on left */
  .nav-toggle-hs {
    display: flex;
    order: 1;
    /* leftmost */
  }

  /* Logo shifts to right side */
  .navbar-logo-hs {
    order: 3;
    /* rightmost in the top bar */
    margin-left: auto;
    /* push to the far right */
  }

  /* Dropdown panel — floats over page content (no overflow clipping).
     Uses visibility+opacity+transform so ALL links always have a
     proper hit-test area and pointer events are never clipped. */
  .nav-collapse-hs {
    position: absolute;
    top: 100%;
    /* flush below the nav bar */
    left: 0;
    right: 0;
    z-index: 1000;
    flex-direction: column;
    align-items: stretch;
    background-color: white;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    /* Hidden: invisible + no pointer events (no overflow clipping involved) */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;
  }

  /* Open: fully visible, all links clickable */
  .nav-collapse-hs.nav-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0s;
  }

  /* Stack nav links vertically */
  .nav-mid-hs {
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    gap: 0;
  }

  .nav-mid-hs li a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
  }

  /* Reach us inside dropdown */
  .nav-right-hs {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-right-hs li {
    width: 100%;
  }

  .nav-right-hs a {
    border-radius: 0;
    padding: 12px 20px;
    text-align: left;
  }
}

/* =========Slider CSS======== */
.mainslider-hs {
  width: 100%;
}

.main-slider-hs {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

#slider {
  width: 100%;
  height: 600px;
}

.splide__track {
  height: 600px;
}

.splide__slide {
  position: relative;
}

.splide__slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.splide__list {
  margin: 0;
  padding: 0;
  height: 600px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.overlay-content {
  color: #fff;
  text-align: center;
  width: 90%;
}

.overlay-content h1 {
  font-size: 48px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2.5s steps(30, end) forwards, blink 0.6s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Tablet hero slider: between desktop (600px) and mobile (260px) */
@media (min-width: 769px) and (max-width: 1024px) {

  .main-slider-hs,
  #slider,
  .splide__track,
  .splide__list,
  .splide__slide img {
    height: 380px;
  }

  .overlay-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {

  .main-slider-hs,
  #slider,
  .splide__track,
  .splide__list,
  .splide__slide img {
    height: 260px;
  }

  .overlay-content h1 {
    font-size: 18px;
  }
}

/* ======About Section (Index)====== */
.ab-hs {
  margin-bottom: 10px;
}

/* ---- Image container in About section — static, no scroll ---- */
.about-img-scroll-hs {
  height: 400px;
  overflow: hidden;
}

.about-img-scroll-hs .about-in-img-hs {
  width: 100%;
  display: block;
  margin-bottom: 0;
  height: 100%;
  object-fit: fill;
}

.about-outter-hs {
  background-color: white;
  padding: 40px;
}

.know-hs-btn a {
  color: #fff;
  text-decoration: none;
}

.about-row-hs {
  box-shadow: 0px 0px 12px 0px #00000054;
}

.about-img-hs {
  padding: 20px 16px 20px 0;
}

.about-in-img-hs {
  max-width: 100%;
  min-height: 400px;
}

@media screen and (min-width: 1200px) {
  .about-in-img-hs {
    max-width: 100%;
    max-height: 400px;
    min-width: 556px;
  }
}

.main-three {
  padding: 40px 0 0 0;
}

@media screen and (max-width: 992px) {
  .about-img-hs {
    padding: 20px 0 0 0;
  }

  .about-para-hs {
    margin-bottom: 20px;
    height: 280px;
  }

  .about-img-scroll-hs {
    height: 400px;
  }
}

@media screen and (max-width: 576px) {
  .about-para-hs {
    height: 220px;
  }

  .about-img-scroll-hs {
    height: 220px;
  }
}

.about-para-hs {
  background-color: white;
  height: 400px;
  padding: 20px;
  margin-top: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  /* Custom scrollbar */
  /* scrollbar-width: thin; */
  scrollbar-color: #13aff0 #f0f0f0;
}

.about-para-hs::-webkit-scrollbar {
  width: 6px;
}

.about-para-hs::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.about-para-hs::-webkit-scrollbar-thumb {
  background-color: #13aff0;
  border-radius: 3px;
}

.ab-hs h1 {
  font-family: "Georgia", Sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: #000000;
}

.about-para-hs p {
  font-family: "Georgia", Sans-serif;
  font-size: 18px;
  color: #000000;
  letter-spacing: 1px;
  line-height: 3rem;
}

/* ====Three Card Section (Index)==== */
.demo-outter {
  width: 100%;
  position: relative;
  overflow: hidden;

  /* Background — same treatment as testimonial section */
  background-image: url('../img/three_card.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;   /* parallax on desktop */

  /* Height = 2× testimonial baseline (2 × 400px) */
  min-height: 960px;
  padding: 200px 0;
}

/* Dark overlay — keeps card text fully legible */
.demo-outter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 0;
  pointer-events: none;
}

/* Lift all children above the overlay */
.demo-outter > * {
  position: relative;
  z-index: 1;
}

.demo-out {
  display: flex;
  gap: 20px;
}

.demo-three {
  background-color: #ffffffc4;
  align-content: center;
  align-items: center;
  padding: 20px 10px;   /* extra vertical space inside each card */
}

.demo-img {
  text-align: center;
  height: 220px;
  margin: 20px 0;
}

.demo-head {
  text-align: center;
  font-family: "DM Serif Display", Sans-serif;
  letter-spacing: 1.3px;
  color: #0094D9;
}

.demo-para {
  text-align: center;
  font-family: "Georgia", Sans-serif;
  margin: 20px 0 40px 0;
}

.demo-main-img {
  background-size: cover;
  object-fit: cover;
  height: 210px;
}

@media (max-width: 991px) {
  .demo-out {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .demo-three {
    width: 60%;
  }

  .demo-head h2 {
    font-size: 22px;
  }

  .demo-para p {
    font-size: 18px;
  }

  /* Tablet: scroll attachment fixes blank-bg on some browsers */
  .demo-outter {
    background-attachment: scroll;
    min-height: 600px;   /* 2× tablet testimonial (≈300px) */
  }
}

@media (max-width: 576px) {
  .demo-three {
    width: 90%;
  }

  .demo-head h2 {
    font-size: 20px;
  }

  .demo-para p {
    font-size: 16px;
  }

  /* Mobile: iOS Safari fix + proportional height */
  .demo-outter {
    background-attachment: scroll;
    min-height: 480px;   /* 2× mobile testimonial (≈240px) */
  }
}

/* ====Client Slider (Index)==== */
/* ====Client Logo Marquee (index.php)==== */
.slider-hs {
  margin-top: 60px;
  padding-bottom: 40px;
}

.index-client-head {
  display: flex;
  justify-content: center;
  margin: 0 0 32px 0;
}

.index-client-head h1 {
  font-size: 40px;
  font-weight: 600;
}

/* Viewport: hides overflow so logos scroll in/out cleanly */
.slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Fade edges left & right */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* The scrolling row — width is set by JS-duplicated items */
.slider-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.slider-container:hover .slider-track {
  animation-play-state: paused;
}

/* Each logo card */
.box {
  flex-shrink: 0;
  width: 180px;
  height: 110px;
  margin: 0 14px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Infinite scroll keyframe — translate by exactly half (JS duplicates items) */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile: slightly smaller cards, same effect */
@media (max-width: 767px) {
  .box {
    width: 130px;
    height: 80px;
    margin: 0 8px;
    padding: 8px 10px;
  }

  .slider-track {
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .slider-container {
    width: 92vw;
    max-width: 320px;
  }

  .box {
    min-width: 0;
    width: 92vw;
    max-width: 320px;
    flex-shrink: 0;
    height: min(92vw, 320px);
  }

  /* square */
  .button-hs {
    bottom: calc(min(92vw, 320px) / 2 + 33px);
  }
}

/* ====Testimonial Slider (Index)==== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

.main-slider {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  min-height: 400px;         /* baseline height — demo-outter will be 2× this */

  /* Background image — responsive & full-cover */
  background-image: url('../img/home-testimonial-background.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* subtle parallax */
}

/* Dark overlay for readability — no extra HTML needed */
.main-slider::before {
  content: '';
  position: absolute;
  inset: 0;                /* top/right/bottom/left: 0 */
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 0;
  pointer-events: none;
}

/* Lift all children above the overlay */
.main-slider > * {
  position: relative;
  z-index: 1;
}

.test-hs {
  text-align: center;
  color: #ffffff;           /* heading readable on dark overlay */
}

.main-slider main {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

.slider {
  overflow: hidden;
  width: 100%;
}

.slide-row {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide-col {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.content {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
}

.njhg {
  background: antiquewhite;
  padding: 20px;
  max-width: 500px;
  width: 450px;
  margin: 0;
}

.indicator span {
  background: #f3f1f1;
}

.hero {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.hero img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
}

.indicator {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.indicator .btn {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  padding: 0;
  border: none;
}

.indicator .btn.active {
  background: #000;
  width: 30px;
}

@media (max-width: 992px) {
  .slide-col {
    flex-direction: column-reverse;
    text-align: center;
  }

  .njhg {
    max-width: 100%;
    width: 100%;
    padding-top: 49px;
  }

  .content {
    margin-top: -15px;
    z-index: -1;
  }
}

@media (max-width: 576px) {
  .main-slider main h1 {
    text-align: center;
    font-size: 24px;
  }

  .content p {
    font-size: 14px;
  }

  .hero img {
    max-width: 220px;
  }

  /* Fix: background-attachment:fixed causes blank bg on iOS Safari */
  .main-slider {
    background-attachment: scroll;
  }
}

/* Tablet: also switch off fixed attachment for consistent rendering */
@media (max-width: 992px) {
  .main-slider {
    background-attachment: scroll;
  }
}

/* =======================Footer======================== */
.footer-outer {
  color: white;
  padding: 40px 20px 20px;   /* extra top padding for breathing room */
  margin-top: 40px;
  background-color: #181818;
}

/* ---- Section headings ---- */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  /* Blue accent underline — matches site theme (#13aff0) */
  border-bottom: 2px solid #13aff0;
  display: inline-block;
}

/* ---- Body text (About Us paragraph, contact li text) ---- */
.foot-col-hs {
  font-family: "Georgia", Sans-serif;
  font-size: 0.95em;
  line-height: 1.8em;
  color: #b0b8c1;
  text-align: center;
}

/* ---- Social icon circles ---- */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  /* Theme-blue background instead of yellow */
  background: #13aff0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #0094d9;       /* darker blue on hover — consistent theme */
  transform: translateY(-2px);
  color: #ffffff;
}

/* ---- Footer nav list (Reach Us + Quick Links) ---- */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #b0b8c1;
  line-height: 1.6;
}

/* Contact detail icons — theme blue instead of orange/yellow */
.footer-list li i {
  margin-right: 8px;
  color: #13aff0;            /* site primary blue */
  font-size: 13px;
}

/* Quick Links anchor */
.footer-list a {
  color: #b0b8c1;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.2s ease;
}

.footer-list a:hover {
  color: #13aff0;            /* theme blue on hover — no more yellow */
  padding-left: 4px;
}

/* ---- Divider ---- */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 24px 0 16px;
}

.hs-align-v {
  text-align: center;
}

/* ---- Copyright bar ---- */
.small {
  font-size: 13px;
}

/* =======================Footer Responsive======================== */

/* ---- iPad Mini / Tablet (768px – 991px): 2×2 grid ---- */
@media (min-width: 768px) and (max-width: 991px) {
  .footer-outer .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-outer .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -10px;
    margin-right: -10px;
  }

  .footer-outer .col-md-3 {
    float: none !important;
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 28px;
    text-align: left !important;
  }

  .footer-outer .foot-col-hs {
    text-align: left;
    font-size: 0.92em;
  }

  /* Headings left-aligned on tablet */
  .footer-outer .footer-title {
    font-size: 14px;
    letter-spacing: 0.6px;
  }

  .footer-outer .social-icons {
    justify-content: flex-start;
  }

  .footer-outer .hs-align-v {
    text-align: left !important;
  }

  .footer-outer .footer-list li {
    text-align: left;
    font-size: 0.92em;
  }

  .footer-outer .text-center .foot-col-hs {
    font-size: 11px;
    line-height: 1.7;
  }
}

/* ---- Mobile (< 768px): single column, centered ---- */
@media screen and (max-width: 767px) {
  .footer-outer {
    padding: 30px 16px 16px;
  }

  .footer-outer .col-md-3 {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 24px;
  }

  /* Heading: keep it prominent, centered with accent bar */
  .footer-outer .footer-title {
    font-size: 14px;
    letter-spacing: 1px;
    display: block;           /* full-width so border-bottom spans block */
    border-bottom: none;
    padding-bottom: 0;
    /* Use a centred pseudo-underline effect instead */
    position: relative;
    margin-bottom: 14px;
  }

  .footer-outer .footer-title::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: #13aff0;
    margin: 8px auto 0;
  }

  /* Body text clearly lighter/smaller than heading */
  .footer-outer .foot-col-hs {
    text-align: center;
    font-size: 0.88em;
    color: #9aa3ad;
  }

  .footer-outer .hs-align-v {
    text-align: center !important;
  }

  .footer-outer .footer-list li {
    text-align: center;
    font-size: 0.88em;
    color: #9aa3ad;
  }

  .footer-outer .social-icons {
    justify-content: center;
    gap: 12px;
  }

  .footer-outer .text-center .foot-col-hs {
    font-size: 11px;
    line-height: 1.7;
    color: #6c757d;
  }
}

/* =========Services Page — Our Story sections========= */
.our-story-section {
  padding: 25px 30px;
  background-color: #000000;
  position: relative;
  margin-bottom: 40px;
}



.rdx-vj {
  padding: 25px 30px;
  background-color: white;
  position: relative;
  margin-bottom: 40px;
}

.container-hs {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.container-fluid-hs {
  padding-left: 0;
}

.our-story-section .column,
.rdx-vj .column {
  flex: 1 1 50%;
}

.our-story-section .left-column,
.rdx-vj .left-column {
  background-size: cover;
  background-position: center;
  min-height: 300px;
  padding-left: 3px;
}

.our-story-section .right-column h2,
.rdx-vj .right-column h2 {
  font-size: 32px;
  margin-bottom: 15px;
  margin-top: 0;
  color: #333;
}

.our-story-section .right-column p,
.rdx-vj .right-column p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #555;
  font-family: math;
}

.strip-hs{
  background-color: #5d98a614 !important;
}

.left-column img {
  width: 100%;
  box-shadow: 0 0 14px 7px #ffffff42;
  object-fit: fill;
}

.hed-ed {
  color: #333;
}

@media (max-width: 768px) {

  .our-story-section .column,
  .rdx-vj .column {
    flex: 1 1 100%;
    width: 100% !important;
  }

  .our-story-section .left-column,
  .rdx-vj .left-column {
    min-height: 200px;
  }

  .our-story-section .right-column h2,
  .rdx-vj .right-column h2 {
    font-size: 28px;
  }
}

/* ====Tracking / Tech Enabler section==== */
.Tracking-service-section {
  padding: 25px 30px;
  background-color: #000000;
  position: relative;
  margin-bottom: 40px;
}

.Tracking-service-section .left-column {
  background-size: cover;
  background-position: center;
  min-height: 300px;
  padding-left: 3px;
}

.Tracking-service-section .right-column h2 {
  font-size: 32px;
  margin-bottom: 15px;
  margin-top: 0;
  color: #f7f5f5;
}

.Tracking-service-section .right-column p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #f7f5f5;
  font-family: math;
}

@media (max-width: 992px) {
  .tech-hs {
    margin: 20px;
  }
}

@media (max-width: 768px) {
  .Tracking-service-section .column {
    flex: 1 1 100%;
    width: 100% !important;
  }

  .Tracking-service-section .right-column h2 {
    font-size: 28px;
  }
}

/* ====Route Survey section==== */
.route-section {
  background-color: #1a1a1a;
  overflow: hidden;
  margin-bottom: 40px;
  margin-left: 150px;
  margin-right: 150px;
  height: 100vh;
}

.route-outer {
  max-width: 100%;
  padding: 0;
}

/* Two-column row: text left, image right */
.route-col {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  min-height: 420px;
}

/* Left: text content */
.route-right {
  flex: 0 0 50%;
  max-width: 50%;
  background-color: #1a1a1a;
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.route-head {
  margin-bottom: 20px;
}

.route-head h2 {
  color: #ffffff;
  font-family: "Georgia", serif;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.route-para p {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.85;
  font-family: "Georgia", serif;
  margin-bottom: 14px;
}

.route-para p:last-child {
  margin-bottom: 0;
}

/* Right: image */
.route-left {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100vh;
}

.route-img-out {
  width: 100%;
  height: 100%;
  display: block;
}

.route-img {
  width: 100%;
  height: 100vh;
  object-fit: fill;
  display: block;
}

/* ---- iPad mini / Tablet (770px – 1020px): 100px side margins ---- */
@media (min-width: 769px) and (max-width: 1024px) {
  .route-section {
    margin-left: 100px;
    margin-right: 100px;
    height: auto;
  }

  .route-col {
    height: auto;
    min-height: 500px; /* grows with text content */
    align-items: stretch;
  }

  .route-right {
    padding: 40px 36px;
    height: auto;
  }

  .route-head h2 {
    font-size: 26px;
  }

  .route-para p {
    font-size: 14px;
  }

  .route-left {
    min-height: 500px;
    height: auto;
  }

  .route-img-out {
    width: 100%;
    min-height: 500px;
    height: 100%;
  }

  .route-img {
    width: 100%;
    min-height: 500px;
    height: 100%;
  }
}

/* ---- Mobile (≤ 768px): stack vertically ---- */
@media (max-width: 768px) {
  .route-section {
    margin-left: 20px;
    margin-right: 20px;
    height: auto;
  }

  .route-col {
    flex-direction: column;
    height: auto;
    min-height: unset;
  }

  /* Text column */
  .route-right {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 32px 24px;
  }

  .route-head h2 {
    font-size: 24px;
  }

  .route-para p {
    font-size: 14px;
  }

  /* Image column: explicit pixel height on every element */
  .route-left {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 320px;
    overflow: hidden;
  }

  .route-img-out {
    width: 100%;
    height: 320px;
    display: block;
  }

  .route-img {
    width: 100%;
    height: 320px;
    object-fit: fill;
    display: block;
  }
}

/* ---- Small mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  .route-right {
    padding: 24px 16px;
  }

  .route-head h2 {
    font-size: 22px;
  }

  .route-left,
  .route-img-out,
  .route-img {
    height: 240px;
  }
}

/* ====Services — Intro Banner==== */
.intro-single {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #1e1e2f, #3e4b5b);
  overflow: hidden;
  color: #fff;
}

.intro-single::before,
.intro-single::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  filter: blur(100px);
  opacity: 0.25;
  transform: rotate(25deg);
}

.intro-single::before {
  background: radial-gradient(circle at top left, #4c8df1, transparent 70%);
}

.intro-single::after {
  background: radial-gradient(circle at bottom right, #ff6a00, #ff0080, transparent 70%);
  transform: rotate(-15deg);
}

.title-single-box .title-single,
.title-single-box .color-text-a {
  color: #fff !important;
}

.breadcrumb a,
.breadcrumb-item.active {
  color: black !important;
}

.navbar {
  margin-bottom: 0px;
}

/* ====Career Page==== */
.carrer-img-hs {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  line-height: 0;
}

/* ---- Shared: real img tag fills the section height ---- */
.banner-img-hs {
  width: 100%;
  height: 100%;          /* fill the fixed section height */
  display: block;
  object-fit: cover;     /* centre of image fills the container, no bars */
  object-position: center center;
}

/* ---- Shared: dark overlay + centred heading ---- */
.banner-overlay-hs {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}


.carrer-h1 {
  color: #ffffff;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  font-family: cursive;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.6);
}

.carrer-container {
  padding: 0;
  margin: 0;
  max-width: 1580px !important;
}

.carrer-para {
  font-size: 20px;
  font-family: math;
  padding: 20px 0;
  line-height: 1.8;
}

.sec-prty-career {
  margin: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.232);
  padding-top: 70px;
}

.carrer-work h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Responsive heading sizes */
@media (min-width: 769px) and (max-width: 1024px) {
  .carrer-h1,
  .client-h1 {
    font-size: 42px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .carrer-h1 {
    font-size: 32px;
  }

  .sec-prty-career .col-md-6 {
    width: 100%;
    float: none;
  }

  .carrer-para {
    font-size: 16px;
  }
}

/* ====Career Form==== */
.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

input[type=text],
input[type=number],
input[type=email],
input[type=file],
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.mb-3 {
  margin-bottom: 15px;
}

.bhgt {
  box-shadow: 0 0 2px 2px #0000003b;
  padding: 20px;
}

.form-controld {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* ====Client Page==== */
.client-img-hs {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.client-h1 {
  color: #ffffff;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  font-family: cursive;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.6);
}

.client-container {
  padding: 0;
  margin: 0;
}

.client-heading {
  text-align: center;
  padding: 20px 0 10px;
}

.client-heading h3 {
  font-size: 28px;
}

.client-para {
  padding: 10px 20px 20px;
  font-size: 16px;
  line-height: 1.8;
  font-family: math;
  color: #444;
}

.client-img {
  margin-top: 50px;
  margin-bottom: 0;          /* footer-outer already has margin-top: 40px */
  overflow-x: hidden;        /* prevent Bootstrap .row negative-margin overflow */
}

/* ---- Scrollable wrapper (fixed height, scrolls when images overflow) ---- */
.client-grid-scroll-hs {
  height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 0;
  scrollbar-width: none;
  scrollbar-color: #13aff0 #f0f0f0;
}

.client-grid-scroll-hs::-webkit-scrollbar {
  width: 6px;
}

.client-grid-scroll-hs::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.client-grid-scroll-hs::-webkit-scrollbar-thumb {
  background-color: #13aff0;
  border-radius: 3px;
}

/* ---- 4-column image grid ---- */
.client-grid-hs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 10px;
}

.img-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 6px;
}

.client-img-main {
  height: 140px;
  max-width: 100%;
  object-fit: contain;
}

/* ---- Desktop large (993px – 1280px): 4 columns ---- */
@media (max-width: 992px) {
  .client-grid-hs {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* Tablet: disable fixed attachment (avoids blank background on some browsers) */
@media (min-width: 769px) and (max-width: 1024px) {
  .client-img-hs {
    background-attachment: scroll;
    min-height: 240px;
  }

  .client-img-out {
    min-height: 240px;
  }

  .client-h1 {
    font-size: 42px;
  }
}

/* ---- iPad Mini / Tablet (768px – 820px): 3 compact columns ---- */
@media (min-width: 768px) and (max-width: 820px) {
  .client-grid-scroll-hs {
    height: auto;
    max-height: 500px;
  }

  .client-grid-hs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 8px;
  }

  .img-div {
    padding: 8px;
  }

  .client-img-main {
    height: 100px;
  }
}

@media (max-width: 767px) {
  .client-h1 {
    font-size: 32px;
  }

  .client-grid-hs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .client-img-main {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .client-grid-hs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .client-img-main {
    height: 80px;
  }
}

/* ====About Page — Hero section==== */
.demo-about {
  margin-top: 0 !important;
  position: relative;
}

.demo-about-hs {
  padding: 0;
  max-width: 1580px !important;
}

.demo-about-in {
  max-width: 100%;
  background-color: #0c0c0c;
  overflow: hidden;
}

.demo-about-out {
  width: 100%;
  height: 700px;
  padding: 0;
  display: flex;
}

.demo-about-outter {
  padding: 0;
}

.demo-about-img {
  object-fit: fill;
  width: 100%;
  height: 700px;
}

.demo-about-para {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.demo-about-head {
  padding: 20px 0;
}

.demo-about-head h2 {
  font-family: "Georgia", Sans-serif;
  font-size: 35px;
  color: #0094D9;
  font-weight: 700;
}

.demo-about-para-start {
  text-align: start;
  font-family: "Georgia", Sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  color: #FFFFFF;
  padding: 0 20px;
}

/* ---- iPad Mini / Tablet (769px – 991px): stack hero vertically ---- */
@media (min-width: 769px) and (max-width: 991px) {
  .demo-about-in {
    max-height: none;
    overflow: visible;
  }

  .demo-about-out {
    height: auto !important;
    flex-direction: column;
    display: flex;
  }

  /* Bootstrap 3 col-md-6 floats — override to full width */
  .demo-about-out .col-md-6 {
    width: 100% !important;
    float: none !important;
  }

  /* Image fills full width, fixed readable height — no cut */
  .demo-about-img {
    height: 380px;
    width: 100%;
    object-fit: cover;
  }

  .demo-about-para {
    padding: 30px 20px;
    min-height: auto;
  }

  .demo-about-para-start {
    padding: 0 10px;
  }

  .demo-about-head h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .demo-about-out {
    height: auto;
    flex-direction: column;
  }

  .demo-about-img {
    height: 300px;
  }

  .demo-about-in {
    max-height: none;
  }

  .demo-about-out .col-md-6 {
    width: 100%;
    float: none;
  }
}

/* ====About Page — Swiper Carousel==== */
.carousal-about-hs {
  margin-top: 50px;
}

/* Swiper wrapper: positioning context + centred slide ---- */
.carousal-about-hs .mySwiper {
  position: relative;
}

/* Base (all sizes): centred slide */
.swiper-slide-hs {
  display: flex;
  justify-content: center;
}

/* ---- Large desktop (>1024px): wide rectangle, arrows hidden ---- */
@media (min-width: 1025px) {
  .swiper-slide-hs img {
    display: block;
    width: 1100px;
    height: 580px;
    object-fit: cover;
    border-radius: 10px;
  }

  .carousal-about-hs .swiper-button-prev,
  .carousal-about-hs .swiper-button-next {
    display: none;
  }
}

/* ---- Tablet (768px – 1024px): arrows outside 60vw image ---- */
@media (min-width: 768px) and (max-width: 1024px) {
  .swiper-slide-hs img {
    width: 60vw;
    max-width: 420px;
    height: min(60vw, 420px);
  }

  /* 52px = 40px arrow + 12px gap */
  .carousal-about-hs .swiper-button-prev {
    left: calc(50% - min(30vw, 210px) - 52px);
  }

  .carousal-about-hs .swiper-button-next {
    right: calc(50% - min(30vw, 210px) - 52px);
  }
}

/* ---- Mobile (< 768px): minimal gap outside image edges ---- */
@media (max-width: 767px) {
  .swiper-slide-hs img {
    width: 92vw;
    max-width: 500px;
    height: min(92vw, 500px);
  }

  /* On mobile only 4vw space on each side — place arrows at the outer edge */
  .carousal-about-hs .swiper-button-prev {
    left: 2px;
  }

  .carousal-about-hs .swiper-button-next {
    right: 2px;
  }
}

/* ---- Small mobile (< 480px): 92vw square, max 320px ---- */
@media (max-width: 480px) {
  .swiper-slide-hs img {
    width: 92vw;
    max-width: 320px;
    height: min(92vw, 320px);
  }

  .carousal-about-hs .swiper-button-prev,
  .carousal-about-hs .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .carousal-about-hs .swiper-button-prev::after,
  .carousal-about-hs .swiper-button-next::after {
    font-size: 12px;
  }
}

/* ====About Page — Counter section==== */
.counter-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.counter-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  text-align: center;
}

.counter-box {
  flex: 1 1 22%;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.counter-number {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  display: inline-block;
}

.suffix {
  font-size: 28px;
  vertical-align: top;
  color: #333;
}

.counter-title {
  margin-top: 10px;
  font-size: 18px;
  color: #666;
}

@media (max-width: 768px) {
  .counter-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .counter-box {
    flex: 1 1 100%;
  }
}

/* ====About Page — CEO section==== */
.demo-ceo {
  margin-top: 75px;
  position: relative;
}

.demo-ceo-hs {
  padding: 0;
  max-width: 1140px !important;
}

.demo-ceo-in {
  max-width: 100%;
  background-color: #e8e4da;
  overflow: hidden;
}

/* Outer row — keeps two col-md-6 columns side by side */
.demo-ceo-out {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 400px;
}

/* Inner wrapper inside col-md-6: stack image → name → title vertically */
.col-md-6>.demo-ceo-out {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: unset;
  padding: 20px 0;
}

.demo-ceo-img {
  object-fit: fill;
  width: 100%;
  height: 300px;
}

.demo-ceo-para-start {
  text-align: start;
  font-family: "Georgia", Sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  color: #000000;
}

.demo-ceo-head {
  opacity: 1;
  text-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.demo-ceo-head h5 {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.demo-ceo-head-para {
  padding: 20px 0;
}

.demo-ceo-name {
  font-family: "Georgia", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 1px;
}

.demo-ceo-inhead {
  margin: 0;
  padding: 0;
  font-family: "Georgia", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 1px;
}

.demo-img-out {
  text-align: center;
  padding: 20px;
}

.demo-ceo-name-div {
  text-align: center;
  margin: 0;
  padding: 0;
}

.demo-ceo-name-div h2 {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .demo-ceo-out {
    flex-direction: column;
    min-height: auto;
  }

  .demo-ceo-out .col-md-6 {
    width: 100%;
    float: none;
  }

  .demo-img-out {
    margin: 0;
  }
}

/* ====global container override==== */
.container-fluid {
  max-width: 1440px;
}

/* ====Global scrollbar hide==== */
::-webkit-scrollbar {
  display: none;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* ====Global button reset==== */
button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* ====Sign-up / Reach-us Popup==== */
.lgpop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lgpop .close-btn {
  position: fixed;
  background: #e0e5ec;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lgpop .close-btn:hover {
  background: #d6dce4;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #e0e5ec;
  border: none;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
}

.lgpop .container {
  background: #e0e5ec;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  max-width: 90%;
}

.lgpop .tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.lgpop .tabs button {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

.lgpop .tabs button.active {
  background: #d1d9e6;
  box-shadow: inset 2px 2px 5px #bec4cb, inset -2px -2px 5px #f0f5fa;
}

.lgpop .form {
  display: none;
  flex-direction: column;
}

.lgpop .form.active {
  display: flex;
}

.lgpop input {
  margin: 10px 0;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #e0e5ec;
  box-shadow: inset 4px 4px 6px #c8ccd1, inset -4px -4px 6px #f0f5fa;
}

.lgpop .btn {
  margin-top: 10px;
  padding: 12px;
  background: #e0e5ec;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 6px 6px 10px #c2c8d0, -6px -6px 10px #ffffff;
  transition: 0.3s;
}

.lgpop .btn:hover {
  background: #d6dce4;
}

.lgpop .or {
  text-align: center;
  margin: 15px 0 10px;
  font-size: 0.85em;
  color: #666;
}

.lgpop .socials {
  display: flex;
  justify-content: space-around;
}

.lgpop .social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #e0e5ec;
  box-shadow: 6px 6px 10px #c2c8d0, -6px -6px 10px #ffffff;
  font-size: 1.2em;
  cursor: pointer;
}

/* ====Navbar Mobile Responsive==== */
@media (max-width: 768px) {
  .navbar-header {
    position: relative;
    z-index: 10;
  }

  .nav-outter-hs {
    padding: 0.75rem 1rem;
    position: relative;
  }

  .nav-mid-hs {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-mid-hs li {
    width: 100%;
  }

  .nav-right-hs {
    margin-top: 8px;
  }

  .vivgh {
    width: 55px;
  }
}

/* ====Review section (commented-out in HTML, keep styles for safety)==== */
.review-heading {
  display: flex;
  justify-content: center;
}

.review-heading h2 {
  font-family: "Georgia", Sans-serif;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.2em;
  color: #FFFFFF;
}

/* ====Tech Enabler — mobile scroll (services.php)==== */
@media (max-width: 767px) {
  .tech-hs {
    max-height: 260px;        /* show ~2 paragraphs, rest is scrollable  */
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-right: 6px;       /* breathing room beside scrollbar          */

    /* Thin branded scrollbar — WebKit */
    scrollbar-width: thin;
    scrollbar-color: #13aff0 #e8e8e8;
  }

  .tech-hs::-webkit-scrollbar {
    width: 5px;
  }

  .tech-hs::-webkit-scrollbar-track {
    background: #e8e8e8;
    border-radius: 4px;
  }

  .tech-hs::-webkit-scrollbar-thumb {
    background-color: #13aff0;
    border-radius: 4px;
  }
}

/* ====== About Page — Swiper Carousel ====== */

/* Outer section */
.carousal-about-hs {
  width: 100%;
  padding: 50px 30px;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

/* Flex row: [prev]  [swiper]  [next] on all screen sizes */
.about-swiper-outer {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Swiper grows to fill space between the two arrows */
.about-swiper-outer .mySwiper {
  flex: 1;
  min-width: 0;           /* prevent flex overflow of swiper */
}

/* Swiper wrapper dimensions */
.carousal-about-hs .mySwiper {
  width: 100%;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

/* Each slide */
.carousal-about-hs .swiper-slide-hs {
  display: block !important;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

/* Image fills slide with cover crop */
.carousal-about-hs .swiper-slide-hs img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;      /* cancel old block's max-width: 420px at tablet */
  max-height: none;     /* cancel old block's height: min(60vw, 420px) at tablet */
  object-fit: cover;
  object-position: center;
}

/* ── Arrow base styles (shared) ── */
.carousal-about-hs .swiper-button-prev,
.carousal-about-hs .swiper-button-next {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #444;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.carousal-about-hs .swiper-button-prev::after,
.carousal-about-hs .swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}

/* ── Desktop (≥1025px): arrows hidden, swiper full-width ── */
@media (min-width: 1025px) {
  .carousal-about-hs {
    padding: 50px 60px;
  }

  .carousal-about-hs .swiper-button-prev,
  .carousal-about-hs .swiper-button-next {
    display: none !important;
  }
}

/* ── Small / Tablet (≤1024px): arrows sit OUTSIDE image ── */
@media (max-width: 1024px) {
  .carousal-about-hs .swiper-button-prev,
  .carousal-about-hs .swiper-button-next {
    display: flex !important;
    position: relative !important;  /* override Swiper's absolute */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 0;
  }
}

/* Tablet: 769px – 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .carousal-about-hs {
    padding: 40px 20px;
  }

  .carousal-about-hs .mySwiper {
    height: 400px;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  .carousal-about-hs {
    padding: 30px 12px;
  }

  .carousal-about-hs .mySwiper {
    height: 280px;
  }

  .about-swiper-outer {
    gap: 8px;
  }

  .carousal-about-hs .swiper-button-prev,
  .carousal-about-hs .swiper-button-next {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .carousal-about-hs .swiper-button-prev::after,
  .carousal-about-hs .swiper-button-next::after {
    font-size: 12px;
  }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .carousal-about-hs {
    padding: 20px 8px;
  }

  .carousal-about-hs .mySwiper {
    height: 230px;
  }

  .about-swiper-outer {
    gap: 6px;
  }

  .carousal-about-hs .swiper-button-prev,
  .carousal-about-hs .swiper-button-next {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}