/* ═══════════════════════════════════════════════
   ATDSC INDIA — GLOBAL RESET & DESIGN TOKENS
   (2560px-ready: fluid containers, larger type scale,
   bigger hero, expanded grids, generous spacing)
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand colours */
  --red: #c41e1e;
  --red-dark: #8b0000;
  --red-mid: #a00000;
  --red-soft: rgba(196, 30, 30, 0.08);
  --gold: #f5b042;
  --gold-dark: #e09d2a;
  --blue: #0a4b9e;
  --blue-mid: #1e6bc7;
  --blue-light: rgba(10, 75, 158, 0.07);
  --dark: #0d0f1a;
  --dark-2: #1a1a2e;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --off-white: #f8fafc;
  --surface: #f1f5f9;
  --primary: var(--red);

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.14);
  --shadow-red: 0 6px 20px rgba(196, 30, 30, 0.26);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 100px;

  /* Typography */
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-ui: "Inter", system-ui, -apple-system, sans-serif;

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);

  /* ── UNIFIED SPACING SCALE ── */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 32px;
  --sp-8: 40px;

  /* Section / container rhythm — fluid up to 2560px */
  --section-v: clamp(48px, 5.5vw, 100px);
  --section-gap-sm: clamp(32px, 4vw, 64px);
  --container-pad: clamp(16px, 3.5vw, 80px);
  --grid-gap: clamp(14px, 1.5vw, 28px);

  /* Container max-width: widens at ultra-wide */
  --container-max: 1760px;

  /* Button system */
  --btn-h: clamp(44px, 3.2vw, 56px);
  --btn-pad-x: clamp(20px, 2vw, 36px);
  --btn-radius: var(--r-pill);
  --btn-font: clamp(13px, 0.85vw, 16px);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── BASE ── */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(14px, 0.9vw, 18px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Heading-level display elements */
.hero-title,
.section-title,
.about-heading,
.solution-card-title,
.why-card-title,
.tl-title,
.footer-col-title,
.cta-title,
.cc-title,
.map-cap-title,
.form-head-title,
.slider-product-name,
.ind-name,
.testi-name,
.loc-name,
.sidebar-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

/* ── HERO-STYLE BACKGROUND ── */
.hero-style-bg {
  position: relative;
  background: linear-gradient(145deg, #f0f4ff 0%, #fdf6ee 55%, #f5f0ff 100%);
  overflow: hidden;
}
.hero-style-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 75, 158, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 75, 158, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero-style-bg > * {
  position: relative;
  z-index: 1;
}

/* ── EYEBROW ── */
.eyebrow,
.tl-eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-ui);
  font-size: clamp(10px, 0.7vw, 13px);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(196, 30, 30, 0.18);
  margin-bottom: var(--sp-3);
}
.eyebrow-blue {
  color: var(--red);
  background: var(--red-light);
  border-color: rgba(10, 75, 158, 0.2);
}
.eyebrow-white {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}
.tl-eyebrow-dark svg {
  width: 12px;
  height: 12px;
}

/* ── SECTION HEAD ── */
.section-head {
  text-align: center;
  margin-bottom: var(--sp-7);
}
.section-head .section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 58px);
  font-weight: 600;
  color: #070606;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-3);
}
.section-head p {
  color: var(--muted);
  font-size: clamp(14px, 0.95vw, 19px);
  max-width: 760px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn,
.btn-primary,
.btn-outline,
.btn-ghost-white,
.btn-white,
.btn-outline-link,
.btn-submit,
.slider-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  border-radius: var(--btn-radius);
  font-family: var(--font-ui);
  font-size: var(--btn-font);
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: white;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196, 30, 30, 0.34);
  gap: var(--sp-3);
}
.btn-primary i {
  transition: transform var(--t-base);
}
.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-outline {
  background: white;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.28);
  gap: var(--sp-3);
}
.btn-outline i {
  transition: transform var(--t-base);
}
.btn-outline:hover i {
  transform: translateX(4px);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--red);
  border-color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  gap: var(--sp-3);
}

.btn-outline-link {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  height: 42px;
  padding: 0 22px;
}
.btn-outline-link:hover {
  background: var(--red);
  color: white;
  gap: var(--sp-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-submit {
  background: var(--red);
  border-color: var(--red);
  color: white;
  width: 100%;
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(196, 30, 30, 0.2);
  margin-top: auto;
}
.btn-submit:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(196, 30, 30, 0.28);
  gap: var(--sp-3);
}

.slider-product-link {
  background: white;
  color: var(--red);
  border-color: var(--red);
  height: 38px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
  min-width: 120px;
}
.slider-product-link:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
  gap: var(--sp-3);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.28);
  transform: translateY(-2px);
}
.slider-product-link i {
  transition: transform var(--t-base);
}
.slider-product-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  :root {
    --btn-h: 44px;
    --btn-pad-x: 20px;
  }
}

/* ═══════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════ */
.top-bar {
  background: var(--dark);
  padding: var(--sp-2) 0;
  border-bottom: 2px solid var(--red);
  position: relative;
  z-index: 1002;
}
.top-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.top-bar-contacts a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: clamp(11px, 0.75vw, 14px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--t-fast);
}
.top-bar-contacts a:hover {
  color: var(--gold);
}
.top-bar-contacts a i {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold);
}
.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.top-bar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
}
.top-social-link {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--t-fast);
}
.top-social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .top-bar-inner {
    justify-content: center;
  }
  .top-bar-right {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
body {
  padding-top: 0;
}

.navbar {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  width: 100%;
  z-index: 1001;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.navbar.sticky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
body.navbar-fixed {
  padding-top: clamp(70px, 5vw, 90px);
}

.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  height: clamp(70px, 5vw, 90px);
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: var(--sp-6);
}
.nav-logo img {
  height: clamp(40px, 2.8vw, 56px);
  width: auto;
  display: block;
}
.nav-logo svg {
  display: block;
}

.nav-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  margin-right: var(--sp-6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  list-style: none;
}
.nav-links li a {
  position: relative;
  /*display: inline-flex;*/
  align-items: center;
  padding: var(--sp-2) clamp(12px, 1.2vw, 22px);
  font-family: var(--font-ui);
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text);
  border-radius: var(--r-sm);
  transition:
    color var(--t-fast),
    background var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}
.nav-links li a:hover {
  color: var(--red);
  background: var(--red-soft);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}
.nav-links li a.active {
  color: var(--red);
}

/* ----- DROPDOWN ----- */
.dropdown-wrapper {
  position: relative;
}
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dropdown-trigger i.fa-chevron-down {
  font-size: 10px;
  transition: transform 0.25s ease;
}
.dropdown-wrapper:hover .dropdown-trigger i.fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: clamp(220px, 16vw, 300px);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: white;
  border-radius: var(--r-md);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition:
    max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 1002;
  padding: var(--sp-2) 0;
}
.dropdown-wrapper:hover .dropdown-menu {
  max-height: 480px;
  opacity: 1;
  visibility: visible;
}

.dropdown-scroll {
  max-height: 340px;
  overflow-y: auto;
  padding: var(--sp-1) 0;
  scroll-behavior: smooth;
}
.dropdown-scroll::-webkit-scrollbar {
  width: 5px;
}
.dropdown-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.dropdown-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.dropdown-scroll::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-5);
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 500;
  color: #1e1e1e;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
  border-left: 3px solid transparent;
}
.dropdown-menu a i {
  width: 22px;
  color: var(--red);
  font-size: 15px;
  opacity: 0.7;
}
.dropdown-menu a:hover {
  background: #f5f7fc;
  color: var(--red);
  border-left-color: var(--red);
}
.dropdown-menu a:hover i {
  opacity: 1;
}

.badge-new {
  margin-left: auto;
  font-size: 9px;
  background: var(--red);
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.dropdown-footer {
  padding: var(--sp-2) var(--sp-4) 6px;
  border-top: 1px solid #f0f0f0;
  margin-top: var(--sp-1);
}
.dropdown-footer a {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  border-left: none !important;
  padding: var(--sp-2) 0 !important;
}
.dropdown-footer a:hover {
  background: transparent !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: auto;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--text);
  font-size: 20px;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.menu-toggle:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-soft);
}

