/* ─── HOME PAGE ─────────────────────────────────── */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
*::before,
*::after {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
:root {
  --red: #ED1F24;
  --font-one: "Instrument Sans", sans-serif;
  --font-two: "Inter", sans-serif;
  --navy: #032041;
  --white: #ffffff;
  --cream: #faf9f4;
  --muted: #0000009e;
  --page-max: 1440px;
   --page-min: 700px;
  --page-pad: clamp(1.25rem, 5vw, 6rem);
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-one);
}

a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
}



/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  height: 110vh;
}
/* Image */
.ship-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  animation: floatShip 3s ease-in-out infinite;
}

/* Floating ship effect */
@keyframes floatShip {
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-10px) scale(1.01); }
  100% { transform: translateY(0px) scale(1); }
}

/* Water wave overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;

  animation: waveMove 8s linear infinite;
}

/* Wave animation */
@keyframes waveMove {
  0%   { background-position-x: 0; }
  100% { background-position-x: 1000px; }
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 32, 65, 0.55) 0%,
    rgba(3, 32, 65, 0.35) 100%
  );
  z-index: 1;
} */

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 8rem 0 0 0;
}

.hero__heading {
  font-family: "Instrument Sans", Helvetica;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 1;
  font-weight: 400;
  color: transparent;
}

.hero__sub {
  font-family: "Instrument Sans", Helvetica;
  font-size: clamp(1rem, 2vw, 1.800rem);
  color: rgba(255, 255, 255, 0.75);

}

.hero__btn {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  padding: 0.75rem 2.5rem;
}

/* ABOUT STRIP */
.about-strip {
  background: #fff;
}
.footer-btn {
  margin: 50px 0 0 0;
}
.testimonial.section-spacer {
    position: relative;
    padding: 8rem 0;
}
.testimonial__inner {
  position: relative;
}
.testimonial-wrap-position {
    display: flex;
    gap: 2rem;
    position: absolute;
    top: 0;
    left: 38%;
    max-width: 800px;
}
.about-strip__text p {
  font-family: var(--font-one);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: var(--muted);
    line-height: 1.4;
    padding: 0 0 20px 0;
}
.about-strip__text {
  text-align: center;
}
.about-strip__img {
  width: 100%;
  border-radius: clamp(20px, 3vw, 54px) clamp(60px, 10vw, 250px)
    clamp(20px, 3vw, 54px) clamp(20px, 3vw, 54px);
  object-fit: cover;
  aspect-ratio: 5/6;
}

/* SERVICES */
.services {
  background: #fff;
}

.services__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-bottom: clamp(1rem, 3vw, 4rem);
}

.service-card {
  border: 1px solid var(--red);
  border-radius: 30px 75px 30px 30px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card__icon-wrap {

  display: grid;
  place-items: flex-end;
}

.service-card__icon-wrap img {
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.225rem);
  color: #000;
  margin: 30px 0 0 0;
}

.service-card p {
  font-family: "Inter", Helvetica;
  font-weight: 300;
  font-size: clamp(0.85rem, 1vw, 1.1rem);
  color: #000;
  line-height: 1.3;
  max-width: 260px;
	margin: 15px 0 0 0;
}
a {
    transition: 0.3s ease;
}

a:hover {
     transition: 0.3s ease;
}
/* WHY CHOOSE */
.why-section {
  position: relative;
  overflow: hidden;
}

.why-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.why-section__overlay {
  position: absolute;
  inset: 0;
  background: #032041d9;
  z-index: 1;
}

.why-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.why-section__left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-section__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-block: 0.5rem;
}

.why-section__contact-text {
  font-family: "Inter", Helvetica;
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  opacity: 0.9;
}

/* INDUSTRIES */
.industries {
  background: #fff;
}

.industries__sub {
  font-family: "Instrument Sans", Helvetica;
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  color: var(--muted);
  text-align: center;
  margin-bottom: 4.5rem;
  margin-top: 0.75rem;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 1rem;
    padding: 0 0 5em 0;
    align-items: center;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
    background: var(--cream);
    padding: 20px;
    border-radius: 20px;
	border-radius: 30px 75px 30px 30px;
}
 
.industry-item img {
  width: clamp(70px, 8vw, 100px);
  height: clamp(70px, 8vw, 100px);
  border-radius: 50%;
  object-fit: cover;
}

.industry-item span {
font-family: "Instrument Sans", Helvetica;
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    color: #000;
    text-align: left;
    display: block;
    max-width: 200px;
    line-height: 1.4;
}

/* TESTIMONIAL */
.testimonial__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.testimonial__img {
  width: 100%;
  border-radius: clamp(20px, 3vw, 54px) clamp(130px, 10vw, 250px)
    clamp(20px, 3vw, 54px) clamp(20px, 3vw, 54px);
  object-fit: cover;
  aspect-ratio: 5/6;
}

.testimonial__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial__heading {
  font-family: "Instrument Sans", Helvetica;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.4;
  color: #211d1d;
}

