/* =========================================================
   VAIJAYANTI GARMENTS — corporate site stylesheet
   Design language: tailoring / textile industry.
   A tailor's measuring-tape ruler is the recurring divider
   motif; cards carry a folded fabric-tag corner instead of
   a generic drop shadow. Built with plain CSS custom
   properties — no framework.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@400;500;600;700&display=swap");

:root {
  /* --- Color --- */
  --navy: #1b2a4a;
  --navy-deep: #101a30;
  --thread-red: #d2040c;
  --thread-red-dark: #d2040c;
  --thread-blue: #3e6fa6;
  --canvas: #f3f0e8;
  --canvas-warm: #ece7da;
  --paper: #fffdf9;
  --charcoal: #22262b;
  --ink-soft: #52565c;
  --stitch: #d8d3c3;
  --stitch-strong: #c3bca6;
  --success: #3f7a4f;
  --error: #b3382c;

  /* --- Type --- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Spacing scale --- */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;

  /* --- Shape / elevation --- */
  --radius-s: 4px;
  --radius-m: 8px;
  --shadow-card: 0 1px 2px rgba(16, 26, 48, 0.06), 0 10px 28px -14px rgba(16, 26, 48, 0.28);
  --shadow-lifted: 0 20px 44px -16px rgba(16, 26, 48, 0.38);

  --container: 1200px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--navy); }
:focus-visible { outline: 2px solid var(--thread-blue); outline-offset: 3px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-4); }
@media (max-width: 640px) { .container { padding-inline: var(--sp-3); } }

section { padding-block: var(--sp-6); }
@media (max-width: 780px) { section { padding-block: var(--sp-5); } }

/* ---------- Section heading pattern ---------- */
.section-head { max-width: 640px; margin-bottom: var(--sp-5); }
.section-head.centered { max-width: 680px; margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); letter-spacing: -0.01em; }
.section-head p { margin-top: var(--sp-2); color: var(--ink-soft); font-size: 1.05rem; max-width: 60ch; }
.section-head.centered p { margin-inline: auto; }

/* ---------- Measuring-tape rule (signature divider) ---------- */
.tape-rule {
  --tick: 12px;
  height: 22px;
  background-image:
    repeating-linear-gradient(90deg, var(--stitch-strong) 0 1.5px, transparent 1.5px 10px),
    repeating-linear-gradient(90deg, var(--stitch-strong) 0 1px, transparent 1px var(--tick));
  background-position: 0 100%, 0 55%;
  background-size: 100% 10px, 100% 7px;
  background-repeat: repeat-x;
  border-bottom: 2px solid var(--stitch-strong);
  opacity: 0.85;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--thread-red); color: #fff; box-shadow: 0 10px 24px -10px rgba(192, 57, 43, 0.55); }
.btn-primary:hover { background: var(--thread-red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--paper); border: 1.5px solid rgba(255, 255, 255, 0.55); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-line { color: var(--navy); border-bottom: 2px solid var(--thread-red); padding: 0.2rem 0; border-radius: 0; }
.btn-line:hover { color: var(--thread-red); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  height: 68px;
  border-color: var(--stitch);
  box-shadow: 0 6px 24px -14px rgba(16, 26, 48, 0.3);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand svg { height: 38px; width: auto; flex-shrink: 0; }
.brand-logo { height: 62px; width: auto; flex-shrink: 0; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--navy); letter-spacing: -0.01em; line-height: 1.1; }
.brand-name span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: var(--thread-red); letter-spacing: 0.03em; margin-top: 2px; }

.main-nav ul { display: flex; align-items: center; gap: var(--sp-4); }
.main-nav a {
  position: relative;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--charcoal);
  padding-block: 6px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--thread-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--thread-red); }