/* Page hero */
.page-hero {
  max-width: var(--container-max);
  margin: var(--sp-7) auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 1;
}
.page-hero  {
  font-size: clamp(22px, 2.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.page-hero p {
  color: #444;
  margin-top: var(--sp-3);
  font-size: clamp(14px, 1vw, 1.2rem);
}
.dummy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--grid-gap);
  margin-top: var(--sp-7);
}
.dummy-card {
  background: white;
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.text-muted {
  color: #6b7280;
}

/* responsive nav */
@media (max-width: 1100px) {
  .nav-links,
  .nav-divider,
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-logo {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .nav-logo img,
  .nav-logo svg {
    height: 34px;
    width: auto;
  }
  .navbar-inner {
    height: 60px;
  }
  body.navbar-fixed {
    padding-top: 60px;
  }
}

/* ═══════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 15, 26, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}
.sidebar-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(88%, 380px);
  height: 100%;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.16);
  z-index: 2001;
  transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.05);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 3px solid var(--red);
}
.sidebar-drawer.open {
  right: 0;
}
.sidebar-header {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  position: relative;
}
.sidebar-logo-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.sidebar-logo-circle {
  width: 46px;
  height: 46px;
  background: rgb(245, 242, 242);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-logo-circle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.sidebar-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
}
.sidebar-brand-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
.close-sidebar {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  color: white;
  transition: all var(--t-fast);
  border: none;
}
.close-sidebar:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
.sidebar-nav {
  flex: 1;
  padding: var(--sp-5) var(--sp-4);
}
.sidebar-nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 var(--sp-3);
  margin-bottom: var(--sp-2);
}
.sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  transition: all var(--t-fast);
  border: 1px solid transparent;
}
.sidebar-nav ul li a .s-icon {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--red);
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.sidebar-nav ul li a:hover {
  background: var(--red-soft);
  border-color: rgba(196, 30, 30, 0.12);
  color: var(--red);
  transform: translateX(4px);
}
.sidebar-nav ul li a:hover .s-icon {
  background: var(--red);
  color: white;
}
.sidebar-nav ul li a.active {
  background: var(--red-soft);
  border-color: rgba(196, 30, 30, 0.2);
  color: var(--red);
  font-weight: 600;
}
.sidebar-nav ul li a.active .s-icon {
  background: var(--red);
  color: white;
}
.sidebar-footer {
  padding: var(--sp-5) var(--sp-4) var(--sp-7);
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 13px;
  color: var(--text);
  margin-bottom: var(--sp-3);
}
.sidebar-contact-item i {
  width: 32px;
  height: 32px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  background: var(--red);
  color: white;
  height: var(--btn-h);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  margin-top: var(--sp-4);
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
  width: 100%;
  font-family: var(--font-ui);
  text-decoration: none;
}
.sidebar-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* ATDSC Products nav dropdown */
.atdsc-prodnav-item {
  display: flex;
  flex-direction: column;
}
.atdsc-prodnav-toggle {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  padding: var(--sp-3);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  transition: all var(--t-fast);
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  font-family: var(--font-ui);
  text-align: left;
}
.atdsc-prodnav-toggle .s-icon {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--red);
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.atdsc-prodnav-toggle:hover {
  background: var(--red-soft);
  border-color: rgba(196, 30, 30, 0.12);
  color: var(--red);
}
.atdsc-prodnav-toggle:hover .s-icon {
  background: var(--red);
  color: white;
}
.atdsc-prodnav-toggle[aria-expanded="true"] {
  background: var(--red-soft);
  border-color: rgba(196, 30, 30, 0.2);
  color: var(--red);
  font-weight: 600;
}
.atdsc-prodnav-toggle[aria-expanded="true"] .s-icon {
  background: var(--red);
  color: white;
}
.atdsc-prodnav-arrow {
  margin-left: auto;
  font-size: 12px;
  transition: transform var(--t-fast);
}
.atdsc-prodnav-toggle[aria-expanded="true"] .atdsc-prodnav-arrow {
  transform: rotate(180deg);
}
.atdsc-prodnav-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.atdsc-prodnav-panel.atdsc-prodnav-open {
  max-height: 440px;
}
.atdsc-prodnav-scroller {
  max-height: 440px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: var(--sp-1) 0 var(--sp-1) var(--sp-3);
  margin: 2px 0 var(--sp-2) 39px;
  border-left: 2px solid var(--red-soft);
}
.atdsc-prodnav-scroller a {
  padding: 9px var(--sp-2);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  display: block;
}
.atdsc-prodnav-scroller a:hover {
  background: var(--red-soft);
  color: var(--red);
  transform: translateX(4px);
}
.atdsc-prodnav-scroller::-webkit-scrollbar {
  width: 5px;
}
.atdsc-prodnav-scroller::-webkit-scrollbar-thumb {
  background: var(--red);
  opacity: 0.4;
  border-radius: 10px;
}
.atdsc-prodnav-scroller::-webkit-scrollbar-track {
  background: transparent;
}

/* ═══════════════════════════════════════════════
   HERO — scales to 2560px
═══════════════════════════════════════════════ */
.hero-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f0f4ff 0%, #fdf6ee 55%, #f5f0ff 100%);
  min-height: clamp(35vh, 45vh, 52vh); /* Made smaller so slider peaks into view */
  display: flex;
  align-items: center;
  padding: clamp(16px, 2.5vw, 44px) 0; /* Tightened padding for better visibility */
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 75, 158, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 75, 158, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  background: radial-gradient(
    circle,
    rgba(10, 75, 158, 0.4) 0%,
    transparent 70%
  );
  top: -15%;
  left: -8%;
  width: 60%;
  height: 90%;
  opacity: 0.22;
}
.hero-glow-2 {
  background: radial-gradient(
    circle,
    rgba(245, 176, 66, 0.45) 0%,
    transparent 70%
  );
  bottom: -15%;
  right: -5%;
  width: 55%;
  height: 80%;
  opacity: 0.18;
}

.hero-blueprint-circles {
  position: absolute;
  top: 12%;
  right: 2%;
  width: clamp(260px, 22vw, 520px);
  height: clamp(260px, 22vw, 520px);
  border-radius: 50%;
  border: 1px dashed rgba(10, 75, 158, 0.08);
  pointer-events: none;
  z-index: 0;
}
.hero-blueprint-circles::before,
.hero-blueprint-circles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(10, 75, 158, 0.06);
}
.hero-blueprint-circles::before {
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.hero-blueprint-circles::after {
  top: 70px;
  left: 70px;
  right: 70px;
  bottom: 70px;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: var(--gold);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 10s infinite alternate;
}
@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.12;
  }
  100% {
    transform: translateY(-50px) translateX(22px);
    opacity: 0.55;
  }
}

.hero-container {
  position: relative;
  z-index: 5;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 80px);
  flex-wrap: wrap;
  padding: 0 var(--container-pad);
  width: 100%;
}
.hero-content {
  flex: 1;
  min-width: 320px;
  z-index: 2;
}
.hero-title {
  font-size: clamp(30px, 3.2vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--sp-4);
  white-space: nowrap;
}
#typing-cursor {
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-content p {
  font-size: clamp(14px, 1vw, 20px);
  color: var(--muted);
  margin-bottom: var(--sp-6);
  max-width: 640px;
  line-height: 1.65;
}
.hero-buttons {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.hero-stats {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.stat-card-light {
  background: white;
  padding: clamp(12px, 1vw, 20px) clamp(16px, 1.4vw, 28px);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(245, 176, 66, 0.22);
  min-width: 100px;
  cursor: default;
  transition: all 0.35s ease;
  animation: statPulse 0.55s ease-out forwards;
  opacity: 0;
}
.stat-card-light:nth-child(1) {
  animation-delay: 0.1s;
}
.stat-card-light:nth-child(2) {
  animation-delay: 0.2s;
}
.stat-card-light:nth-child(3) {
  animation-delay: 0.3s;
}
.stat-card-light:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.stat-card-light .counter {
  font-size: clamp(20px, 1.6vw, 32px);
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--blue), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.stat-card-light span {
  font-size: clamp(9px, 0.6vw, 13px);
  font-weight: 600;
  color: var(--dark);
  display: block;
  letter-spacing: 0.2px;
}
@keyframes statPulse {
  0% {
    transform: scale(0.93);
    opacity: 0;
  }
  60% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(22px, 5.5vw, 30px);
    white-space: normal;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-6);
    padding: var(--sp-6) var(--container-pad);
  }
  .hero-premium {
    min-height: auto;
  }
  .hero-content p {
    margin: 0 auto var(--sp-5);
  }
  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(18px, 6vw, 24px);
  }
  .hero-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8px;
    margin-bottom: var(--sp-4);
    padding: 0 4px;
  }
  .hero-buttons a,
  .hero-buttons button {
    flex: 1;
    max-width: 160px;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
    padding: 10px 8px;
  }
  .hero-stats {
    display: none;
  }
}

/* ── ORBITAL RING — scales up at 2560 ── */
.circular-ring {
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 560px);
  height: clamp(260px, 28vw, 560px);
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  --ring-size: clamp(260px, 28vw, 560px);
}
.ring-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.orbital-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: orbitRotate 22s linear infinite;
  pointer-events: none;
  overflow: visible;
}

.circle-img {
  position: absolute;
  width: clamp(58px, calc(var(--ring-size) * 0.19), 110px);
  height: clamp(58px, calc(var(--ring-size) * 0.19), 110px);
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 26px -4px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid white;
  transition:
    transform 0.25s ease,
    box-shadow 0.2s,
    border-color 0.2s;
  z-index: 15;
  pointer-events: auto;
  animation: counterRotate 22s linear infinite;
}

@media (max-width: 768px) {
  .circle-img {
    width: clamp(46px, calc(var(--ring-size) * 0.19), 70px);
    height: clamp(46px, calc(var(--ring-size) * 0.19), 70px);
  }
}
@media (max-width: 480px) {
  .circle-img {
    width: clamp(38px, calc(var(--ring-size) * 0.19), 52px);
    height: clamp(38px, calc(var(--ring-size) * 0.19), 52px);
  }
}
@media (max-width: 360px) {
  .circle-img {
    width: clamp(32px, calc(var(--ring-size) * 0.18), 42px);
    height: clamp(32px, calc(var(--ring-size) * 0.18), 42px);
  }
}

.img-tooltip {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.82);
  color: white;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: clamp(7px, 0.5vw, 10px);
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease;
}
.circle-img:hover .img-tooltip {
  opacity: 1;
  bottom: -28px;
}