.testimonial__quote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial__quote-mark {
  width: 80px;
  opacity: 0.8;
}

.testimonial__quote blockquote p {
  font-family: "Instrument Sans", Helvetica;
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  color: #5b5959;
  line-height: 1.6;
}

.testimonial__quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Instrument Sans", Helvetica;
  font-weight: 600;
  font-size: 1rem;
  color: #121212;
  margin-top: 0.5rem;
}

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__pagination {
  font-family: "Instrument Sans", Helvetica;
  font-size: 1rem;
  letter-spacing: 12px;
}
/* ─── Shared layout wrapper ─────────────────────── */
.container {
  width: 90%;
  max-width: var(--page-max);
  margin-inline: auto;
 
}
.small-container {
 width: 90%;
  max-width: var(--page-min);
  margin-inline: auto;

}
/* ─── NAV BAR (shared) ───────────────────────────── */
.top-border-box {
position: fixed;
    padding: 2px;
    color: #fff;
    z-index: 999;
    width: 100%;
	top: 0;
}

/* Top Border Only */
.top-border-box::before {
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #F99F20 13%, #F05325 40%, #E04A39 53%, #B7356C 80%, #9C288F 96%);
    background-size: 400% 400%;
    animation: topBorderMove 5s linear infinite;
}
.breadcrumb  nav a {
    color: #78818c;
    text-decoration: none;
}
.page-template-industry .blog-page {
    padding-block: clamp(3rem, 6vw, 4rem);
}
/* Animation */
@keyframes topBorderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.site-header {
 position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
  z-index: 9;
}
.contact-hero__right .play-btn {
	transform: none;
}
/* Scroll BG class */
.site-header.bgcolor {
  background: #fff;
  backdrop-filter: blur(10px);
  padding: 0 40px;
}
.site-header__inner {
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    max-width: 1600px;
    margin: 0 auto;
    width: 90%;
}

.site-header__logo {width:150px;}

.site-header__nav {
  display:flex;
  gap: 40px;
  align-items:center;
}

.site-header__nav a,
.dropdown-toggle {
  text-decoration:none;
  color:#000;
  background:none;
  border:none;
  cursor:pointer;
  font-family: var(--font-two);
  display: flex;
    align-items: center;
    gap: 5px;
}

/* ================= DESKTOP DROPDOWN ================= */
.dropdown {position:relative;}

.dropdown-menu {
position: absolute;
    top: 28px;
    left: 0;
    background: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    border-radius: 10px;
}
.dropdown-menu a {
    padding: 0 0 15px 0;
    border-bottom: 1px solid #ebe7e7;
    transition: all 350ms ease;
}
.dropdown-menu a:last-child {
  border: 0;
}
.dropdown-menu a:hover {
  color: var(--red);
  transition: all 350ms ease;
}
@media (min-width:1070px){
  .dropdown:hover .dropdown-menu {
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
}

/* ARROW */
.arrow {
  border: solid black;
  border-width: 0 2px 2px 0;
  padding:3px;
  display:inline-block;
 transform: rotate(45deg) translateX(-4px);
  margin-left:5px;
  transition:0.3s;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
   display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;

  position: relative;
  z-index: 10001; /* 👈 above menu */
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #000;
  transition: 0.3s;
  display: block;
}

/* CLOSE ICON */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE ================= */
@media (max-width:1110px){


  .menu-toggle {
    display: flex;
   
  }

  .site-header__nav {
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:100%;
    background:#fff;

    flex-direction:column;
    align-items:flex-start;
    padding:80px 20px;

    transform:translateX(100%);
    transition:0.4s;
    z-index:10000;
  }

  .site-header__nav.active {
    transform:translateX(0);
  }

  /* OVERLAY */
  .menu-overlay {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.4);
    opacity:0;
    pointer-events:none;
    transition:0.3s;
  }

  .menu-overlay.active {
    opacity:1;
    pointer-events:auto;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position:static;
    max-height:0;
    overflow:hidden;
    opacity:1;
    visibility:visible;
    transform:none;
    transition:max-height 0.3s ease;
    padding: 0;
  }

  .dropdown.active .dropdown-menu {
    max-height:300px;
    margin: 20px 0 0 0;
  }

  .dropdown.active .arrow {
    transform: rotate(-135deg);
  }
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--font-two);
  font-size: clamp(13px, 1vw, 16px);
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

/* ─── Breadcrumb (shared) ────────────────────────── */
.breadcrumb {
  
  margin-inline: auto;
  font-family: var(--font-two);
  font-size: 16px;
  color: #78818c;
  margin: 10rem auto 0;
}
.breadcrumb strong {
  color: var(--navy);
  font-weight: 700;
}