.main-nav .btn-primary { padding: 0.6rem 1.3rem; font-size: 0.92rem; }
.main-nav .btn-primary::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 950;
}
.hamburger span { display: block; height: 2px; width: 100%; background: var(--navy); transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

section.top_header {
    padding: 10px;
    text-align: center;
    background: #c0392b;
    height: 42px;
}

section.top_header p {
    color: #ffff;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 14px;
}

/* -- */
  .site-header {
    flex-wrap: wrap;
    height: auto;
    background: #fff;
}

.site-header .container.top_header_container {
    padding: 10px 10px;
    justify-content: center;
    background: #c0392b;
    position: relative;
    overflow: visible;
}
.site-header .container.top_header_container:before{
   content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #c0392b;
    z-index: -1;
}

.site-header .container.menu_container {
    padding: 5px 10px;
}

.top_header_content p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.site-header.scrolled .container.top_header_container {
    display: none;
    transition: all 300ms ease-in-out;
}


@media (max-width: 880px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--paper);
    box-shadow: -12px 0 40px rgba(16, 26, 48, 0.25);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: calc(var(--header-h) + var(--sp-4)) var(--sp-4) var(--sp-4);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .main-nav .btn-primary { margin-top: var(--sp-2); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
    padding-top: 130px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 26, 48, 0.92) 0%, rgba(16, 26, 48, 0.78) 42%, rgba(27, 42, 74, 0.55) 68%, rgba(27, 42, 74, 0.35) 100%);
    opacity: 0.5;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 660px; }
.hero-eyebrow { color: #ffb3a8; font-weight: 600; font-size: 0.95rem; margin-bottom: var(--sp-2); }
.hero h1 {
    color: #fff;
    letter-spacing: -0.015em;
    animation: heroIn 0.9s 0.15s cubic-bezier(.2,.7,.2,1) forwards;
    text-transform: uppercase;
    font-size: 42px;
    text-align: left;
    display: inline-block;
}
.hero p.lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  margin-top: var(--sp-3);
  max-width: 52ch;
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.9s 0.32s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-cta { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-top: var(--sp-4);
  opacity: 0; transform: translateY(16px); animation: heroIn 0.9s 0.48s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-stats {
  display: flex; gap: var(--sp-5); margin-top: var(--sp-6);
  opacity: 0; transform: translateY(16px); animation: heroIn 0.9s 0.62s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-stats div strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.9rem; }
.hero-stats div span { color: rgba(255, 255, 255, 0.72); font-size: 0.88rem; }

@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero p.lead, .hero-cta, .hero-stats { animation: none; opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .hero-stats { gap: var(--sp-4); flex-wrap: wrap; }
  .hero { min-height: 78vh; padding-top: 100px; }
  .hero-bg img { object-position: center 30%; }
}
section#home .container {
    width: 100%;
    max-width: 1300px;
}
.main-nav a.btn.btn-primary {
    color: #fff;
}
/* =========================================================
   ABOUT
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-m); width: 100%; aspect-ratio: 4/5; object-fit: contain; }
.about-media .tag-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--navy);
  color: #fff;
  padding: var(--sp-3) var(--sp-3);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-lifted);
  max-width: 220px;
}
.about-media .tag-badge strong { display: block; font-family: var(--font-display); font-size: 1.7rem; }
.about-media .tag-badge span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.78); }

.about-copy .kicker { color: var(--thread-red); font-weight: 600; font-size: 0.95rem; margin-bottom: var(--sp-1); }
.about-copy h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: var(--sp-3); }
.about-copy p { color: var(--ink-soft); margin-bottom: var(--sp-2); max-width: 58ch; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2) var(--sp-3); margin-block: var(--sp-3) var(--sp-4); }
.about-points li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--charcoal); }
.about-points svg { flex-shrink: 0; margin-top: 3px; color: var(--thread-red); }
.about-copy a.btn.btn-dark {
    margin-top: 10px;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .about-media .tag-badge { left: 16px; bottom: -18px; }
  .about-points { grid-template-columns: 1fr; }
}

/* reveal-on-scroll utility */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   MISSION / VISION
   ========================================================= */
.mv-section { background: var(--canvas); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.mv-card {
  background: var(--paper);
  border-radius: var(--radius-m);
  padding: var(--sp-5) var(--sp-4);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.mv-card.mission::before { background: var(--thread-red); }
.mv-card.vision::before { background: var(--thread-blue); }
.mv-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-3);
}
.mv-card.mission .mv-icon { background: rgba(192, 57, 43, 0.1); color: var(--thread-red); }
.mv-card.vision .mv-icon { background: rgba(62, 111, 166, 0.12); color: var(--thread-blue); }
.mv-card h3 { font-size: 1.5rem; margin-bottom: var(--sp-2); }
.mv-card p { color: var(--ink-soft); }
@media (max-width: 780px) { .mv-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SERVICES (3-card grid)
   ========================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.service-card {
  background: var(--paper);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lifted); }

.service-media { aspect-ratio: 4/3; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-media img { transform: scale(1.07); }
.service-body { padding: var(--sp-3) var(--sp-3) var(--sp-4); }
.service-body h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.service-body p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: var(--sp-3); }
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--navy); font-size: 0.94rem; }
.service-link svg { transition: transform 0.25s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TWO-COLUMN CONTENT BLOCKS
   (Contractual Service / Independent Stockist / Competitive Advantage)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }
.split-media img { border-radius: var(--radius-m); width: 100%; object-fit: cover; }
.split-copy .kicker { color: var(--thread-red); font-weight: 600; font-size: 0.95rem; margin-bottom: var(--sp-1); }
.split-copy h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: var(--sp-3); }
.split-copy p { color: var(--ink-soft); margin-bottom: var(--sp-3); max-width: 58ch; }
.check-list { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: var(--sp-4); }
.check-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.98rem; }
.check-list svg { flex-shrink: 0; margin-top: 2px; color: var(--thread-blue); }

@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: var(--sp-4); }
  .split.reverse .split-media, .split.reverse .split-copy { order: initial; }
}

/* ---------- Logo slider (auto-scroll marquee) ---------- */
.logo-strip { margin-top: var(--sp-4); }
.logo-strip .strip-label { text-align: center; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: var(--sp-2); }
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  width: max-content;
  animation: marqueeScroll var(--marquee-duration, 28s) linear infinite;
}
.marquee:hover .marquee-track,
.marquee.js-paused .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 62px;
  width: auto;
  border-radius: var(--radius-s);
  filter: grayscale(15%);
  opacity: 0.92;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* =========================================================
   VENDORSHIP (full width band)
   ========================================================= */
.vendorship {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-m);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  overflow: hidden;
}
.vendorship::after {
  content: "";
  position: absolute;
  right: -10%; top: -30%;
  width: 60%; height: 160%;
  background: linear-gradient(120deg, rgba(192, 57, 43, 0.18), rgba(62, 111, 166, 0.22));
  transform: rotate(18deg);
}
.vendorship-inner { position: relative; max-width: 760px; }
.vendorship .kicker { color: #ffb3a8; font-weight: 600; font-size: 0.95rem; margin-bottom: var(--sp-1); }
.vendorship h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: var(--sp-3); }
.vendorship p { color: rgba(255, 255, 255, 0.82); margin-bottom: var(--sp-3); max-width: 62ch; }
.vendorship .check-list svg { color: #ffb3a8; }
.vendorship .check-list li { color: rgba(255, 255, 255, 0.92); }
.vendorship .logo-strip .strip-label { color: rgba(255, 255, 255, 0.6); }
.vendorship .marquee-track img { background: #fff; padding: 6px 14px; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio-slider { position: relative; }
.portfolio-track-wrap { overflow: hidden; border-radius: var(--radius-m); }
.portfolio-track { display: flex; transition: transform 0.55s cubic-bezier(.4,.05,.2,1); }
.portfolio-slide { flex: 0 0 100%; position: relative; cursor: zoom-in; }
.portfolio-slide img { width: 100%; height: clamp(320px, 55vw, 520px); object-fit: cover; }
.portfolio-slide .cat-label {
  position: absolute; left: var(--sp-3); bottom: var(--sp-3);
  background: rgba(16, 26, 48, 0.72);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-s);
  font-size: 0.92rem;
  font-weight: 500;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); z-index: 5;
  transition: background 0.2s ease;
}
.slider-btn:hover { background: var(--canvas-warm); }
.slider-btn.prev { left: -22px; }
.slider-btn.next { right: -22px; }
@media (max-width: 640px) { .slider-btn.prev { left: 8px; } .slider-btn.next { right: 8px; } }