.rotating-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2.5px dotted var(--gold);
  pointer-events: none;
  z-index: 25;
  animation: rotateBorder 20s linear infinite;
}
.ring-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 176, 66, 0.07) 0%,
    rgba(10, 75, 158, 0.04) 100%
  );
  animation: rotateSlow 30s linear infinite;
}

.center-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, calc(var(--ring-size) * 0.24), 130px);
  height: clamp(64px, calc(var(--ring-size) * 0.24), 130px);
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(251, 62, 62), var(--red-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: 0 14px 34px rgba(196, 30, 30, 0.4);
  z-index: 20;
  animation: pulseCenter 2.2s ease-in-out infinite;
  cursor: pointer;
}
.center-element:focus {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.center-element i {
  font-size: clamp(14px, calc(var(--ring-size) * 0.045), 28px);
  margin-bottom: 3px;
}
.center-element span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(9px, calc(var(--ring-size) * 0.034), 18px);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.center-element p {
  font-size: clamp(10px, calc(var(--ring-size) * 0.025), 18px); 
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5em 1em;
  border-radius: 20px;
  margin-top: 4px;
  white-space: nowrap; 
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulseCenter {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
  }
}

/* ============================================================
   CIRCULAR RING & CENTER ELEMENT: Unified Layout
   ============================================================ */
.circular-ring {
  --ring-size: clamp(280px, 30vw, 420px);
  width: var(--ring-size);
  height: var(--ring-size);
  transition: all 0.3s ease;
}

.center-element {
  width: calc(var(--ring-size) * 0.35);
  height: calc(var(--ring-size) * 0.35);
  transition: all 0.3s ease;
}

/* 1024px */
@media (max-width: 1024px) {
  .circular-ring { --ring-size: clamp(260px, 36vw, 360px); }
}

/* 768px */
@media (max-width: 768px) {
  .circular-ring { --ring-size: clamp(220px, 60vw, 300px); }
  .center-element { width: calc(var(--ring-size) * 0.3); height: calc(var(--ring-size) * 0.3); }
  .hero-container { gap: var(--sp-4); }
}

/* 480px */
@media (max-width: 480px) {
  .circular-ring { --ring-size: clamp(190px, 74vw, 240px); margin: 0 auto; }
  .center-element { width: 80px; height: 80px; }
  .center-element span { font-size: 8px; }
  .center-element p { font-size: 10px; padding: 3px 8px; margin-top: 1px; }
  .img-tooltip { display: none; }
  .hero-container { gap: var(--sp-3); padding: var(--sp-3) 0 var(--sp-4); }
}

/* 360px */
@media (max-width: 360px) {
  .circular-ring { --ring-size: min(180px, 80vw); }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .orbital-track, .circle-img, .rotating-border, .ring-bg {
    animation-play-state: paused;
  }
}

/* ═══════════════════════════════════════════════
    BANNER SLIDER
═══════════════════════════════════════════════ */
.banner-slider-section {
  margin: 0 var(--container-pad) var(--section-gap-sm);
  border-radius: clamp(16px, 2vw, 36px);
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 3;
}
.bslider-wrapper {
  position: relative;
  width: 100%;
  height: clamp(180px, 25vw, 520px);
  overflow: hidden;
  user-select: none;
}
.bslider-track {
  position: absolute;
  inset: 0;
}
.bslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.bslide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.bslide.exit-left {
  opacity: 0;
  transform: scale(0.97) translateX(-2%);
  z-index: 1;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.bslide.exit-right {
  opacity: 0;
  transform: scale(0.97) translateX(2%);
  z-index: 1;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.bslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.bslide.active img {
  transform: scale(1.03);
}
.bslide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.14) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.bslider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(40px, 3vw, 56px);
  height: clamp(40px, 3vw, 56px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  color: white;
  font-size: clamp(13px, 1vw, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  opacity: 0;
}
.bslider-wrapper:hover .bslider-arrow {
  opacity: 1;
}
.bslider-prev {
  left: var(--sp-5);
}
.bslider-next {
  right: var(--sp-5);
}
.bslider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}
.bslider-dots {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  z-index: 10;
}
.bdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.bdot.active {
  background: var(--red);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 8px red;
}
.bslider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}
.bslider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  width: 0%;
  transition: width linear;
}
@media (max-width: 768px) {
  .bslider-wrapper {
    height: clamp(160px, 40vw, 280px);
  }
  .bslider-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
    opacity: 0.8;
  }
  .bslider-prev {
    left: var(--sp-2);
  }
  .bslider-next {
    right: var(--sp-2);
  }
}
@media (max-width: 480px) {
  .bslider-wrapper {
    height: clamp(130px, 48vw, 200px);
  }
  .bslider-arrow {
    display: none;
  }
}
/* Update these inside your existing media queries */

@media (max-width: 1024px) {
  .banner-slider-section {
    /* Align with main content container */
    margin: 0 24px var(--section-gap-sm); 
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .banner-slider-section {
    /* Tighten margins for mobile tablets */
    margin: 0 16px var(--section-gap-sm);
    border-radius: 16px;
  }
  .bslider-wrapper {
    height: 300px; /* Adjusted height for better proportions */
  }
}

@media (max-width: 480px) {
  .banner-slider-section {
    /* Full width with minimal spacing */
    margin: 0 12px var(--section-gap-sm);
    border-radius: 12px;
  }
  .bslider-wrapper {
    height: 200px;
  }
}
@media (min-width: 1920px) {
  .banner-slider-section {
    /* Limit the max-width to match your main content container */
    max-width: 1440px; 
    /* Center the banner on the screen */
    margin: 0 auto var(--section-gap-sm); 
    border-radius: 36px;
  }
}

@media (min-width: 2560px) {
  .banner-slider-section {
    max-width: 1600px; /* Optional: slightly wider for ultra-wide monitors */
    margin: 0 auto var(--section-gap-sm);
  }
  .bslider-wrapper {
    /* Maintain aspect ratio on huge screens */
    height: 600px; 
  }
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-section {
  padding: var(--section-v) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(10, 75, 158, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite alternate;
}
.about-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 176, 66, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(30px, -20px) scale(1.2);
    opacity: 1;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 95%;
  margin: 0 auto;
  position: relative;
}
.about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 30, 30, 0.06),
    rgba(245, 176, 66, 0.06)
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.about-img:hover::before {
  opacity: 1;
}
.about-img:hover {
  transform: translateY(-6px) scale(1.01);
}
.about-img img {
  width: 100%;
  transition: transform 0.6s ease;
  border-radius: var(--r-xl);
}
.about-img:hover img {
  transform: scale(1.03);
}
.floating-badge {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.badge-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.badge-text {
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 600;
  color: var(--dark);
}
.badge-text span {
  display: block;
  font-size: clamp(10px, 0.65vw, 13px);
  font-weight: 400;
  color: var(--muted);
}
.about-text .section-label {
  display: inline-block;
  font-size: clamp(10px, 0.7vw, 13px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(196, 30, 30, 0.08);
  padding: 4px var(--sp-4);
  border-radius: 40px;
  margin-bottom: 0;
}
.about-heading {
  font-size: clamp(26px, 2.8vw, 52px);
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-4);
}
.about-heading .highlight {
  color: var(--red);
  position: relative;
}
.abouttxt {
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-1);
  color: var(--text);
  line-height: 1.7;
  font-size: clamp(14px, 0.9vw, 18px);
}
.abouttxt strong {
  color: var(--dark);
  font-weight: 600;
}
.stat-cards {
  display: flex;
  gap: var(--sp-4);
  margin: var(--sp-2) 0 var(--sp-3);
  flex-wrap: wrap;
}
.stat-card {
  background: var(--off-white);
  padding: clamp(14px, 1.2vw, 24px);
  border-radius: var(--r-lg);
  text-align: center;
  flex: 1;
  min-width: 120px;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 30, 30, 0.12);
  background: white;
}
.stat-card:hover::before {
  transform: scaleX(1);
}
.stat-card i {
  font-size: clamp(26px, 2vw, 40px);
  color: rgb(234, 126, 126);
  margin-bottom: var(--sp-2);
  transition: all 0.4s ease;
  display: block;
}
.stat-card:hover i {
  transform: scale(1.15);
  color: var(--red);
}
.stat-card .counter {
  font-size: clamp(26px, 2.4vw, 44px);
  color: black;
  transition: color 0.3s ease;
  font-family: var(--font-display);
  font-weight: 800;
}
.stat-card:hover .counter {
  color: var(--red);
}
.stat-card p {
  font-size: clamp(12px, 0.75vw, 15px);
  margin: 0;
  font-weight: 500;
  color: var(--muted);
}
.pulse-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 40px;
  border: 2px solid rgba(196, 30, 30, 0.06);
  z-index: 0;
  animation: pulseRing 4s ease-in-out infinite;
}
@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
  }
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-6);
  }
}
@media (max-width: 550px) {
  .stat-cards {
    flex-direction: column;
  }
  .stat-card {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    text-align: left;
  }
  .stat-card i,
  .stat-card .counter {
    margin: 0;
  }
}