/* ─── Section spacer ────────────────────────────── */
.section-spacer {
  padding-block: clamp(3rem, 6vw, 4rem);
}
.margin-spacer {
  margin-block: clamp(3rem, 6vw, 4rem);
}
.text-center {
  text-align: center;
}
/* ─── Heading helpers ────────────────────────────── */
.heading-xl {
  font-family: var(--font-one);
  font-size: clamp(1.7rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 400;
}

.heading-lg {
  font-family: var(--font-one);
  font-size: clamp(2rem, 5vw, 5.3rem);
  line-height: 0.9;
  font-weight: 400;

}

.heading-md {
  font-family: var(--font-one);
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 400;
}

.txt-red {
  color: var(--red);
}
.txt-navy {
  color: var(--navy);
}
.txt-white {
  color: var(--white);
}
.txt-bold {
  font-weight: 700;
}

/* ─── CTA Buttons ────────────────────────────────── */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 2rem;
  background: var(--red);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--font-two);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-one);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
}

.btn-outline--white {
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline--navy {
  border: 1px solid var(--navy);
  color: var(--navy);
}

.btn-outline--red {
  border: 1px solid var(--red);
  color: var(--red);
}

/* ─── CTA Contact Row ────────────────────────────── */
.cta-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-contact-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-two);
  font-size: clamp(0.875rem, 1.4vw, 1.125rem);
  text-decoration: none;
  white-space: nowrap;
}

.cta-contact-row img {
  width: 1.5rem;
  height: 1.5rem;
}
.brd-left {
  border-right: 1px solid #dedbdb;
}
/* ─── DARK CTA BAND (shared) ─────────────────────── */
.cta-band {
  position: relative;
  background-image: url(../images/cargo.jpg);
  background-size: cover;
  background-position: center;
  padding-block: clamp(4rem, 10vw, 10rem);
}
#services {
    scroll-margin-top: 100px; /* Adjust based on header height */
}
.site-footer__social {
  display: flex;
    gap: 1rem;
    align-items: center;
    margin: 2rem 0 0 0;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background-color: #032041d1;
  z-index: 0;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.cta-band__heading {
  font-family: "Instrument Sans", Helvetica;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
}

.cta-band__heading .txt-red {
  color: var(--red);
  font-weight: 700;
}

.cta-band__sub {
  font-family: var(--font-one);
  font-size: clamp(1rem, 1.3vw, 1.875rem);
  color: var(--white);
  max-width: 800px;
}

/* ─── FOOTER (shared) ────────────────────────────── */
.site-footer {
  background: var(--white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid #eee;
  width: 90%;
  margin: 0 auto;
}

.site-footer__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 25% 20% 20% 17%;
  gap: 2rem 3rem;
  align-items: start;
}

.site-footer__col-label {
  font-family: "Instrument Sans", Helvetica;
  font-weight: 600;
  color: #919191;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.site-footer__col-value {
  font-family: var(--font-one);
  font-weight: 400;
  color: #000;
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  line-height: 1.75;
}

.site-footer__brand {
  font-family: var(--font-one);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(0.85rem, 1.1vw, 1.1rem);
  line-height: 1.6;
  max-width: 300px;
}
nav.site-footer__col-value a {
    font-size: 15px;
}
p.site-footer__col-value {
    font-size: 15px;
}
.site-footer__social img {
 height: 25px;
 width: 25px;
 object-fit: contain;
}

.site-footer__bottom {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__copy {
  font-family: var(--font-one);
  font-size: 0.875rem;
  color: #000;
  opacity: 0.7;
}

.site-footer__copy .txt-bold {
  font-weight: 700;
}

/* ─── why-choose card grid ───────────────────────── */
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 3rem;
}



.why-card__icon {
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.why-card__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.why-card__text {
  font-family: var(--font-one);
  font-size: clamp(0.9rem, 1.2vw, 1.225rem);
  line-height: 1.5;
  color: var(--white);
  max-width: 230px;
    margin: 30px 0 0 0;
}

.why-card__text strong {
  font-weight: 700;
}

.carousel {
  width: 100%;
}

.carousel-cell {
  width: 100%;
}
.flickity-page-dots {
  bottom: -30px;
}
.combo-slider p {
  color: #5B5A5A;
  font-family: var(--font-one);
  font-size: 1.2em;
  padding: 20px 0;
  max-width: 550px;
	line-height:1.3;
}
.flickity-page-dots .dot {
  width: 10px;
  height: 10px;
  opacity: 0.4;
  background: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 1.1;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: #ff4d4d;
  transform: scale(1.2);
}
.custom-pagination {
  display: flex;
  justify-content: flex-start;
  gap: 15px;

}

.page-num {
  cursor: pointer;
  opacity: 0.4;
  position: relative;
  font-weight: bold;
}

.page-num::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #000;
  transition: 0.3s;
}

.page-num.active {
  opacity: 1;
}

.page-num.active::after {
  width: 100%;
}
.avatar-section {
    display: flex;
    gap: 20px;
    align-items: center;
}
 .avatar-section b {
  color: #131313;
    font-family: var(--font-one);
    font-size: 15px;
    font-weight: 600;

 }
.star {
    display: flex;
    gap: 5px;
}


/* ─── ABOUT US PAGE ─────────────────────────────── */

/* WHY CHOOSE - reuse index styles via globals */
.why-section {
  position: relative;
  overflow: hidden;
}

.why-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.why-section__overlay {
  position: absolute;
  inset: 0;
  background: #032041db;
  z-index: 1;
}

.why-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-block: clamp(4rem, 12vw, 15rem);
}