.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: var(--sp-3); }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--stitch-strong);
  transition: background 0.25s ease, transform 0.25s ease;
}
.slider-dots button.active { background: var(--thread-red); transform: scale(1.25); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(16, 18, 24, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(90vw, 900px); max-height: 82vh; object-fit: contain; border-radius: var(--radius-s); }
.lightbox .lb-caption { color: rgba(255,255,255,0.8); text-align: center; margin-top: var(--sp-2); font-size: 0.95rem; }
.lb-close, .lb-nav {
  position: absolute;
  color: #fff;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, 0.24); }
.lb-close { top: var(--sp-3); right: var(--sp-3); }
.lb-nav.prev { left: var(--sp-3); top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: var(--sp-3); top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lb-nav.prev { left: 6px; } .lb-nav.next { right: 6px; } }


/* new css */

.hero-slider-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 4px 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .hero-slider::-webkit-scrollbar {
    display: none;
  }

  .hero-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 260px;
    height: 340px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
  }

  .hero-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0) 100%);
    z-index: 1;
  }

  .hero-card .tag {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    background: #ffffff;
    color: #1c1c1c;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 16px;
    margin-bottom: auto;
  }

  .hero-card .caption {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .hero-card.solid {
    background: #cfe3ff;
    justify-content: center;
  }

  .hero-card.solid .caption {
    color: #1c1c1c;
    font-size: 2rem;
    font-style: italic;
    font-family: Georgia, serif;
    line-height: 1.15;
  }

  .hero-card.approach {
    background: #c6f24e;
    justify-content: flex-start;
  }

  .hero-card.approach h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0 0 20px;
  }

  .word-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .word-cloud span {
    background: #ffffff;
    color: #1c1c1c;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 14px;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #e0722a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    z-index: 3;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .slider-btn:hover {
    background: #fff4ec;
    transform: translateY(-50%) scale(1.08);
  }

  .slider-btn.prev { left: -6px; }
  .slider-btn.next { right: -6px; }

  @media (max-width: 900px) {
    .hero-heading h1 { font-size: 2rem; }
    .hero-card { width: 220px; height: 300px; }
    .slider-btn { display: none; }
  }

  @media (max-width: 480px) {
    .hero { padding: 50px 5vw 40px; }
    .hero-heading h1 { font-size: 1.6rem; }
    .badge { font-size: 0.7rem; padding: 5px 12px; }
    .badge.strategy { top: -22px; right: 10px; }
    .badge.professional { bottom: -14px; left: 10px; }
    .hero-card { width: 190px; height: 260px; padding: 14px; }
    .hero-card.solid .caption { font-size: 1.5rem; }
  }


/* =========================================================
   SECTORS
   ========================================================= */
.sectors-section { background: var(--canvas); }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.sector-card {
  background: var(--paper);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lifted); }
.sector-media { aspect-ratio: 5/4; overflow: hidden; }
.sector-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.sector-card:hover .sector-media img { transform: scale(1.08); }
.sector-body { padding: var(--sp-2) var(--sp-3) var(--sp-3); }
.sector-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.sector-body p { font-size: 0.86rem; color: var(--ink-soft); }

@media (max-width: 1040px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sectors-grid { grid-template-columns: 1fr; } }


/* --new css-- */