/* ═══════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════ */
.products-section {
  padding: var(--section-v) 0;
}
.product-showcase-slider {
  position: relative;
  overflow: hidden;
  margin-top: var(--sp-6);
}
.product-showcase-slider .swiper-slide {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  height: auto;
}
.product-showcase-slider .swiper-slide:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.slider-product-img {
  width: 100%;
  height: clamp(140px, 12vw, 220px);
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.slider-product-img img {
  max-width: 100%;
  max-height: clamp(90px, 9vw, 160px);
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-showcase-slider .swiper-slide:hover .slider-product-img img {
  transform: scale(1.05);
}
.slider-product-info {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  text-align: center;
}
.slider-product-name {
  font-size: clamp(15px, 1.1vw, 20px);
  margin-bottom: var(--sp-1);
  color: black;
  font-family: var(--font-display);
  font-weight: 700;
}
.slider-product-info p {
  font-size: clamp(12px, 0.8vw, 15px);
  color: var(--muted);
  margin-bottom: var(--sp-4);
  line-height: 1.5;
}
.product-showcase-slider .swiper-button-next,
.product-showcase-slider .swiper-button-prev {
  color: var(--red);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all var(--t-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.product-showcase-slider .swiper-button-next:after,
.product-showcase-slider .swiper-button-prev:after {
  font-size: 15px;
  font-weight: 700;
}
.product-showcase-slider .swiper-button-next:hover,
.product-showcase-slider .swiper-button-prev:hover {
  background: var(--red);
  color: var(--white);
}
.product-showcase-slider .swiper-pagination-bullet {
  background: rgba(196, 30, 30, 0.3);
}
.product-showcase-slider .swiper-pagination-bullet-active {
  background: var(--red);
}
@media (max-width: 768px) {
  .product-showcase-slider .swiper-button-next,
  .product-showcase-slider .swiper-button-prev {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   TIMELINE SECTION
═══════════════════════════════════════════════ */
.timeline-wrapper {
  position: relative;
  z-index: 5;
}
.tl-header {
  background: linear-gradient(145deg, #f0f4ff 0%, #fdf6ee 55%, #f5f0ff 100%);
  text-align: center;
  padding: clamp(40px, 5vw, 72px) var(--container-pad) clamp(28px, 3.5vw, 56px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.tl-main-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 60px);
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-3);
}
.tl-accent {
  color: var(--red);
}
.tl-subtitle {
  font-size: clamp(14px, 0.9vw, 18px);
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.tl-section {
  background: linear-gradient(145deg, rgb(240, 244, 255) 0%, rgb(253, 246, 238) 55%, rgb(245, 240, 255) 100%);
  overflow: hidden;
  position: relative;
}
.tl-wrap {
  display: flex;
  width: 100%;
  height: clamp(320px, 26vw, 520px);
}
.tl-col {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.tl-col:last-child {
  border-right: none;
}
.tl-col.active {
  flex: 3.2;
}
.tl-col:not(.active):hover {
  flex: 1.6;
}
.tl-col-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.06);
  transition:
    transform 0.6s ease,
    filter 0.5s ease;
  filter: grayscale(1) brightness(0.35);
}
.tl-col.active .tl-col-bg {
  transform: scale(1);
  filter: grayscale(0.1) brightness(0.6);
}
.tl-col:not(.active):hover .tl-col-bg {
  filter: grayscale(0.5) brightness(0.45);
  transform: scale(1.03);
}
.tl-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition:
    background 0.5s ease,
    opacity 0.5s ease;
}
.tl-col:not(.active) .tl-overlay {
  background: rgba(172, 16, 16, 0.72);
}
.tl-col:not(.active):hover .tl-overlay {
  background: rgba(172, 16, 16, 0.55);
}
.tl-col.active .tl-overlay {
  background: linear-gradient(
    160deg,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.7) 55%,
    rgba(10, 10, 10, 0.9) 100%
  );
}
.tl-body {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5) var(--sp-3) var(--sp-6);
}
.tl-chapter-label {
  font-family: var(--font-ui);
  font-size: clamp(9px, 0.6vw, 12px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-2);
  transition: color 0.3s ease;
}
.tl-col.active .tl-chapter-label {
  color: rgba(255, 255, 255, 0.7);
}
.tl-col:not(.active):hover .tl-chapter-label {
  color: rgba(255, 255, 255, 0.8);
}
.tl-year-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--sp-2);
  transition: transform 0.3s ease;
}
.tl-col:not(.active):hover .tl-year-wrap {
  transform: scale(1.05);
}
.tl-line-top,
.tl-line-bot {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  transition:
    width 0.4s ease,
    background 0.3s ease;
}
.tl-line-top {
  margin-bottom: var(--sp-3);
}
.tl-line-bot {
  margin-top: var(--sp-3);
}
.tl-col.active .tl-line-top,
.tl-col.active .tl-line-bot {
  width: 52px;
  background: #f5b042;
}
.tl-col:not(.active):hover .tl-line-top,
.tl-col:not(.active):hover .tl-line-bot {
  width: 42px;
  background: rgba(255, 255, 255, 0.7);
}
.tl-year {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  transition: font-size 0.3s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.tl-col.active .tl-year {
  font-size: clamp(36px, 3vw, 60px);
}
.tl-col:not(.active):hover .tl-year {
  font-size: clamp(30px, 2.5vw, 50px);
}
.tl-title-hint {
  font-family: var(--font-display);
  font-size: clamp(11px, 0.85vw, 16px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
  padding: 0 4px;
  transition: color 0.3s ease;
  margin-top: var(--sp-2);
}
.tl-col.active .tl-title-hint {
  color: #f5b042;
  font-size: clamp(13px, 1vw, 18px);
}
.tl-col:not(.active):hover .tl-title-hint {
  color: rgba(255, 255, 255, 0.85);
}
.tl-reveal {
  margin-top: var(--sp-4);
  text-align: center;
  padding: 0 var(--sp-5);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s 0.16s ease,
    transform 0.4s 0.16s ease;
  width: 100%;
  max-height: 0;
  overflow: hidden;
}
.tl-col.active .tl-reveal {
  opacity: 1;
  transform: translateY(0);
  max-height: 300px;
}
.tl-desc {
  font-size: clamp(12px, 0.8vw, 16px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.tl-col:focus {
  outline: 3px solid #f5b042;
  outline-offset: -3px;
}
.tl-shimmer-bar {
  height: 3px;
  background: linear-gradient(
    90deg,
    #8b0000,
    #c41e1e,
    #f5b042,
    #c41e1e,
    #8b0000
  );
  background-size: 200% 100%;
  animation: tlShimmer 4s linear infinite;
}
@keyframes tlShimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
@media (max-width: 768px) {
  .tl-header {
    padding: clamp(32px, 5vw, 44px) var(--container-pad) var(--sp-6);
  }
  .tl-main-title {
    font-size: clamp(22px, 5vw, 32px);
  }
  .tl-wrap {
    height: 320px;
  }
  .tl-year {
    font-size: 26px;
  }
  .tl-col.active .tl-year {
    font-size: 32px;
  }
  .tl-title-hint {
    font-size: 12px;
  }
  .tl-body {
    padding: var(--sp-4) var(--sp-3) var(--sp-5);
  }
}
@media (max-width: 640px) {
  .tl-wrap {
    flex-direction: column;
    height: auto;
  }
  .tl-col {
    flex: none;
    height: 90px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tl-col:last-child {
    border-bottom: none;
  }
  .tl-col.active {
    flex: none;
    height: 320px;
  }
  .tl-col:not(.active):hover {
    flex: none;
    height: 100px;
  }
  .tl-col-bg {
    filter: grayscale(1) brightness(0.3);
  }
  .tl-col.active .tl-col-bg {
    filter: grayscale(0.1) brightness(0.55);
  }
  .tl-body {
    padding: 8px 12px;
    justify-content: center;
  }
  .tl-chapter-label {
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 2px;
  }
  .tl-year-wrap {
    margin-bottom: 2px;
  }
  .tl-year {
    font-size: 20px;
  }
  .tl-col.active .tl-year {
    font-size: 30px;
  }
  .tl-title-hint {
    font-size: 11px;
    margin-top: 2px;
  }
  .tl-line-top,
  .tl-line-bot {
    width: 20px;
    height: 1.5px;
  }
  .tl-line-top {
    margin-bottom: 4px;
  }
  .tl-line-bot {
    margin-top: 4px;
  }
  .tl-col.active .tl-line-top,
  .tl-col.active .tl-line-bot {
    width: 40px;
    background: #f5b042;
  }
  .tl-reveal {
    padding: 0 var(--sp-2);
    margin-top: var(--sp-3);
  }
  .tl-desc {
    font-size: 13px;
    max-width: 100%;
  }
}
/* 1280px - Laptops */
@media (min-width: 1025px) and (max-width: 1280px) {
  .tl-wrap { height: 420px; }
  .tl-year { font-size: 34px; }
  .tl-col.active .tl-year { font-size: 48px; }
}

/* 1440px - Standard Desktop */
@media (min-width: 1281px) and (max-width: 1440px) {
  .tl-wrap { height: 460px; }
  .tl-year { font-size: 38px; }
  .tl-col.active .tl-year { font-size: 52px; }
}

/* 1600px - Widescreen */
@media (min-width: 1441px) and (max-width: 1600px) {
  .tl-wrap { height: 480px; }
  .tl-year { font-size: 40px; }
  .tl-col.active .tl-year { font-size: 56px; }
}

/* 1920px - Full HD */
@media (min-width: 1601px) and (max-width: 1920px) {
  .tl-wrap { height: 520px; }
  .tl-year { font-size: 44px; }
  .tl-col.active .tl-year { font-size: 60px; }
}

/* 2560px - Ultra-Wide */
@media (min-width: 1921px) {
  .tl-wrap { 
    height: 600px; 
    max-width: 2000px; /* Optional: keeps it from stretching too far */
    margin: 0 auto; 
  }
  .tl-year { font-size: 48px; }
  .tl-col.active .tl-year { font-size: 68px; }
  .tl-desc { font-size: 18px; max-width: 600px; }
}
@media (min-width: 2560px) {
  .banner-slider-section {
    max-width: 1600px; /* Adjust this to match your main site container width */
    margin: 0 auto var(--section-gap-sm);
    border-radius: 40px; /* Larger radius looks better on larger screens */
  }
  .bslider-wrapper {
    height: 600px;
  }
}


/* ═══════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════ */
.industries-section {
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}
.ind-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.ind-glow-1 {
  top: -20%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: rgba(10, 75, 158, 0.08);
}
.ind-glow-2 {
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: rgba(196, 30, 30, 0.06);
}
.ind-grid {
  display: grid;
  gap: var(--grid-gap);
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 1800px) {
  .ind-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 1099px) and (min-width: 600px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}
.ind-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(10, 75, 158, 0.08);
  border-radius: var(--r-lg);
  padding: clamp(18px, 1.8vw, 36px) var(--sp-4);
  text-align: center;
  cursor: pointer;
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}
.ind-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(196, 30, 30, 0.15);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.ind-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.ind-card:hover::before {
  transform: scaleX(1);
}
.ind-icon {
  width: clamp(52px, 4vw, 72px);
  height: clamp(52px, 4vw, 72px);
  border-radius: var(--r-md);
  margin: 0 auto var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 1.8vw, 32px);
  transition: all var(--t-base);
}
.ind-card:hover .ind-icon {
  transform: scale(1.08);
}
.ind-icon.c1 {
  background: rgba(10, 75, 158, 0.15);
  color: var(--blue);
}
.ind-icon.c2 {
  background: rgba(196, 30, 30, 0.12);
  color: var(--red);
}
.ind-icon.c3 {
  background: rgba(245, 176, 66, 0.15);
  color: var(--gold-dark);
}
.ind-icon.c4 {
  background: rgba(0, 150, 136, 0.12);
  color: #009688;
}
.ind-icon.c5 {
  background: rgba(156, 39, 176, 0.12);
  color: #7b1fa2;
}
.ind-icon.c6 {
  background: rgba(233, 30, 99, 0.12);
  color: #c2185b;
}
.ind-icon.c7 {
  background: rgba(63, 81, 181, 0.12);
  color: #3f51b5;
}
.ind-icon.c8 {
  background: rgba(255, 87, 34, 0.12);
  color: #e64a19;
}
.ind-name {
  font-size: clamp(14px, 1vw, 19px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--sp-1);
  font-family: var(--font-display);
}
.ind-desc {
  font-size: clamp(12px, 0.75vw, 15px);
  color: var(--muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════ */
.why-section {
  padding: var(--section-v) 0;
}
.why-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(196, 30, 30, 0.06), transparent 70%);
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
}

/* Updated grid structure to lock all 4 cards into 1 line on desktop */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Forces exactly 4 columns in a single row */
  gap: var(--grid-gap);
  position: relative;
  z-index: 2;
}

/* Responsiveness: handles tablet screens gracefully */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr); /* Switches to 2x2 grid on medium screens */
  }
}