.why-section__left {
  display: block;
  flex-direction: column;
  gap: 1.25rem;
}

.why-section__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-block: 2.5rem;
}

.why-section__contact-text {
  font-family: var(--font-two);
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  margin: 20px 0 40px 0;
}

/* ABOUT HERO */
.about-hero {
  background: #fff;
  padding: 10rem 0;
}



.about-hero__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 7rem);
  align-items: center;
}

.about-hero__lead {
  font-family: var(--font-one);
  font-size: clamp(1.1rem, 2vw, 2.5rem);
  color: var(--navy);
  line-height: 1.3;
  font-weight: 400;
  max-width: 600px;
}

.about-hero__body {
 font-family: var(--font-one);
    font-size: clamp(0.9rem, 1.5vw, 2rem);
    color: var(--muted);
    line-height: 1.3;
    padding: 30px 0 50px 0;
    max-width: 650px;
}

.about-hero__stats {
  display: flex;
  gap: 10rem;
  flex-wrap: wrap;
  border-top: 1px solid  var(--red);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
.stat-item__value sup{
   font-size: clamp(1rem, 1.8vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  top: -5px;
  position: relative;
}
.stat-item b {
  font-family: var(--font-one);
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 500;
  color: var(--navy);
}
.stat-item__value {
  font-family: var(--font-one);
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  display: block;
}
.circle-locate {
    position: absolute;
    z-index: 2;
    right: 0;
}
.about-hero__img-wrap {
  position: relative;
}

.about-hero__img {
  width: 100%;
  border-radius: clamp(20px, 3vw, 54px) clamp(130px, 10vw, 250px)
    clamp(20px, 3vw, 54px) clamp(20px, 3vw, 54px);
  object-fit: cover;
  aspect-ratio: 1/1;
  position: relative;
}

.about-hero__video-badge {
  position: absolute;
  top: 2rem;
  right: -1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(90px, 8vw, 134px);
  height: clamp(90px, 8vw, 134px);
}

.about-hero__video-badge img:first-child {
  width: 100%;
  height: 100%;
}

.about-hero__play {
  position: absolute;
  width: 30%;
  height: 30%;
  object-fit: contain;
}

.circle {
  position: relative;
  width: 120px;
  height: 120px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating text */
.text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

.text p {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 12px;
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
}

.text p span {
  position: absolute;
  left: 50%;
  transform-origin: 0 80px;
}

/* Play Button */
.play-btn {
width: 100px;
    height: 100px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
    transform: translateX(4px) translateY(-5px);
}

.play-btn svg {
    width: 30px;
    height: 30px;
    overflow: visible;
}

/* Rotation animation */
@keyframes rotateText {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* TEAM */
.team {
  background: #fff;
  padding: 6rem 0 10rem 0;
}

.team__heading {
  margin-bottom: 1rem;
}

.team__sub {
  font-family: var(--font-one);
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  color: var(--muted);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.team__heading {
  line-height: 1.1;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 5rem 0 0 0;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.linkeden {
  position: absolute;
    right: 0;
}
.team-description {
    padding: 10px 40px;
}
p.team-card__role {
    padding: 10px 0 0;
}
.team-card__img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  border-radius: clamp(20px, 3vw, 54px) clamp(50px, 8vw, 250px)
    clamp(20px, 3vw, 54px) clamp(20px, 3vw, 54px);
    position: relative;
}

.team-card__name {
  font-family: var(--font-one);
  font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  color: var(--navy);
}

.team-card__role {
  font-family: var(--font-one);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #676565;
}
/* ─── BLOG PAGE ─────────────────────────────────── */

.blog-page__title {
  margin-bottom: 2.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.blog-card {
  background: #f9f8f3;
  border-radius: 60px 150px 60px 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.blog-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
 border-radius: 60px 120px 60px 60px;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem)
    clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.blog-card__date {
  font-family: var(--font-one);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #979797;
}

.blog-card__heading {
  font-family: var(--font-one);
    font-size: clamp(0.95rem, 1.2vw, 1.4rem);
    line-height: 1.4;
    color: var(--navy);
    font-weight: 700;
    max-width: 300px;
}

.blog-card__excerpt {
  font-family: var(--font-one);
    font-size: clamp(0.8rem, 1vw, 1.3rem);
    color: #676565;
    line-height: 1.5;
    flex: 1;
    max-width: 300px;
}

.blog-card__read-more {
  font-family: var(--font-one);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
}

.blog-card__read-more:hover {
  text-decoration: underline;
}
/* ─── CONTACT PAGE ──────────────────────────────── */

/* CONTACT HERO */
.contact-hero {
  background: #fff;
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin: 5rem 0;
}
.contact-hero__right {
  position: relative;
}
.contact-hero__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-btn svg {
 margin: 0 5px 0 0;
}
.contact-btn .hover-outline-anim.red-hover:hover svg path {
  fill: var(--red);
}
.contact-btn a {
  display: block;
    text-align: center;
    font-size: 2rem;
        padding: 25px;
}
.contact-details {
  display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--navy);
  border-radius: 100px;
  color: var(--navy);
  font-family: var(--font-two);
  font-size: clamp(0.875rem, 1.3vw, 1.25rem);
  text-decoration: none;
  width: fit-content;
}
.animate-section  {
 
  opacity:0;
}
.contact-detail-btn img {
  width: 22px;
  height: 22px;
}
.contact-detail-btn:hover {
  background: var(--navy);
  color: #fff;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-two);
  font-size: clamp(0.95rem, 1.5vw, 1.6rem);
  color: #000;
  font-style: normal;
  margin: 1rem 0;
  line-height: 1.5;
}

.contact-schedule-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--red);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-two);
  font-size: clamp(1rem, 2vw, 2rem);
  text-decoration: none;
  font-weight: 500;
  max-width: 500px;
}

.contact-schedule-btn img {
  width: 32px;
  height: 32px;
}

.contact-hero__map-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: clamp(20px, 3vw, 54px) clamp(130px, 10vw, 250px)
    clamp(20px, 3vw, 54px) clamp(20px, 3vw, 54px);
}

/* CONSULTATION SECTION */
.consult-section {
  background: var(--navy);
  padding-block: clamp(4rem, 7vw, 10rem);
}

.consult-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.consult-section__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.consult-section__desc {
font-family: var(--font-one);
    font-size: clamp(0.95rem, 1.6vw, 2.5rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    max-width: 600px;
}

.consult-section__desc strong {
  font-weight: 600;
 color: rgba(255, 255, 255, 0.7);
}

/* FORM */
.consult-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.custom-select{
    position: relative;
}

.custom-select select{
    width: 100%;
    padding: 14px 45px 14px 15px;
    font-size: 15px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
}

/* Filled Down Arrow */
.custom-select::after{
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    
    width: 0;
    height: 0;

    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #000;

    pointer-events: none;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-one);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.8;
}

.form-field input,
.form-field select {
background: #fff;
    border: none;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    font-family: var(--font-one);
    font-size: clamp(0.9rem, 1.2vw, 1.3rem);
    color: #919191;
    outline: none;
    width: 100%;
    appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  box-shadow: 0 0 0 2px var(--red);
}

.consult-form__submit {
  margin-top: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  align-self: flex-start;
  gap: 0.5rem;
}
.d2d-specialize__inner h2 {
    text-align: center;
}
/* ─── DOOR TO DOOR PAGE ─────────────────────────── */

.d2d-hero {
  background: #fff;
}
.d2d-spec-img {
    text-align: right;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 0 50px 0;
}
.blog-page {
  padding-block: clamp(3rem, 6vw, 7rem);
}
.d2d-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin: 5rem 0;
}