.sectors-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1257px;
    width: 100%;
    margin: 0 auto;
}
  .sectors-track{
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 12px;
    margin: 0 -4px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
         width: 100%;
  }
  .sectors-track:active{ cursor: grabbing; }
  .sectors-track::-webkit-scrollbar{ display: none; }
  .sectors-track .sector-card{
    flex: 0 0 calc((100% - 3 * 24px) / 4);
    scroll-snap-align: start;
  }
  .sector-card {
    height: 320px;
  }
  .sectors-arrow{
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    background: #ffffff;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .sectors-arrow:hover{ background: #1a1a2e; color: #ffffff; }
  .sectors-arrow[disabled]{ opacity: 0.35; cursor: default; pointer-events: none; }
  .sectors-dots{
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
  }
  .sectors-dots .dot{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    transition: background 0.2s ease, width 0.2s ease;
  }
  .sectors-dots .dot.active{
    background: #1a1a2e;
    width: 18px;
    border-radius: 3px;
  }
.advantage_section_new .container p.kicker{
  max-width:unset;
}
  /* Tablet: ~2.2 cards visible */
  @media (max-width: 1024px){
    .sectors-track .sector-card{
      flex: 0 0 calc((100% - 24px) / 2.2);
    }
  }

  /* Mobile: 1.2 cards visible so the next card peeks in */
  @media (max-width: 640px){
    .sectors-slider{ gap: 6px; }
    .sectors-track{ gap: 14px; }
    .sectors-track .sector-card{
      flex: 0 0 calc((100% - 14px) / 1.2);
    }
    .sectors-arrow {
    width: 36px;
    height: 36px;
    position: absolute;
    z-index: 1;
}
.sectors-slider button.sectors-arrow.sectors-arrow-next {
    right: 0;
}

}



/* =========================================================
   COMPETITIVE ADVANTAGE
   ========================================================= */
.advantage-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-block: var(--sp-3) var(--sp-4); }
.advantage-item { display: flex; gap: var(--sp-2); align-items: center; }
.advantage-item .adv-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--canvas-warm); color: var(--thread-red);
  display: flex; align-items: center; justify-content: center;
}
.advantage-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--charcoal); margin-bottom: 0px; }
.advantage-item p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }


/*----new---*/


.full-container-box {
            display: flex;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            box-sizing: border-box;
            flex-wrap: wrap;
            justify-content: center;
            padding: 10px;
        }

        .card-container-box {
            position: relative;
            width: 32.3%;
            padding: 0;
            align-items: center;
        }

        /* Colored background accent peeking from behind */
        .card-container-box .bg-accent-top {
            position: absolute;
            top: -12px;
            right: -15px;
            width: 140px;
            height: 140px;
            background-color: #2ca5b5;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            border-radius: 10px;
            z-index: 1;
        }

        .card-container-box .bg-accent-bottom {
            position: absolute;
            bottom: -15px;
            right: 10px;
            width: 130px;
            height: 110px;
            background-color: #a81c24;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            z-index: 1;
        }


        .card-container-box .hexagon-card-svg {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            /* filter: invert(14%) sepia(33%) saturate(6266%) hue-rotate(336deg) brightness(123%) contrast(148%); */
        }

        .card-container-box .card-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px 40px;
            text-align: center;
            
        }

        .card-container-box .icon-container {
            width: 70px;
            height: 70px;
            margin-bottom: 12px;
        }
.card-container-box .icon-container img {
            width: 100%;
            height: 100%;
          filter: invert(13%) sepia(27%) saturate(1505%) hue-rotate(184deg) brightness(95%) contrast(93%);
        }
        .card-container-box .icon-container svg {
            width: 100%;
            height: 100%;
            stroke: #333333;
            stroke-width: 1.5;
            fill: none;
        }

        .card-container-box .title {
            font-size: 22px;
            font-weight: 600;
            color: #d2040c;
            letter-spacing: 0;
            margin-bottom: 15px;
            line-height: normal;
        }

        .card-container-box .description {
            font-size: 16px;
            color: #666666;
            line-height: 23px;
            font-weight: 400;
            padding: 0 20px;
        }

.advantage_section_new .container {
    text-align: center;
}