/* Responsiveness: handles mobile screens gracefully */
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr; /* Switches to single stack column on phones */
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--r-xl);
  padding: clamp(24px, 2.5vw, 48px) clamp(20px, 2vw, 40px);
  border: 1px solid rgba(10, 75, 158, 0.07);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(245, 176, 66, 0.12),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.5s;
}
.why-card:hover::after {
  opacity: 1;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(196, 30, 30, 0.12);
}
.why-num {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font-size: clamp(46px, 4vw, 80px);
  font-weight: 800;
  font-family: var(--font-display);
  color: rgba(10, 75, 158, 0.05);
  line-height: 1;
  pointer-events: none;
}
.why-icon-wrap {
  width: clamp(64px, 5vw, 96px);
  height: clamp(64px, 5vw, 96px);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(196, 30, 30, 0.08),
    rgba(245, 176, 66, 0.08)
  );
  border: 1px solid rgba(196, 30, 30, 0.08);
  transition: all var(--t-base);
}
.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
  box-shadow: var(--shadow-red);
}
.why-icon-wrap i {
  font-size: clamp(28px, 2.2vw, 42px);
  color: var(--blue);
  transition: color var(--t-base);
}
.why-card:hover .why-icon-wrap i {
  color: white;
}
.why-card-title {
  font-size: clamp(18px, 1.5vw, 28px);
  margin-bottom: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
}
.why-card p {
  color: var(--text);
  line-height: 1.75;
  font-size: clamp(13px, 0.85vw, 16px);
}
.why-bar {
  width: 48px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin-top: var(--sp-4);
  transition: width var(--t-base);
}
.why-card:hover .why-bar {
  width: 96px;
}

/* ═══════════════════════════════════════════════
   CLIENTS
═══════════════════════════════════════════════ */
.clients-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-header {
  text-align: center;
  margin-bottom: var(--sp-7);
}
.clients-header .section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 52px);
  font-weight: 600;
  color: #070606;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-3);
}
.clients-header p {
  color: var(--muted);
  font-size: clamp(14px, 0.9vw, 18px);
}
.slider-container {
  position: relative;
  overflow: hidden;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-3) 0;
}
.slider-container::before,
.slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.slider-container::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}
.slider-container::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}
.client-slider {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
  width: max-content;
  animation: scrollLogos 35s linear infinite;
}
.client-slider:hover {
  animation-play-state: paused;
}
.client-item {
  flex: 0 0 auto;
  width: clamp(130px, 11vw, 200px);
  height: clamp(72px, 7vw, 110px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  transition: all 0.3s ease;
}
.client-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 30, 30, 0.15);
}
.client-item img {
  max-width: 100%;
  max-height: clamp(48px, 5vw, 80px);
  object-fit: contain;
  transition: transform 0.3s ease;
}
.client-item:hover img {
  transform: scale(1.06);
}
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .clients-header {
    margin-bottom: var(--sp-5);
  }
  .client-slider {
    gap: var(--sp-4);
    animation-duration: 25s;
  }
  .client-item {
    width: 120px;
    height: 68px;
    padding: var(--sp-2);
  }
  .client-item img {
    max-height: 40px;
  }
  .slider-container::before,
  .slider-container::after {
    width: 36px;
  }
}