.d2d-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.d2d-hero__lead {
  font-family: var(--font-one);
    font-size: clamp(1.1rem, 2vw, 2.5rem);
    color: var(--navy);
    line-height: 1.3;
    font-weight: 400;
    max-width: 650px;
}

.d2d-hero__body {
font-family: var(--font-one);
    font-size: clamp(1em, 1.5vw, 2rem);
    color: var(--muted);
    line-height: 1.3;
    
    max-width: 650px;
}

.d2d-hero__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: clamp(20px, 3vw, 54px) clamp(130px, 10vw, 250px) clamp(20px, 3vw, 54px) clamp(20px, 3vw, 54px);
}

/* SPECIALIZE */
.d2d-specialize {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 10rem);
}

.d2d-specialize__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.d2d-specialize__overlay {
  position: absolute;
  inset: 0;
  background: #032041d4;
  z-index: 1;
}

.d2d-specialize__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.d2d-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.d2d-spec-card {
  border: 1px solid var(--red);
  border-radius: 30px 75px 30px 30px;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.d2d-spec-card__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.d2d-spec-card h3 {
  font-family: var(--font-two);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.4rem);
  color: #fff;
}

.d2d-spec-card p {
  font-family: var(--font-two);
  font-weight: 300;
  font-size: clamp(0.85rem, 1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* NETWORK */
.d2d-network {
  background: #fff;
}

.d2d-network__text {
 font-family: var(--font-one);
    font-size: clamp(1rem, 2vw, 2.2rem);
    color: var(--navy);
    line-height: 1.5;
    max-width: 950px;
}

/* WHY CHOOSE */
.d2d-why {
  background: #fff;
 padding: 5rem 0 10rem 0;
}
a.hover-outline-anim.blck-outline.outline-white {
    border: 0;
    color: #fff;
}
a.hover-outline-anim.blck-outline.outline-white::before {
 background-color: var(--red);
    position: absolute;
    z-index: -1;
}
a.hover-outline-anim.blck-outline.outline-white:hover {
  border: 0;
    color: #fff;
    position: relative;
    z-index: 2;
}
.d2d-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(5rem, 5vw, 5rem);
  align-items: start;
}

a.hover-outline-anim.blck-outline.outline-white {
    border: 1px solid var(--muted);
    background-color: transparent;
    color: var(--muted);
    font-weight: 500;
}

.d2d-why__divider {
 border: none;
    border-top: 1px solid var(--muted);
    margin: 2rem 0;
}

.d2d-why__contact-text {
  font-family: var(--font-two);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #032041;
}

/* WHY CARD LIGHT VARIANT */
.why-card--light .why-card__text {
  color: #494949;
}
.why-card__text--dark {
  color: #494949 !important;
}
* ─── BLOG ARTICLE PAGE ─────────────────────────── */

.article-page {
  background: #f9f8f3;
}

.article-page__inner {
  background: #FAF9F4;
  padding: 4rem;
  border-radius: clamp(20px, 3vw, 54px) clamp(60px, 8vw, 150px) clamp(20px, 3vw, 54px) clamp(20px, 3vw, 54px);
}

.article-page__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-page__title {
  font-family: var(--font-one);
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.article-page__date {
  font-family: var(--font-one);
  font-size: 0.875rem;
  color: #979797;
}

.article-page__hero-img {
  width: 100%;
  aspect-ratio: 20/7;
  object-fit: cover;
  border-radius: clamp(20px, 3vw, 54px) clamp(60px, 8vw, 150px)
    clamp(20px, 3vw, 54px) clamp(20px, 3vw, 54px);
}

.article-page__content p {
  font-family: var(--font-one);
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  color: #202020;
  line-height: 1.7;
  margin: 20px 0;
}

.article-page__content h2 {
  font-family: var(--font-one);
  font-size: clamp(1.1rem, 1.8vw, 1.75rem);
  font-weight: 700;
  color: #202020;
  margin-top: 0.5rem;
}
.articel-desc {
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
}
/* RELATED */
.article-page__related {
  border-top: 1px solid var(--red);
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}

.article-page__related-title {
  font-family: var(--font-one);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.related-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.5rem;
  transition: background 0.2s;
}



.related-card__img {
  width: 90px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px 30px 10px 10px;
}

.related-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.related-card__body h3 {
  font-family: var(--font-one);
  font-weight: 700;
  font-size: clamp(0.85rem, 1vw, 1.3rem);
  color: var(--navy);
  line-height: 1.4;
  max-width: 380px;
}
article.article-page.section-spacer {
    padding: 5rem 0;
}
.related-card__body span {
 font-family: var(--font-one);
    font-size: 1rem;
    text-decoration: none;
    margin: 20px 0 0;
}

.saber-hero {
  background: #fff;
}

.saber-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin: 5rem 0;
}

.saber-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.saber-hero__lead {
     font-family: var(--font-one);
    font-size: clamp(1.1rem, 2vw, 2.5rem);
    color: var(--navy);
    line-height: 1.3;
    font-weight: 400;
    max-width: 600px;

}


.accordion-item{
    border-bottom:1px solid #d9d3ca;
}

.accordion-header{
    width:100%;
    background:transparent;
    border:none;
    outline:none;
    padding:16px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    transition:0.3s ease;
}

.accordion-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.flag{
    font-size:16px;
}
span.flag img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.country-name{
    font-size:1.5em;
    font-weight:600;
    color:#032041;
    text-transform:uppercase;
    font-family: var(--font-one);
}

/* Arrow CSS */
.arrow{
    width:5px;
    height:5px;
    border-right:2px solid var(--red);
    border-bottom:2px solid var(--red);
    transform:rotate(45deg);
    transition:0.3s ease;
}

/* Active Arrow Rotate */
.accordion-item.active .arrow{
    transform:rotate(-135deg);
    margin-top:5px;
}

.accordion-content{
    display:none;
    padding:0 15px 20px;
    color:#555;
    font-size:1.3em;
    line-height:1.6;
}
.saber-countries {
    padding: 8rem 0;
}

.saber-hero__body {
 font-family: var(--font-one);
    font-size: clamp(1rem, 1.5vw, 2rem);
    color: var(--muted);
    line-height: 1.3;
    max-width: 650px;
}

.saber-hero__cert-box {
  border: 1px solid #bcbcbc;
    border-radius: clamp(20px, 3vw, 54px) clamp(130px, 10vw, 250px) clamp(20px, 3vw, 54px) clamp(20px, 3vw, 54px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    aspect-ratio: 1 / 1;
    background: #fff;
}

.saber-hero__cert-img {
  max-width: 50%;
  height: auto;
  object-fit: contain;
}
.contact-detail-btn:hover svg  path {
  fill: #fff;
}
/* COUNTRIES */
.saber-countries__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
}

.saber-country-item {
  font-family: var(--font-one);
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--navy);
  padding: clamp(0.75rem, 1.5vw, 1.3rem) 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.outline-btn {
  position: relative;
  padding: 12px 30px;
  font-size: 16px;
  color: var(--red);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

/* Gradient Border */
.outline-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50px;
  background: var(--red);
  background-size: 300% 300%;
  animation: borderAnim 4s linear infinite;

  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Fill Layer */
.outline-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

/* Hover Effect */
.outline-btn:hover::after {
  transform: scaleX(1);
}

.outline-btn:hover {
  color: #fff;
}

/* Animation */
@keyframes borderAnim {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.hover-outline-anim {
  position: relative;
  padding: 12px 30px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50px;
}

/* Animated outline */
.hover-outline-anim::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #fff;
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50px;
}
.hover-outline-anim.red-hover::before {
  border: 1px solid var(--red);
 
}
.hover-outline-anim.red-hover:hover {
 color: var(--red);
}
/* Hover */
.hover-outline-anim:hover::before {
  transform: scale(1);
}
.hover-outline-anim:hover {
  background-color: transparent;
}
.hover-outline-anim.red-hover.outline-white {
    background-color: transparent;
    border: 1px solid #fff;
}
.hover-outline-anim.red-hover.outline-white::before {
    border: 0;
    background-color: #fff;
    z-index: -1;
}
.hover-outline-anim.red-hover.outline-white:hover {
  color: var(--red);
}
/* Modal Background */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

/* Active */
.video-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Video Box */
.video-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  transform: scale(0.7);
  transition: 0.4s ease;
}

/* Zoom animation */
.video-modal.active .video-content {
  transform: scale(1);
}

/* Iframe */
.video-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.inner .site-header {
  background: #D8EAFF;
}
.about-hero__img-wrap {
    margin: 50px 0 0 0;
}

/* ─── RESPONSIVE ──────────────────────────────────── */


@media screen and (min-width: 200px) and (max-width: 683px) {
  .about-strip__inner {
    grid-template-columns: 1fr;
  }

  .about-strip__img-wrap {
    order: -1;
  }

  .testimonial__inner {
    grid-template-columns: 1fr;
  }

  .industries__grid {
    grid-template-columns: 1fr;
  }
   .site-header__inner {
    grid-template-columns: auto 1fr auto;
    flex-wrap: wrap;
  }


  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
    .about-hero__inner {
    grid-template-columns: 1fr;
  }
  .about-hero__img-wrap {
    order: -1;
  }
	p.site-footer__col-label {
    border-top: 1px solid #efefef;
    padding: 20px 0 0 0;
}
	.cta-band__sub {
		line-height: 1.2;
	}
	.site-footer__brand {
		max-width: 100%;
	}
  .about-hero__video-badge {
    right: 0.5rem;
  }
	h1.heading-xl span br {
    display: none;
}
   .blog-grid {
    grid-template-columns: 1fr;
  }
   .contact-hero__inner {
    grid-template-columns: 1fr;
  }
  .contact-hero__right {
    order: -1;
  }
  .contact-hero__inner {
    margin: 2rem 0;
  }
	.article-page__inner {
		padding: 2rem;
	}
  .consult-section__inner {
    grid-template-columns: 1fr;
  }
  .contact-schedule-btn {
    max-width: 100%;
  }
   .d2d-hero__inner {
    grid-template-columns: 1fr;
    margin: 3rem 0;
  }
  .d2d-hero__img-wrap {
    order: -1;
  }
  .d2d-spec-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .d2d-why {
    padding: 2rem 0 5rem 0;
  }
  .d2d-why__inner {
    grid-template-columns: 1fr;
  }
    .related-grid {
    grid-template-columns: 1fr;
  }
  .related-card {
    grid-template-columns: 70px 1fr;
  }
    .saber-hero__inner {
    grid-template-columns: 1fr;
  }
  .saber-hero__img-wrap {
    order: -1;
  }
  .site-header__nav a, .dropdown-toggle {
    font-size: 1.5rem;
  }
  .hero {
    min-height: 60svh;
    height: 60vh;
  }
  .service-card__icon-wrap img {
    max-width: 50px;
  }
  .site-header.bgcolor {
    padding: 0 10px;
  }
  .why-section__right {
    margin: 3rem 0;
}
.testimonial-wrap-position {
    align-items: flex-start;
    display: flex;
    gap: 2rem;
    position: absolute;
    top: -101px;
    left: 0;
    max-width: 100%;
}
.testimonial.section-spacer {
    position: relative;
    padding: 10rem 0 5rem 0;
}
.brd-left {
    border-right: 0;
    margin: 0 0 20px 0;
}
.about-hero__text {
  grid-template-columns: 1fr;
}
.about-hero__stats {
  gap: 5rem;
}
.why-section__inner {
  grid-template-columns: 1fr;
}
.circle {
  width: 90px;
  height: 90px;
}
.about-hero {
  padding: 9rem 0 0 0;
}
.team__grid {
  grid-template-columns: repeat(2, 1fr);
  padding: 0 0 0 0;
}
.team-description {
  padding: 10px 20px;
}
.team {
  padding: 5rem 0;
}
.saber-countries {
  padding: 5rem 0;
}
.dropdown-menu a {
  font-size: 1.1em;
}
	.services__grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* @media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .industries__grid {
    grid-template-columns: 1fr;
  }
    .site-footer__inner {
    grid-template-columns: 1fr;
  }
    .team__grid {
    grid-template-columns: 1fr;
  }
    .d2d-spec-grid {
    grid-template-columns: 1fr;
  }
} */
@media screen and (min-width: 684px) and (max-width: 1024px) {
  .why-section__inner {
    grid-template-columns: 1fr 1fr;
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    min-height: 60svh;
    height: 60vh;
  }
  .about-hero__text {
    grid-template-columns: 1fr;
  }
  .why-section__inner {
    grid-template-columns: 1fr;
  }

  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
   .d2d-spec-grid {
    grid-template-columns: 1fr 1fr;
  }
  .d2d-why__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 100%;
  }
  .d2d-why {
    padding: 3rem 0 10rem 0;
  }
}
.video-modal{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.85);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
    z-index:9999;
    padding:20px;
}