.advantage_section_new .container p.kicker {
    color: #c0392b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

@media (max-width: 1300px) {
            .card-container-box {
                position: relative;
                width: 31.3%;
                padding: 0;
                align-items: center;
            }

        }

        @media (max-width: 999px) {
            .card-container-box {
                position: relative;
                width: 48%;
                padding: 0;
            }

        }

        @media(max-width: 767px) {
            .full-container-box {
                gap: 20px;
                flex-wrap: wrap;
                flex-direction: column;
                align-items: center;
            }

            .card-container-box {
                position: relative;
                width: 70%;
                padding: 0;
            }
        }

        @media(max-width: 480px) {
            .card-container-box {
                position: relative;
                width: 100%;
                padding: 0;
            }

            .card-container-box .title {
                font-size: 18px;
            }

            .card-container-box .description {
                font-size: 14px;
                line-height: 20px;
            }

            .card-container-box .card-content {
                padding: 30px 50px;
            }
        }
 


/* =========================================================
   CONTACT
   ========================================================= */ 
.contact-section { background: var(--canvas); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--sp-6);  align-items: center;}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: var(--sp-3); }
.contact-info > p { color: var(--ink-soft); margin-bottom: var(--sp-4); max-width: 46ch; }
.contact-detail { display: flex; gap: var(--sp-2); align-items: flex-start; margin-bottom: var(--sp-3); }
.contact-detail .ci-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--paper); box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.contact-detail h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; margin-bottom: 2px; }
.contact-detail p, .contact-detail a { color: var(--ink-soft); font-size: 0.95rem; }
.contact-detail a:hover { color: var(--thread-red); }
.social-row { display: flex; gap: 0.7rem; margin-top: var(--sp-3); }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.social-row a:hover { background: var(--thread-red); transform: translateY(-3px); }
.mini-map {
  margin-top: var(--sp-4);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--stitch);
}
.mini-map iframe { width: 100%; height: 190px; border: 0; display: block; filter: grayscale(20%); }

.contact-form {
  background: var(--paper);
  border-radius: var(--radius-m);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.field { margin-bottom: var(--sp-3); position: relative; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  border: 1.5px solid var(--stitch);
  border-radius: var(--radius-s);
  padding: 0.75rem 0.9rem;
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--thread-blue);
  box-shadow: 0 0 0 3px rgba(62, 111, 166, 0.15);
  outline: none;
}
.field.invalid input, .field.invalid textarea { border-color: var(--error); }
.field textarea { min-height: 120px; resize: vertical; }
.error-msg { display: none; color: var(--error); font-size: 0.82rem; margin-top: 5px; }
.field.invalid .error-msg { display: block; }
.form-msg {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-s);
  font-size: 0.92rem;
  margin-bottom: var(--sp-3);
}
.form-msg.success { display: block; background: rgba(63, 122, 79, 0.12); color: var(--success); }
.form-msg.error { display: block; background: rgba(179, 56, 44, 0.1); color: var(--error); }




@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; gap: var(--sp-4); } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

@media (min-width: 561px) {
    .footer-col.accordion h4 button svg.accordion-icon {
    display: none;
}
}
@media (max-width: 560px) {
  .contact-section { padding-block: var(--sp-4); }
  .contact-grid { display: flex; flex-wrap: wrap; }
    .reveal.in-view{ width: 100%; }
  .contact-info h2 { margin-bottom: 0.6rem; }
  .contact-info > p { margin-bottom: var(--sp-3); }
  .contact-detail { gap: 0.75rem; margin-bottom: var(--sp-2); }
  .contact-detail .ci-icon { width: 38px; height: 38px; }
  .contact-form { padding: var(--sp-3); }
  .field { margin-bottom: var(--sp-2); }
  .field textarea { min-height: 100px; }
    .site-header .container {
    padding: 0 13px;
}
    section#home {
    padding: 100px 0 50px;
}

section#home h1 {
    font-size: 32px;
}

section#home p.lead {
    margin: 10px 0 0;
}

section#home .hero-cta {
    margin-top: 20px;
}

section#home .hero-cta a.btn.btn-primary {
    width: 200px;
    text-align: center;
    justify-content: center;
}

.hero-stats div strong {
    font-size: 23px;
    line-height: normal;
}