/* ── Testimonials ── */
.testimonials-section {
  padding: var(--section-v) 0;
}
.testi-swiper {
  padding: var(--sp-6) 0 var(--sp-8) !important;
  overflow: hidden;
}
.testi-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2vw, 40px) clamp(18px, 1.8vw, 36px);
  border: 1px solid rgba(10, 75, 158, 0.08);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  opacity: 0.5;
  transform: scale(0.9);
  height: auto;
}
.testi-card.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(10, 75, 158, 0.2);
  box-shadow: var(--shadow-lg);
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: var(--sp-5);
  font-family: Georgia, serif;
  font-size: clamp(80px, 6vw, 130px);
  color: var(--red-soft);
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
}
.testi-avatar {
  width: clamp(50px, 4vw, 72px);
  height: clamp(50px, 4vw, 72px);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--sp-4);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-sm);
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name {
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: var(--font-display);
}
.testi-role {
  font-size: clamp(11px, 0.75vw, 14px);
  color: var(--muted);
  font-family: var(--font-ui);
  margin-bottom: var(--sp-2);
}
.testi-stars {
  color: var(--gold);
  font-size: clamp(12px, 0.9vw, 16px);
  letter-spacing: 2px;
  margin-bottom: var(--sp-3);
}
.testi-text {
  font-size: clamp(13px, 0.85vw, 16px);
  color: var(--text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.testi-btn-prev,
.testi-btn-next {
  width: 42px !important;
  height: 42px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(10, 75, 158, 0.15) !important;
  border-radius: 50%;
  transition: background 0.2s;
}
.testi-btn-prev:hover,
.testi-btn-next:hover {
  background: var(--primary) !important;
}
.testi-btn-prev::after,
.testi-btn-next::after {
  font-size: 15px !important;
  font-weight: 700;
  color: var(--red);
}
.testi-pagination .swiper-pagination-bullet {
  background: rgba(10, 75, 158, 0.2) !important;
  opacity: 1 !important;
  width: 7px !important;
  height: 7px !important;
  transition: all 0.35s;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--red) !important;
  width: 22px !important;
  border-radius: 4px !important;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-1);
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(10, 75, 158, 0.15);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.testi-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
.testi-dots {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}
.testi-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10, 75, 158, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s;
}
.testi-dots .dot.active {
  background: var(--dark);
  width: 22px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section {
  padding: var(--section-v) 0;
  position: relative;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
  opacity: 0.5;
  z-index: 2;
}
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(200px, 18vw, 280px), 1fr)
  );
  gap: var(--grid-gap);
  margin-bottom: var(--sp-8);
}
.contact-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2vw, 36px) clamp(16px, 1.6vw, 28px);
  text-align: center;
  border: 1px solid rgba(10, 75, 158, 0.08);
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  background: white;
}
.contact-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.contact-card:hover::after {
  transform: scaleX(1);
}
.cc-icon {
  width: clamp(52px, 4vw, 72px);
  height: clamp(52px, 4vw, 72px);
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(196, 30, 30, 0.08),
    rgba(245, 176, 66, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 1.6vw, 28px);
  color: var(--red);
  transition: all 0.32s;
}
.contact-card:hover .cc-icon {
  background: var(--red);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-red);
}
.cc-title {
  font-size: clamp(16px, 1.2vw, 22px);
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
}
.cc-detail {
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}
.cc-sub {
  font-size: clamp(11px, 0.75vw, 14px);
  color: var(--muted);
  margin-bottom: var(--sp-3);
}
.cc-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-family: var(--font-ui);
  font-size: clamp(12px, 0.8vw, 15px);
  color: var(--red);
  transition: gap var(--t-fast);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
}
.cc-link:hover {
  gap: 10px;
  border-bottom-color: var(--red);
}
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: stretch;
}
.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 440px;
  transition: all var(--t-base);
}
.contact-map:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.contact-map iframe {
  width: 100%;
  flex: 1;
  min-height: 300px;
  border: none;
  display: block;
}
.map-cap {
  padding: var(--sp-4) var(--sp-5);
  background: white;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.map-cap-title {
  font-size: clamp(13px, 0.9vw, 17px);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
}
.map-cap-title i {
  color: var(--red);
}
.map-cap p {
  font-size: clamp(11px, 0.75vw, 14px);
  color: var(--muted);
  margin: 0;
}
.map-badge {
  background: var(--surface);
  padding: 4px var(--sp-4);
  border-radius: var(--r-pill);
  font-size: clamp(11px, 0.75vw, 14px);
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.map-badge i {
  color: var(--gold);
}
.contact-form {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.5vw, 48px) clamp(20px, 2vw, 40px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 75, 158, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--t-base);
}
.contact-form:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
  border-color: rgba(196, 30, 30, 0.12);
}
.form-head {
  margin-bottom: var(--sp-5);
}
.form-head-title {
  font-size: clamp(18px, 1.4vw, 26px);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
}
.form-head-title i {
  color: var(--red);
  font-size: clamp(16px, 1.2vw, 22px);
}
.form-head p {
  font-size: clamp(13px, 0.85vw, 16px);
  color: var(--muted);
}
.contact-form form {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.input-group {
  margin-bottom: var(--sp-4);
}
.input-group label {
  display: block;
  font-size: clamp(11px, 0.75vw, 14px);
  font-weight: 600;
  font-family: var(--font-ui);
  color: var(--dark);
  margin-bottom: var(--sp-1);
}
.input-group label i {
  color: var(--red);
  margin-right: 4px;
  font-size: 11px;
}
.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: clamp(13px, 0.85vw, 16px);
  background: var(--surface);
  transition: all 0.22s;
  color: var(--text);
}
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 4px rgba(196, 30, 30, 0.06);
}
.input-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-msg {
  margin-top: var(--sp-3);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 860px) {
  .contact-bottom {
    grid-template-columns: 1fr;
  }
  .contact-map {
    min-height: 320px;
  }
}
@media (max-width: 580px) {
  .contact-cards-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   SERVICE AREA
═══════════════════════════════════════════════ */
.service-area-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border);
}
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(100px, 8vw, 140px), 1fr)
  );
  gap: var(--grid-gap);
  width: 100%;
}
.location-card {
  --loc-c: #c41e1e;
  cursor: pointer;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(10, 75, 158, 0.08);
  padding: clamp(12px, 1.4vw, 22px) var(--sp-2);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.location-card:hover,
.location-card:focus {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--loc-c);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: white;
  outline: none;
}
.loc-icon-wrap {
  width: clamp(40px, 3.5vw, 58px);
  height: clamp(40px, 3.5vw, 58px);
  margin: 0 auto var(--sp-3);
  position: relative;
}
.loc-icon-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--loc-c);
  opacity: 0;
  transition: all 0.4s;
}
.location-card:hover .loc-icon-ring,
.location-card:focus .loc-icon-ring {
  opacity: 0.35;
  transform: scale(1.15);
}
.loc-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1.4vw, 22px);
  color: var(--loc-c);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}
.location-card:hover .loc-icon,
.location-card:focus .loc-icon {
  background: var(--loc-c);
  color: white;
  transform: scale(1.06);
}
.loc-name {
  font-family: var(--font-display);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 700;
  color: var(--dark);
  transition: color 0.3s;
  line-height: 1.2;
}
.location-card:hover .loc-name,
.location-card:focus .loc-name {
  color: var(--loc-c);
}
.loc-line {
  width: 20px;
  height: 2px;
  margin: var(--sp-2) auto 0;
  background: var(--border);
  border-radius: 4px;
  transition: all 0.4s;
}
.location-card:hover .loc-line,
.location-card:focus .loc-line {
  width: 36px;
  background: var(--loc-c);
}
.location-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(13, 15, 26, 0.92);
  color: white;
  padding: var(--sp-3) var(--sp-6);
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 99999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  font-size: 14px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.location-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.location-toast-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.location-toast-inner i {
  color: #4caf50;
  font-size: 16px;
}
.location-toast-inner strong {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  padding: clamp(48px, 7vw, 80px) var(--container-pad);
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--red-dark) 0%,
    var(--red) 55%,
    #e83a3a 100%
  );
  position: relative;
  overflow: hidden;
  margin-top: var(--section-gap-sm);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(245, 176, 66, 0.15),
    transparent 50%
  );
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-title {
  color: white;
  font-size: clamp(26px, 5vw, 44px);
  margin-bottom: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--sp-7);
  font-size: clamp(14px, 3vw, 17px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-buttons {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.62);
}

.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) var(--container-pad) var(--sp-7);
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: clamp(28px, 3.5vw, 44px);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: var(--sp-4);
  filter: brightness(1.2);
  background-color: white;
  border-radius: var(--r-sm);
  padding: 5px var(--sp-5);
}

.footer-about p {
  font-size: 14px;
  line-height: 1.72;
  max-width: 300px;
}

.footer-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 30, 30, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 4px var(--sp-3);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: var(--sp-3);
  border: 1px solid rgba(196, 30, 30, 0.3);
  font-family: var(--font-ui);
}

.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  transition: all var(--t-fast);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateY(-3px);
}

.footer-col-title {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid rgba(196, 30, 30, 0.4);
  display: inline-block;
  font-family: var(--font-display);
}

.footer-col-products {
  position: relative;
}

.footer-product-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding-right: var(--sp-2);
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.05);
}

.footer-product-scroll::-webkit-scrollbar {
  width: 4px;
}

.footer-product-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.footer-product-scroll::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

.footer-product-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

.footer-col ul li {
  margin-bottom: var(--sp-2);
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: all var(--t-fast);
}

.footer-col ul li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity var(--t-fast);
}

.footer-col ul li a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-col ul li a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--t-fast);
}

.footer-contact-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

.fc-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(196, 30, 30, 0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  margin-top: 1px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--sp-4) var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.34);
  transition: color var(--t-fast);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-product-scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  pointer-events: none;
  opacity: 0.6;
  border-radius: 0 0 8px 8px;
}

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 36px);
  }

  .footer-product-scroll {
    max-height: 170px;
  }
}

@media (max-width: 768px) {
  .footer-product-scroll {
    max-height: 150px;
  }

  .footer-product-scroll::-webkit-scrollbar {
    width: 3px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .footer-product-scroll {
    max-height: 180px;
  }
}

/* ── FLOATING ACTION BUTTONS (Call + WhatsApp) ── */
.floating-actions {
  position: fixed;
  bottom: var(--sp-5);
  left: var(--sp-5);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.call-float,
.whatsapp-float {
  position: relative;
  bottom: auto;
  right: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  cursor: pointer;
  transition: all var(--t-fast);
}

.call-float {
  background: var(--red);
  box-shadow: 0 4px 16px rgba(196, 30, 30, 0.4);
}
.call-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(196, 30, 30, 0.5);
  background: var(--red-dark);
}

.whatsapp-float {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@media (max-width: 480px) {
  .floating-actions {
    bottom: var(--sp-4);
    right: var(--sp-4);
    gap: var(--sp-2);
  }
  .call-float,
  .whatsapp-float {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }
}

/* ── GLOBAL RESPONSIVE GUARDS (no horizontal scroll / equal margins) ── */
img,
video,
iframe,
svg,
canvas {
  max-width: 100%;
}
.about-grid,
.ind-grid,
.why-grid,
.contact-cards-row,
.service-area-grid,
.dummy-grid {
  width: 100%;
}

/* ── FOCUS VISIBLE GLOBAL ── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* CSS FOR PRODUCT DETAIL PAGE */
.pd-section {
  --pd-red: #c41e1e;
  --pd-red-dark: #9c1414;
  --pd-red-light: #ff4d4d;
  --pd-ink: #0d1117;
  --pd-ink-soft: #1a212e;
  --pd-gray: #5b6472;
  --pd-bg: #f7f7f9;
  --pd-border: #e7e7ec;
  --pd-radius: 18px;
  font-family: "DM Sans", "Inter", sans-serif;
  background: var(--pd-bg);
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
  color: var(--pd-ink);
}

@media (min-width: 768px) {
  .pd-section {
    padding: 90px 0 100px;
  }
}

.pd-section * {
  box-sizing: border-box;
}

.pd-section .pd-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .pd-section .pd-container {
    padding: 0 24px;
  }
}

/* Background decorative blur blobs */
.pd-blob {
  display: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .pd-blob {
    display: block;
  }
}

.pd-blob-1 {
  width: 520px;
  height: 520px;
  background: var(--pd-red);
  top: -180px;
  right: -160px;
}
.pd-blob-2 {
  width: 420px;
  height: 420px;
  background: var(--pd-red-dark);
  bottom: -160px;
  left: -140px;
}

/* Section Breadcrumb Eyebrow */
.pd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 30, 30, 0.08);
  color: var(--pd-red);
  border: 1px solid rgba(196, 30, 30, 0.2);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ── TOP SPLIT GRID ── */