.video-modal.active{
    opacity:1;
    visibility:visible;
}

/* MODAL CONTENT */
.video-modal-content{
    position:relative;
    width:100%;
    max-width:1000px;
    transform:scale(.8);
    transition:0.4s;
}

.video-modal.active .video-modal-content{
    transform:scale(1);
}

/* VIDEO */
.video-modal video{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

/* CLOSE BUTTON */
.close-video{
    position:absolute;
    top:-18px;
    right:-18px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#111;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
    z-index:10;
}

.close-video:hover{
    transform:rotate(90deg);
    background:var(--red);
    color:#fff;
}
.brand-wrap {
  text-align: center;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    /* transform: translateY(-150px); */
    position: absolute;
    top: -60px;
}
.brand-logo {
  position: relative;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    padding: 20px;
}
/* RESPONSIVE */
@media(max-width:768px){

    .video-btn{
        padding:14px 25px;
        font-size:16px;
    }

    .video-btn i{
        width:42px;
        height:42px;
        font-size:15px;
    }

    .close-video{
        width:42px;
        height:42px;
        top:-14px;
        right:-10px;
    }
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    display: block;
    color: #000;
    text-decoration: none;
    line-height: 1.9;
}
 .industry-filter{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:30px 0;
}

.industry-filter a{
    padding:10px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    text-decoration:none;
    color:#000;
}

.industry-filter a.active,
.industry-filter a:hover{
    background:#d71920;
    color:#fff;
    border-color:#d71920;
}
.wa-floating{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
    animation: waPulse 2s infinite;
    transition: all .3s ease;
}

.wa-floating img{
    width: 35px;
    height: 35px;
}

.wa-floating:hover{
    transform: translateY(-5px) scale(1.08);
}

@keyframes waPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media(max-width:768px){
    .wa-floating{
        width:55px;
        height:55px;
        right:15px;
        bottom:15px;
    }

    .wa-floating img{
        width:30px;
        height:30px;
    }
}
.site-footer__copy a {
    font-family: var(--font-one);
    font-size: 0.875rem;
    color: #000;
  
}
.consult-form__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
}

.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.consult-form__submit.loading .btn-text {
    display: none;
}

.consult-form__submit.loading .btn-loader {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #fff;
    padding: 30px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: red;
    color: #fff;
    padding: 30px;
}
span.btn-text {
    display: flex;
    gap: 10px;
    align-items: center;
}
.industry-item a:hover {
    color: var(--red);
}
.industry-item:hover span {
	 color: #2a2645;
    font-weight: 600;
}
.industry-item a span {
	font-weight: 400;
	display: block;
	margin: 0 0 10px 0;
}
.industry-item a {
	 text-decoration: none;
    color: #F44336;
    display: block;
    font-weight: 500;
}
.industry-item {
	text-align: left;
}
.articel-desc ul li {
    list-style: disc;
    font-size: 1.2em;
    padding: 10px 0;
}

.articel-desc ul {
    margin: 0 0 0 20px;
    padding: 20px 0;
}
.articel-desc {
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
}
.articel-desc strong {
	font-weight: 600;
}
.service-card a {
    color: #000;
    font-weight: 600;
    display: block;
}
.service-card:hover a {
	color: var(--red);
}

a.menu_active_text {

    color: #ed2024;
    border-bottom: 1px solid #ed2024;

}