.hero-stats div span {
    font-size: 13px;
}

.hero-stats {
    flex-wrap: nowrap;
    gap: 5px;
    display: flex;
    justify-content: space-between;
}

.hero-stats div {
    width: auto;
}

section#home .container {
    padding: 0 16px;
}

.hero-stats {
    margin-top: 40px;
}
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.78); }
.footer-top { padding-block: var(--sp-6); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-4); }
.footer-brand .brand { margin-bottom: var(--sp-2); }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; color: rgba(255, 255, 255, 0.62); margin-bottom: var(--sp-3); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.02em; margin-bottom: var(--sp-2); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a, .footer-col span { font-size: 0.92rem; color: rgba(255, 255, 255, 0.68); }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--sp-2); }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.footer-social a:hover { background: var(--thread-red); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: var(--sp-3);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap; gap: 0.5rem;
}

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }

  /* Footer accordion — Quick Links / Location / Contact become
     collapsible on mobile only. Desktop keeps the plain always-open
     layout above untouched. */
  .footer-col.accordion { border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding-bottom: var(--sp-2); }
  .footer-col.accordion h4 { margin-bottom: 0; }
  .accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding-block: 0.5rem;
  }
  .accordion-icon { flex-shrink: 0; color: rgba(255, 255, 255, 0.6); transition: transform 0.3s ease; }
  .footer-col.accordion.open .accordion-icon { transform: rotate(180deg); }
  .accordion-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }
  .footer-col.accordion.open .accordion-panel { max-height: 320px; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: var(--sp-3);
  bottom: var(--sp-3);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lifted);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--thread-red); }

 /* ---------- Sectors We Serve: slider/carousel ---------- */
.sectors-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1250px;
    margin: 0 auto;
}
.sectors-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 12px;
    margin: 0 -4px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    max-width: 1142px;
    margin: 0 auto;
}
  .sectors-track:active{ cursor: grabbing; }
  .sectors-track::-webkit-scrollbar{ display: none; }
  .sectors-track .sector-card{
    flex: 0 0 calc((100% - 3 * 24px) / 4);
    scroll-snap-align: start;
  }
  .sectors-arrow{
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    background: #ffffff;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .sectors-arrow:hover{ background: #1a1a2e; color: #ffffff; }
  .sectors-arrow[disabled]{ opacity: 0.35; cursor: default; pointer-events: none; }
  .sectors-dots{
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
  }
  .sectors-dots .dot{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    transition: background 0.2s ease, width 0.2s ease;
  }
  .sectors-dots .dot.active{
    background: #1a1a2e;
    width: 18px;
    border-radius: 3px;
  }

  /* Tablet: ~2.2 cards visible */
  @media (max-width: 1024px){
    .sectors-track .sector-card{
      flex: 0 0 calc((100% - 24px) / 2.2);
    }
  }

  /* Mobile: 1.2 cards visible so the next card peeks in */
  @media (max-width: 640px){
    .sectors-slider{ gap: 6px; }
    .sectors-track{ gap: 14px; }
    .sectors-track .sector-card{
      flex: 0 0 calc((100% - 14px) / 1.2);
    }
    .sectors-arrow{
      width: 36px;
      height: 36px;
    }
  }



  /*-------------new css 07-09-2026-------------------*/
.hero-content .lead {
    font-size: 22px !important;
    font-weight: 600;
    letter-spacing: 0px;
    margin-bottom: 20px !important;
    display: inline-block;
    background: #d2040c;
    color: #fff !important;
    padding: 10px 3px 10px 0;
    line-height: 10px;
}
.hero-content p {
    color: #fff;
}
.card-container-box .hexagon-card-svg path {
    stroke: #d2040c;
}
span.para_heighlite {
    color: #d2040c;
    border-radius: 4px;
    font-weight: 600;
}
.stat-banner-full {
    width: 100%;
    background-color: #0b1426;
    border-top: 3px solid #d2040c;
    padding: 40px 0;
    box-sizing: border-box; 
    overflow: hidden;
}

.stat-banner-full .stat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.stat-banner-full .pro-stat-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-banner-full .pro-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(207, 61, 53, 0.15); 
    color: #d2040c; 
    width: 64px;
    height: 64px;
    border-radius: 12px;
}