.pd-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .pd-top-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    margin-bottom: 90px;
  }
}

/* Clean Single-Image Gallery Structure */
.pd-gallery {
  position: relative;
  top: auto;
  width: 100%;
}

@media (min-width: 992px) {
  .pd-gallery {
    position: sticky;
    top: 110px;
  }
}

.pd-main-image {
  border-radius: var(--pd-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 25px 60px -20px rgba(13, 17, 23, 0.25);
  border: 1px solid var(--pd-border);
  aspect-ratio: 4/3;
  position: relative;
  width: 100%;
}

.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Info Block */
.pd-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pd-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  max-width: 100%;
}

@media (min-width: 480px) {
  .pd-category-badge {
    font-size: 12px;
    padding: 7px 16px;
  }
}

.pd-category-badge i {
  color: var(--pd-red-light);
}

.pd-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 4vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--pd-ink);
}

.pd-rating-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .pd-rating-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

.pd-short-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--pd-gray);
  margin-bottom: 5px;
  margin-top: 5px;
  max-width: 560px;
}

/* Features Pills Grid */
.pd-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

@media (min-width: 480px) {
  .pd-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pd-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: 14px;
  padding: 13px 16px;
  transition: all 0.25s;
}
.pd-feature-item:hover {
  border-color: var(--pd-red);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(196, 30, 30, 0.35);
}
.pd-feature-item .pd-fi-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pd-red), var(--pd-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}
.pd-feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--pd-ink);
}

/* Call To Action Buttons Row */
.pd-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .pd-cta-row {
    flex-direction: row;
    gap: 14px;
  }
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  width: 100%;
}

@media (min-width: 480px) {
  .pd-btn {
    width: auto;
  }
}

.pd-btn-primary {
  background: var(--pd-red);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(196, 30, 30, 0.55);
}
.pd-btn-primary:hover {
  background: var(--pd-red-dark);
  transform: translateY(-2px);
}
.pd-btn-outline {
  background: transparent;
  color: var(--pd-ink);
  border: 1.5px solid var(--pd-border);
}
.pd-btn-outline:hover {
  border-color: var(--pd-red);
  color: var(--pd-red);
}

/* ── LAYOUT BLOCKS GENERICS ── */
.pd-block {
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .pd-block {
    margin-bottom: 90px;
  }
}

.pd-block-head {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .pd-block-head {
    margin: 0 auto 44px;
  }
}

.pd-block-head .pd-eyebrow {
  margin-bottom: 14px;
}
.pd-block-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  color: var(--pd-ink);
  margin: 0 0 12px;
}
.pd-block-sub {
  color: var(--pd-gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ── SPECIFICATIONS TABLE ── */
.pd-spec-wrap {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px -28px rgba(13, 17, 23, 0.25);
}
.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
}
.pd-spec-table tr {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--pd-border);
}

@media (min-width: 576px) {
  .pd-spec-table tr {
    display: table-row;
  }
}

.pd-spec-table tr:last-child {
  border-bottom: none;
}
.pd-spec-table tr:nth-child(even) {
  background: #fafafc;
}
.pd-spec-table td {
  padding: 14px 20px;
  font-size: 14px;
}

@media (min-width: 576px) {
  .pd-spec-table td {
    padding: 18px 28px;
    font-size: 15px;
  }
}

.pd-spec-table td:first-child {
  font-weight: 700;
  color: var(--pd-ink);
  width: 100%;
  border-right: none;
  padding-bottom: 4px;
}

@media (min-width: 576px) {
  .pd-spec-table td:first-child {
    width: 38%;
    border-right: 3px solid rgba(196, 30, 30, 0.12);
    padding-bottom: 18px;
  }
}

.pd-spec-table td:last-child {
  color: var(--pd-gray);
  font-weight: 500;
  padding-top: 0;
}

@media (min-width: 576px) {
  .pd-spec-table td:last-child {
    padding-top: 18px;
  }
}

/* ── WHY CHOOSE US GRID ── */
.pd-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .pd-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .pd-why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.pd-why-card {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  padding: 24px 20px;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .pd-why-card {
    padding: 32px 26px;
  }
}

.pd-why-card:hover {
  box-shadow: 0 22px 50px -25px rgba(13, 17, 23, 0.28);
  transform: translateY(-5px);
  border-color: var(--pd-red);
}
.pd-why-card .pd-wc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(196, 30, 30, 0.08);
  color: var(--pd-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.pd-why-card .pd-h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--pd-ink);
}
.pd-why-card p {
  font-size: 13.5px;
  color: var(--pd-gray);
  margin: 0;
  line-height: 1.6;
}

/* ── CONTACT & MAP BLOCK ── */
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 50px;
}

@media (min-width: 992px) {
  .contact-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

.contact-map {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pd-border);

  overflow: hidden;
  box-shadow: 0 15px 35px -15px rgba(13, 17, 23, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

@media (min-width: 768px) {
  .contact-map iframe {
    height: 400px;
  }
}

.map-cap {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-top: 1px solid var(--pd-border);
}

@media (min-width: 480px) {
  .map-cap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }
}

.map-cap-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--pd-ink);
  margin-bottom: 4px;
}

.map-cap p {
  margin: 0;
  font-size: 14px;
  color: var(--pd-gray);
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f1f3;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pd-ink);
  align-self: flex-start;
}

/* Inline Inquiries / Contact Form Elements */
.contact-form {
  background: #fff;
  border: 1px solid var(--pd-border);
  padding: 24px 20px;
  box-shadow: 0 15px 35px -15px rgba(13, 17, 23, 0.15);
}

@media (min-width: 768px) {
  .contact-form {
    padding: 36px 32px;
  }
}

.form-head {
  margin-bottom: 24px;
}

.form-head-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--pd-ink);
  margin-bottom: 6px;
}

.form-head p {
  margin: 0;
  font-size: 14px;
  color: var(--pd-gray);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.input-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pd-ink);
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--pd-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--pd-ink);
  background: #fcfcfd;
  transition: border-color 0.2s;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--pd-red);
  background: #fff;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  margin-top: 8px;
}

/* OUR BLOGS */
/* ---- Scoped variables (mirrors site palette seen in header/footer: red #c41e1e, near-black #14161c, white) ---- */
.blogs-page-section {
  --bp-red: #c41e1e;
  --bp-red-dark: #8f1414;
  --bp-red-light: #e8463f;
  --bp-ink: #14161c;
  --bp-ink-soft: #3a3d46;
  --bp-muted: #6b6f7a;
  --bp-line: #eceef2;
  --bp-bg: #fbfafa;
  --bp-card: #ffffff;
  --bp-shadow: 0 10px 30px rgba(20, 22, 28, 0.08);
  --bp-shadow-lg: 0 25px 60px rgba(20, 22, 28, 0.14);
  --bp-radius: 18px;
  font-family: "DM Sans", "Inter", sans-serif;
  color: var(--bp-ink);
  background: var(--bp-bg);
  overflow: hidden;
}
.blogs-page-section * {
  box-sizing: border-box;
}
.blogs-page-section .bp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Updated selector to replace heading tags */
.blogs-page-section .bp-hero-title,
.blogs-page-section .bp-card-title {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.2px;
  margin: 0;
}

.blogs-page-section .bp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--bp-red);
  background: rgba(196, 30, 30, 0.08);
  border: 1px solid rgba(196, 30, 30, 0.18);
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
}
.blogs-page-section .bp-eyebrow i {
  font-size: 11px;
}

/* ===== HERO ===== */
.bp-hero {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(
      900px 500px at 85% -10%,
      rgba(196, 30, 30, 0.07),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbfafa 100%);
  border-bottom: 1px solid var(--bp-line);
}
.bp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(20, 22, 28, 0.05) 1px,
    transparent 1.4px
  );
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(120deg, #000 5%, transparent 45%);
  mask-image: linear-gradient(120deg, #000 5%, transparent 45%);
  pointer-events: none;
}
.bp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}


.bp-hero-copy .bp-hero-title {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--bp-ink);
  margin: 18px 0 18px;
}
.bp-hero-copy .bp-hero-title span {
  color: var(--bp-red);
}
.bp-hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bp-muted);
  max-width: 480px;
  margin-bottom: 30px;
}
.bp-hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 34px;
}
.bp-hero-stats .bp-stat b {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--bp-ink);
}
.bp-hero-stats .bp-stat span {
  font-size: 13px;
  color: var(--bp-muted);
}