.stat-banner-full .pro-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-banner-full .pro-title {
    color: #ffffff;
    font-family: "Playfair Display", "Merriweather", serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1;
}

.stat-banner-full .pro-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
  .hero-content p.banner_pra {
    font-weight: 500;
    font-size: 18px;
    text-align: left;
}

.hero-content p.banner_pra span {
    display: block;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
} 
.contact-info h2 {
    font-family: "Work Sans";
}
.sector-card.full_size_image img {
    object-fit: contain;
}
@media (max-width: 480px) {
  .hero-content .lead {
    font-size: 20px !important;
}

}



/*----------new logo slider section 12-09-2026-------------------*/

/*.logo_slider_section {
    background-color: #fffdf9;
    padding: 0 0 30px 0;
}
.logo-slider-new {
    width: 100%;
    height: 150px;
    margin: 0px auto;
    overflow: hidden;
    position: relative;
    background-color: #fffdf9;
    display: flex;
    align-items: center;
}

.logo-slider-new::before, .logo-slider-new::after {
    content: "";
    position: absolute;
    top: 20px;
    width: 100px;
    z-index: 2;
    bottom: 20px;
}

.logo-slider-new::before {
    left: 0;
    background: linear-gradient(to right, #f4f4f4 0%, rgba(244, 244, 244, 0) 100%);
}

.logo-slider-new::after {
    right: 0;
    background: linear-gradient(to left, #f4f4f4 0%, rgba(244, 244, 244, 0) 100%);
}

.logo-slide-track {
    display: flex;
    width: calc(250px * 14); 
    animation: scroll 30s linear infinite;
}

.logo-slider-new:hover .logo-slide-track {
    animation-play-state: paused;
}

.logo-slider-new .slide {
    width: 210px;
    height: 110px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-slider-new .slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.logo-slider-new .slide img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7)); 
    }
}

@media (max-width: 768px) {
    .logo-slider-new .slide {
        width: 160px;
        height: 90px;
        margin: 0 10px;
    }
    .logo-slider-new .logo-slide-track {
        width: calc(180px * 14); 
    }
    @keyframes scroll {
        100% {
            transform: translateX(calc(-180px * 7)); 
        }
    }
}
*/

/*-----full responshive start----*/

@media (max-width: 880px) {
.about-copy p {
    max-width: 100%;
  }
}
@media (max-width: 580px) {
.footer-bottom {
    flex-direction: column;
}
}


@media (max-width: 560px) {
  .contact-form .form-row {
    gap: 0;
  }

}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 11px;
}
.hero-content p.banner_pra span {
    font-size: 24px;
}
}


@media (max-width: 380px) {
  .card-container-box .description {
    font-size: 13px;
    line-height: 18px;
  }
  .card-container-box .title {
    font-size: 18px;
    margin-bottom: 10px;;
  }
  .card-container-box .icon-container {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }
  .card-container-box .card-content {
    padding: 10px 30px;
  }
}

@media (min-width: 1101px) {
  .mobile_herro_banner {
    display: none;
  }
  
}


@media (max-width: 1100px) {
  .desktop_herro_banner {
    display: none;
  }
  
.hero-bg img {
    object-position: top;
}
.hero {
    min-height: 100vh;
    align-items: flex-end;
}
.hero-stats {
    margin: 0;
}
.hero-bg {
    background: #071126;
} 
.hero-content {
    padding-top: 650px;
}
}


@media (max-width: 660px) {
  .hero-bg {
    padding-top: 70px;
}
.hero-bg img {
    object-fit: contain;
}
.hero-bg::after {
    display: none;
}
.hero-content {
    padding-top: 0px;
}
.hero {
    min-height: 95vh;
}
.about-media img {
    aspect-ratio: unset;
}
}