.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.bp-btn-primary {
  background: linear-gradient(135deg, var(--bp-red), var(--bp-red-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(196, 30, 30, 0.28);
}
.bp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(196, 30, 30, 0.36);
}
.bp-btn-outline {
  background: transparent;
  color: var(--bp-ink);
  border: 1.5px solid var(--bp-line);
}
.bp-btn-outline:hover {
  border-color: var(--bp-red);
  color: var(--bp-red);
  transform: translateY(-3px);
}
.bp-btn-sm {
  padding: 10px 18px;
  font-size: 12.5px;
}

/* hero illustration */
.bp-hero-art {
  position: relative;
  height: 420px;
}
.bp-art-card {
  position: absolute;
  background: var(--bp-card);
  border-radius: 20px;
  box-shadow: var(--bp-shadow);
  border: 1px solid var(--bp-line);
  overflow: hidden;
}
.bp-art-main {
  width: 78%;
  height: 78%;
  top: 10%;
  left: 6%;
  background: linear-gradient(145deg, #1c1e26, #101218);
}
.bp-art-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: luminosity;
}
.bp-art-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(196, 30, 30, 0.35), transparent 55%);
}
.bp-art-chip {
  width: 170px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  animation: bpFloat 5s ease-in-out infinite;
}
.bp-art-chip.c1 {
  top: 0;
  right: 0;
}
.bp-art-chip.c2 {
  bottom: 6%;
  left: 0;
  animation-delay: 1.2s;
}
.bp-art-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex: none;
  background: rgba(196, 30, 30, 0.1);
  color: var(--bp-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.bp-art-chip b {
  display: block;
  font-size: 18px;
  font-family: "Barlow Condensed";
}
.bp-art-chip span {
  font-size: 11px;
  color: var(--bp-muted);
}
@keyframes bpFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== BLOG GRID ===== */
.bp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.bp-card {
  background: var(--bp-card);
  border-radius: var(--bp-radius);
  overflow: hidden;
  border: 1px solid var(--bp-line);
  box-shadow: var(--bp-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.bp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bp-shadow-lg);
}
.bp-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.bp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.bp-card:hover .bp-card-img img {
  transform: scale(1.08);
}
.bp-card-img .bp-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}
.bp-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Target class instead of h4 */
.bp-card-body .bp-card-title {
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.bp-card-body p {
  font-size: 14px;
  color: var(--bp-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.bp-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--bp-muted);
  border-top: 1px dashed var(--bp-line);
  padding-top: 14px;
  margin-bottom: 16px;
}
.bp-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bp-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--bp-red);
  text-decoration: none;
}
.bp-read-link i {
  transition: transform 0.25s ease;
}
.bp-card:hover .bp-read-link i {
  transform: translateX(4px);
}

.bp-loadmore {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .bp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bp-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .bp-hero-grid {
    grid-template-columns: 1fr;
  }
  .bp-hero-art {
    height: 300px;
    order: -1;
  }
  .bp-featured-card {
    grid-template-columns: 1fr;
  }
  .bp-featured-img {
    min-height: 260px;
  }
}
@media (max-width: 680px) {
  .bp-grid {
    grid-template-columns: 1fr;
  }
  .bp-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bp-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .bp-newsletter {
    padding: 44px 24px;
  }
  .bp-newsletter-form {
    flex-direction: column;
  }
  .bp-section {
    padding: 56px 0;
  }
  .bp-hero {
    padding: 60px 0 50px;
  }
  .bp-hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
}

/* ── VARIABLES (matches ATDSC site palette) ── */
:root {
  --red: #c41e1e;
  --red-dark: #9e1818;
  --navy: #0d1b2a;
  --gold: #c8a84b;
  --light-bg: #f7f8fa;
  --white: #ffffff;
  --border: #e8edf2;
  --text-main: #1e293b;
  --text-body: #475569;
  --text-mute: #94a3b8;
  --font-d: "Barlow Condensed", sans-serif;
  --font-b: "DM Sans", sans-serif;
  --font-ui: "Inter", sans-serif;
  --r: 12px;
  --r-sm: 8px;
  --r-pill: 999px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.blg * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.blg {
  font-family: var(--font-b);
  color: var(--text-main);
  background: var(--light-bg);
}

/* ── BREADCRUMB ── */
.blg-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.blg-breadcrumb-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-mute);
}
.blg-breadcrumb-inner a {
  color: var(--text-mute);
  text-decoration: none;
}
.blg-breadcrumb-inner a:hover {
  color: var(--red);
}
.blg-breadcrumb-inner .bc-active {
  color: var(--red);
  font-weight: 600;
}
.blg-breadcrumb-inner .bc-dot {
  color: var(--border);
}

/* ── HERO BANNER ── */
.blg-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 52px 0 0;
}
.blg-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.blg-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 30, 30, 0.08);
  color: var(--red);
  border: 1px solid rgba(196, 30, 30, 0.18);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.blg-title {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 3.8vw, 2.5rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.blg-title .blg-red {
  color: var(--red);
}

.blg-excerpt {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Meta row */
.blg-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding-bottom: 32px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-mute);
}
.blg-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blg-meta-item i {
  color: var(--red);
  font-size: 11px;
}
.blg-meta-sep {
  color: var(--border);
}

/* Featured image */
.blg-feat-img {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--r) var(--r) 0 0;
  overflow: hidden;
  box-shadow: 0 -2px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}
.blg-feat-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blg-feat-img:hover img {
  transform: scale(1.02);
}

/* ── BODY LAYOUT ── */
.blg-body {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  grid-template-columns: 1fr 308px;
  gap: 36px;
  align-items: start;
  margin-bottom: 50px;
}

/* ── ARTICLE ── */
.blg-article {
  min-width: 0;
}

/* Content card */
.blg-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 40px 44px;
  margin-bottom: 24px;
}

/* Section title */
.blg-section-title {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

/* Sub title */
.blg-sub-title {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

/* Body text */
.blg-p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 18px;
}
.blg-p:last-child {
  margin-bottom: 0;
}

/* Lead paragraph */
.blg-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
  border-left: 3px solid var(--red);
  padding-left: 18px;
  margin-bottom: 20px;
}

/* Divider */
.blg-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* ── QUOTE ── */
.blg-quote {
  background: var(--light-bg);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 24px 28px;
  margin: 28px 0;
  position: relative;
}
.blg-quote-icon {
  font-size: 3rem;
  color: rgba(196, 30, 30, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.blg-quote-text {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 10px;
}
.blg-quote-by {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ── STATS ROW ── */

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .blg-body {
    grid-template-columns: 1fr 280px;
    gap: 24px;
  }
  .blg-related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blg-card {
    padding: 32px 28px;
  }
}
@media (max-width: 768px) {
  .blg-body {
    grid-template-columns: 1fr;
  }
  .blg-sidebar {
    position: static;
  }
  .blg-related-grid {
    grid-template-columns: 1fr;
  }
  .blg-card {
    padding: 24px 20px;
  }
  .blg-stats {
    grid-template-columns: 1fr;
  }
  .blg-benefits {
    grid-template-columns: 1fr;
  }
  .blg-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .blg-feat-img img {
    height: 260px;
  }
}
@media (max-width: 480px) {
  .blg-share {
    grid-template-columns: 1fr 1fr;
  }
  .blg-hero {
    padding: 36px 0 0;
  }
}
/* BREADCRUMB SECTION */
.bp-breadcrumb {
  position: relative;
  padding: 85px 28px 76px;
  overflow: hidden;
  isolation: isolate;
}
.bp-breadcrumb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bp-breadcrumb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.bp-breadcrumb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #000000 42%,
    #00000080 50%,
    rgb(255 255 255 / 0%) 60%
  );
  opacity: 0.7;
}
.bp-breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.bp-breadcrumb-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.bp-breadcrumb-tag i {
  color: #e8463f;
}
.bp-breadcrumb-left p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.3px;
  margin-left: 25px;
}
.bp-breadcrumb-left nav ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}
.bp-breadcrumb-left nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}
.bp-breadcrumb-left nav a:hover {
  color: #fff;
}
.bp-breadcrumb-left nav li i {
  color: #e8463f;
  font-size: 10px;
}
.bp-breadcrumb-left nav li[aria-current="page"] {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 600px) {
  .bp-breadcrumb {
    padding: 44px 20px;
  }
  .bp-breadcrumb-left  {
    font-size: 30px;
  }
}

/* MARKET PLACE SECTION */

.sm-wrap {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 50px;
}
.sm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  margin-left: 50px;
  margin-right: 50px;
}

/* Generic link/button base */
.sm-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 10px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  border: none;
}
.sm-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  filter: brightness(1.05);
}

/* Category grid (top, 2 cols, blue) */
.sm-grid-category {
  grid-template-columns: repeat(2, 1fr);
}
.sm-link-category {
  color: #fff;
  font-size: 19px;
  padding: 15px 10px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff3d3d 100%);
}

/* State / Union Territory bar (full width, orange) */
.sm-grid-region {
  grid-template-columns: 1fr;
}
.sm-link-region {
  color: #ffffff;
  font-size: 19px;
  padding: 15px 10px;
  background: linear-gradient(135deg, #4b5563 0%, #111827 100%);
}

/* City links (4 cols, dark blue) */
.sm-link-city {
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff3d3d 100%);
}

/* Single city grid (e.g. Port Blair alone) */
.sm-grid-solo {
  grid-template-columns: repeat(4, 1fr);
}
.sm-grid-solo .sm-link-city {
  grid-column: span 1;
}

@media (max-width: 900px) {
  .sm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sm-grid-category {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .sm-grid {
    grid-template-columns: 1fr;
  }
}

.prod-short-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0;
}