:root {
  --blue: #1A56DB;
  --blue-light: #2563EB;
  --blue-dark: #1E40AF;
  --blue-pale: #EFF6FF;
  --accent: #2563EB;
  --red: #DC2626;
  --red-light: #EF4444;
  --red-pale: #FEF2F2;
  --navy: #0F172A;
  --ink: #1E293B;
  --muted: #64748B;
  --border: #E2E8F0;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --gold: #F59E0B;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .16);
  --r: 14px;
  --r-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 6%;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, .8);
  transition: box-shadow .3s, background .3s;
}

.nav-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(15, 23, 42, .08)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.nav-logo img {
  height: 42px;
  width: 42px;
  border-radius: 10px;
  object-fit: cover
}

.nav-logo-text .brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em
}

.nav-logo-text .tag {
  font-size: .65rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: .875rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: .2s
}

.nav-links a:hover {
  background: var(--blue-pale);
  color: var(--blue)
}

/* ── DROPDOWN NAVBAR ── */
.nav-dropdown-wrapper {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  width: 450px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  z-index: 1000;
  border: 1px solid var(--border);
}
.nav-dropdown-wrapper:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.nav-links .nav-dropdown-item {
  font-size: 13.5px;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.nav-links .nav-dropdown-item:hover {
  background: var(--bg);
  color: var(--blue);
}
.nav-links .nav-dropdown-view-all {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--blue);
  font-weight: 700;
  font-size: 13.5px;
}
.nav-links .nav-dropdown-view-all:hover {
  background: transparent;
  text-decoration: underline;
}

.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 9px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  transition: .2s;
  letter-spacing: .01em
}

.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 86, 219, .35)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
  display: block
}

body.no-scroll {
  overflow: hidden;
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1008;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── MOBILE MENU OFF-CANVAS ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1009;
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header .brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}

.mobile-menu-header .close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 300;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.mobile-menu-header .close-btn:hover {
  color: var(--red);
}

.mobile-menu a {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ── MOBILE SUBMENU ── */
.mob-dropdown-wrapper {
  display: flex;
  flex-direction: column;
}
.mob-dropdown-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.mob-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid var(--blue-pale);
  margin-left: 16px;
  margin-bottom: 8px;
}
.mob-dropdown-menu.open {
  display: flex;
}
.mob-dropdown-menu a {
  font-size: 15px !important;
  padding: 10px 0 !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  border-bottom: none !important;
}
.mob-view-all {
  color: var(--blue) !important;
  font-weight: 700 !important;
}

.mobile-menu a:last-child {
  border: none;
  color: var(--blue);
  margin-top: 20px;
  background: var(--blue-pale);
  text-align: center;
  padding: 12px;
  border-radius: 10px;
}

.mobile-menu a:last-child:hover {
  background: var(--blue);
  color: #fff;
}

/* ── HERO ── */
#home {
  height: 780px;
  display: flex;
  align-items: center;
  padding: 0 6%;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

/* Ken Burns slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: kenBurns 8s ease-in-out infinite;
}

.hero-slide.active {
  opacity: 1
}

.hero-slide:nth-child(1) {
  animation-delay: 0s
}

.hero-slide:nth-child(2) {
  animation-delay: 2s
}

.hero-slide:nth-child(3) {
  animation-delay: 4s
}

.hero-slide:nth-child(4) {
  animation-delay: 6s
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.08) translate(-1%, -.5%)
  }

  100% {
    transform: scale(1.04) translate(1%, .5%)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(15, 23, 42, .94) 40%, rgba(26, 86, 219, .18) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-top: 68px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  background: rgba(220, 38, 38, .18);
  border: 1px solid rgba(220, 38, 38, .4);
  color: #FCA5A5;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FCA5A5;
  animation: pulse 2s infinite
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title .accent {
  background: linear-gradient(135deg, #93C5FD, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: 11px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: .25s;
  border: 2px solid var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .01em;
}

.btn-primary:hover {
  background: #B91C1C;
  border-color: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, .4)
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 11px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: .25s;
  border: 2px solid rgba(255, 255, 255, .25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px)
}

.hero-scroll {
  position: absolute;
  right: 6%;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
  animation: scrollLine 2s ease-in-out infinite
}

/* ── STATS ── */
#stats {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.stats-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: repeat(5, 1fr)
}

.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
  position: relative
}

.stat-item:last-child {
  border: none
}

.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.03em
}

.stat-num span {
  background: linear-gradient(135deg, #93C5FD, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stat-label {
  color: rgba(255, 255, 255, .45);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

/* ── SHARED SECTION ── */
.section {
  padding: 60px 6%
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75
}

.section-header {
  margin-bottom: 36px
}

.section-header.center {
  text-align: center
}

.section-header.center .section-eyebrow {
  justify-content: center
}

.section-header.center .section-sub {
  margin: 0 auto
}

/* ── ABOUT ── */
#about {
  background: var(--white)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.about-image-col {
  position: relative
}

.about-collage {
  padding-bottom: 30px;
  text-align: center;
}

.collage-left img {
  width: 80%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  transition: transform .3s ease;
}

.collage-left img:hover {
  transform: translateY(-5px);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink)
}

.af-item svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0
}

/* ── PRODUCTS ── */
#products {
  background: var(--bg)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
  border: 1px solid var(--border);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(26, 86, 219, .2)
}

.pc-img {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.product-card:hover .pc-img img {
  transform: scale(1.08)
}

.pc-body {
  padding: 18px 20px
}

.pc-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--red-pale);
  color: var(--red);
  margin-bottom: 8px
}

.pc-body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}

.pc-body p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.55
}

/* ── SERVICES ── */
#services {
  background: var(--white)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.service-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: .3s;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transition: .3s;
  transform-origin: left;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, .15)
}

.service-card:hover::after {
  transform: scaleX(1)
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.si-blue {
  background: rgba(26, 86, 219, .1)
}

.si-sky {
  background: rgba(37, 99, 235, .1)
}

.si-indigo {
  background: rgba(99, 102, 241, .1)
}

.si-violet {
  background: rgba(139, 92, 246, .1)
}

.si-emerald {
  background: rgba(16, 185, 129, .1)
}

.si-amber {
  background: rgba(245, 158, 11, .1)
}

.service-icon svg {
  width: 26px;
  height: 26px
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.service-card p {
  font-size: .855rem;
  color: var(--muted);
  line-height: 1.65
}

/* ── INFRA ── */
#infrastructure {
  background: var(--navy);
  padding: 60px 6%
}

#infrastructure .section-inner {
  max-width: 1280px;
  margin: 0 auto
}

#infrastructure .section-title {
  color: #fff
}

#infrastructure .section-eyebrow {
  color: #FCA5A5
}

#infrastructure .section-eyebrow::before {
  background: #FCA5A5
}

#infrastructure .section-sub {
  color: rgba(255, 255, 255, .5)
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.infra-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.infra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue))
}

.infra-card:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-3px)
}

.infra-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(220, 38, 38, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.infra-icon svg {
  width: 26px;
  height: 26px;
  color: #FCA5A5
}

.infra-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.infra-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .48);
  line-height: 1.65
}

.infra-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: .68rem;
  font-weight: 700;
  color: #FCA5A5;
  letter-spacing: .08em;
  text-transform: uppercase
}

.infra-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FCA5A5
}

/* ── WHY US ── */
#why {
  background: var(--bg)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: .3s;
  border: 1px solid var(--border)
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, .15)
}

.why-card.featured {
  background: linear-gradient(145deg, #7f1d1d, var(--red));
  color: #fff;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 26px;
  border: none
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--red-pale)
}

.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red)
}

.why-card.featured .why-icon {
  background: rgba(255, 255, 255, .15)
}

.why-card.featured .why-icon svg {
  color: #fff
}

.why-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}

.why-card p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6
}

.why-card.featured h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 10px
}

.why-card.featured p {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem
}

/* ── PROCESS ── */
#process {
  background: var(--white)
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  z-index: 0;
  opacity: .3
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px
}

.ps-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
}

.ps-circle svg {
  width: 28px;
  height: 28px
}

.step1 .ps-circle {
  background: linear-gradient(135deg, #1A56DB, #1E40AF);
  color: #fff
}

.step2 .ps-circle {
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  color: #fff
}

.step3 .ps-circle {
  background: linear-gradient(135deg, #6366F1, #4338CA);
  color: #fff
}

.step4 .ps-circle {
  background: linear-gradient(135deg, #0F766E, #0F766E);
  color: #fff
}

.step5 .ps-circle {
  background: linear-gradient(135deg, #1E3A8A, #1E40AF);
  color: #fff
}

.ps-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.ps-desc {
  font-size: .775rem;
  color: var(--muted);
  line-height: 1.55
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--navy);
  padding: 96px 6%
}

#testimonials .section-inner {
  max-width: 1280px;
  margin: 0 auto
}

#testimonials .section-title {
  color: #fff
}

#testimonials .section-eyebrow {
  color: #FCA5A5
}

#testimonials .section-eyebrow::before {
  background: #FCA5A5
}

#testimonials .section-sub {
  color: rgba(255, 255, 255, .5)
}

.swiper-testi {
  overflow: hidden;
  padding-bottom: 52px !important
}

.testi-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  height: auto;
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px
}

.testi-text {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0
}

.ta-blue {
  background: var(--blue)
}

.ta-red {
  background: var(--red)
}

.ta-sky {
  background: var(--accent)
}

.testi-name {
  font-size: .875rem;
  font-weight: 700;
  color: #fff
}

.testi-company {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45)
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, .3) !important;
  opacity: 1 !important
}

.swiper-pagination-bullet-active {
  background: #fff !important;
  width: 22px !important;
  border-radius: 3px !important
}

/* ── CONTACT ── */
#contact {
  background: var(--bg)
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl)
}

.contact-left {
  background: linear-gradient(160deg, var(--navy) 0%, #1e1b4b 100%);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(220, 38, 38, .12);
  pointer-events: none;
}

.contact-left::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(26, 86, 219, .12);
  pointer-events: none;
}

.cl-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 24px;
  display: block
}

.cl-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px
}

.cl-sub {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 36px
}

.cl-divider {
  height: 1px;
  background: rgba(255, 255, 255, .1);
  margin-bottom: 28px
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  color: #60A5FA
}

.ci-item h4 {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 3px
}

.ci-item p {
  font-size: .88rem;
  color: #fff;
  line-height: 1.5
}

.cl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  background: rgba(220, 38, 38, .2);
  border: 1px solid rgba(220, 38, 38, .35);
  color: #FCA5A5;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cl-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FCA5A5;
  animation: pulse 2s infinite
}

.contact-right {
  background: var(--white);
  padding: 52px 44px
}

.contact-right h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px
}

.form-sub {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 28px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px
}

.form-group label {
  font-size: .775rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .03em
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: .875rem;
  color: var(--ink);
  background: var(--bg);
  transition: .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .08);
  background: var(--white)
}

.form-group textarea {
  resize: vertical;
  min-height: 100px
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
  margin-top: 6px;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: #B91C1C;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, .35)
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 64px 6% 28px
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-brand img {
  height: 44px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: block
}

.footer-brand p {
  color: rgba(255, 255, 255, .45);
  font-size: .84rem;
  line-height: 1.75;
  max-width: 240px
}

.footer-col h4 {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .45);
  font-size: .84rem;
  text-decoration: none;
  transition: .2s
}

.footer-col ul li a:hover {
  color: var(--accent)
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .45);
  font-size: .82rem;
  margin-bottom: 11px
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: .2s;
  cursor: pointer;
}

.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff
}

.social-btn svg {
  width: 16px;
  height: 16px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.footer-bottom p {
  color: rgba(255, 255, 255, .3);
  font-size: .78rem
}

.footer-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--accent))
}

/* ── ANIMATIONS ── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.5)
  }
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1)
  }

  50% {
    opacity: .3;
    transform: scaleY(.5)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.reveal-delay-4 {
  transition-delay: .4s
}

.reveal-delay-5 {
  transition-delay: .5s
}

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: #fff;
  padding: 13px 22px;
  border-radius: 11px;
  font-size: .875rem;
  font-weight: 600;
  transform: translateY(80px);
  opacity: 0;
  transition: .3s;
  z-index: 9999;
  border-left: 3px solid var(--blue);
  box-shadow: var(--shadow-xl);
}

#toast.show {
  transform: translateY(0);
  opacity: 1
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-card.featured {
    grid-row: auto
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:900px) {

  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-visual {
    display: none
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .infra-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
  }

  .process-steps::before {
    display: none
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr)
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }
}

@media(max-width:700px) {

  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .products-grid,
  .services-grid,
  .infra-grid,
  .why-grid,
  .footer-top {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr
  }

  .contact-form {
    padding: 24px 18px
  }

  .section {
    padding: 64px 5%
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-collage {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 0;
  }

  .collage-right {
    transform: none;
    flex-direction: row;
    gap: 16px;
  }

  .collage-right img {
    width: calc(50% - 8px);
    aspect-ratio: 1/1;
  }
}

/* ── SWIPER OVERRIDE ── */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(255, 255, 255, .15)
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 800 !important
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--red)
}

/* ── ABOUT PAGE BANNERS & GRID ── */
.about-hero {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6%;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url('../images/CommonTopBanner.jpg');
  background-size: cover;
  background-position: center;
}

.about-hero .ah-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.95) 40%, rgba(26, 86, 219, 0.25) 100%);
}

.about-hero .ah-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 68px;
}

.about-hero .ah-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 10px;
  letter-spacing: -.02em;
}

.about-hero .ah-title .accent {
  background: linear-gradient(135deg, #93C5FD, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero .ah-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 15px;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

.ap-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ap-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy);
  font-weight: 500;
}

.ap-body {
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--muted);
}

.ap-highlight-box {
  background: linear-gradient(135deg, rgba(220, 38, 38, .03), rgba(26, 86, 219, .03));
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 10px 0;
}

.ap-highlight-box .box-icon {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.ap-highlight-box .box-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.ap-highlight-box .box-content p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.ap-visual-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ap-image-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.ap-main-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.ap-badge-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.ap-badge-card .ap-badge-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}

.ap-badge-card .ap-badge-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 2px;
}

.ap-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ap-mini-grid .am-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.ap-mini-grid .am-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.ap-mini-grid .am-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-mini-grid .am-icon.blue {
  background: rgba(26, 86, 219, 0.1);
  color: var(--blue);
}

.ap-mini-grid .am-icon.red {
  background: rgba(220, 38, 38, 0.1);
  color: var(--red);
}

.ap-mini-grid .am-icon.sky {
  background: rgba(14, 165, 233, 0.1);
  color: #0EA5E9;
}

.ap-mini-grid .am-icon.emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.ap-mini-grid .am-icon svg {
  width: 14px;
  height: 14px;
}

/* ── MENTOR CARD SECTION ── */
.mentor-section {
  background: var(--bg);
}

.mentor-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 50px 6%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.mentor-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px;
  align-items: center;
}

.mentor-avatar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mentor-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
}

.mentor-avatar span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

.mentor-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.mentor-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.mentor-message-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mentor-message-col .quote-mark {
  font-family: serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(220, 38, 38, 0.15);
  position: absolute;
  top: -30px;
  left: -20px;
}

.mentor-quote {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--ink);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.mentor-pillars {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mentor-pillars .pillar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mentor-pillars .pillar-item .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ── ABOUT CTA CARD ── */
.about-cta-section {
  background: var(--white);
}

.about-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1e1b4b 100%);
  border-radius: var(--r-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-cta-card .cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.about-cta-card .cta-desc {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.7);
}

.about-cta-card .cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: center;
}

/* RESPONSIVE DESIGN FOR ABOUT PAGE */
@media(max-width: 900px) {
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mentor-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media(max-width: 500px) {
  .ap-mini-grid {
    grid-template-columns: 1fr;
  }

  .mentor-pillars {
    flex-direction: column;
    gap: 10px;
  }
}

/* ── CONTACT PAGE BANNERS & GRID ── */
.contact-hero {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6%;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url('../images/CommonTopBanner.jpg');
  background-size: cover;
  background-position: center;
}

.contact-hero .ch-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.95) 40%, rgba(26, 86, 219, 0.25) 100%);
}

.contact-hero .ch-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 68px;
}

.contact-hero .ch-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 10px;
  letter-spacing: -.02em;
}

.contact-hero .ch-title .accent {
  background: linear-gradient(135deg, #93C5FD, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero .ch-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.c-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy);
  font-weight: 500;
}

.c-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cic-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cic-icon svg {
  width: 20px;
  height: 20px;
}

.cic-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.cic-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.c-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.c-form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

/* ── MAP SECTION ── */
.contact-map-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.map-wrapper {
  margin-top: 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

/* RESPONSIVE DESIGN FOR CONTACT PAGE */
@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media(max-width: 480px) {
  .c-form-card {
    padding: 30px 20px;
  }
}

/* ── PRODUCTS PAGE HERO ── */
.products-hero {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6%;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url('../images/CommonTopBanner.jpg');
  background-size: cover;
  background-position: center;
}

.products-hero .ph-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.95) 40%, rgba(26, 86, 219, 0.25) 100%);
}

.products-hero .ph-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 68px;
}

.products-hero .ph-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 10px;
  letter-spacing: -.02em;
}

.products-hero .ph-title .accent {
  background: linear-gradient(135deg, #93C5FD, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-hero .ph-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 15px;
}

/* ── PRODUCTS FILTER BAR ── */
.products-filter-bar {
  background: var(--white);
  border-radius: var(--r);
  padding: 20px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pf-search-wrap {
  position: relative;
  flex-grow: 1;
  max-width: 480px;
  min-width: 260px;
}

.pf-search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}

.pf-search-wrap input {
  width: 100%;
  padding: 12px 16px 12px 46px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.25s ease;
  outline: none;
}

.pf-search-wrap input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.08);
  background: var(--white);
}

.pf-select-wrap {
  position: relative;
  min-width: 220px;
}

.pf-select-wrap select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.25s ease;
  outline: none;
  cursor: pointer;
}

.pf-select-wrap select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.08);
  background: var(--white);
}

.pf-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--muted);
  pointer-events: none;
}

.pf-count {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── PRODUCT CARD TRANSITIONS ── */
.products-grid .product-card {
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

.products-grid .product-card.hidden {
  opacity: 0;
  transform: scale(0.95);
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
  box-shadow: none;
}

.products-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.products-no-results.visible {
  display: flex;
}

.products-no-results svg {
  width: 48px;
  height: 48px;
  color: var(--muted);
}

.products-no-results h3 {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
}

.products-no-results p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 320px;
}

@media (max-width: 768px) {
  .products-filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 14px;
  }

  .pf-search-wrap,
  .pf-select-wrap {
    max-width: 100%;
    min-width: 100%;
  }

  .pf-count {
    text-align: center;
  }
}

a.product-card {
  text-decoration: none;
  display: block;
  color: inherit;
}

/* ── PRODUCT DETAIL LAYOUT ── */
.pd-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.pd-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-gallery-primary {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--white);
  aspect-ratio: 1/1;
}

.pd-gallery-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.pd-gallery-primary .arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  outline: none;
}

.pd-gallery-primary .arrow-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.pd-gallery-primary .arrow-btn svg {
  width: 20px;
  height: 20px;
}

.pd-gallery-primary .prev-btn {
  left: 16px;
}

.pd-gallery-primary .next-btn {
  right: 16px;
}

.pd-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.pd-gallery-thumbnails .thumb-tile {
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 1/1;
  background: var(--white);
  transition: all 0.2s ease;
}

.pd-gallery-thumbnails .thumb-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-gallery-thumbnails .thumb-tile:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.pd-gallery-thumbnails .thumb-tile.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

.pd-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}

.pd-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.pd-short-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── SPECIFICATION TABLE ── */
.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pd-spec-table tr:nth-child(even) {
  background-color: var(--bg);
}

.pd-spec-table tr:nth-child(odd) {
  background-color: var(--white);
}

.pd-spec-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.pd-spec-table tr:last-child td {
  border-bottom: none;
}

.pd-spec-table td.spec-label {
  font-weight: 700;
  color: var(--navy);
  width: 35%;
  background: rgba(15, 23, 42, 0.015);
  border-right: 1px solid var(--border);
}

.pd-desc-section {
  margin-top: 15px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.pd-desc-section h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.pd-desc-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}

.pd-desc-content p {
  margin-bottom: 16px;
}

.pd-desc-content ul,
.pd-desc-content ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.pd-desc-content li {
  margin-bottom: 8px;
}

.pd-desc-content strong {
  color: var(--navy);
}

/* ── RELATED PRODUCTS SECTION ── */
.related-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-bottom: 80px;
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.related-header .rh-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-slider-wrapper {
  position: relative;
  padding: 0 48px;
}

.swiper-related {
  padding-bottom: 40px !important;
}

.swiper-related .product-card {
  height: 100%;
}

.related-slider-wrapper .swiper-button-next,
.related-slider-wrapper .swiper-button-prev {
  color: var(--blue) !important;
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  transition: all 0.2s ease;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.related-slider-wrapper .swiper-button-next:hover,
.related-slider-wrapper .swiper-button-prev:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-color: var(--blue) !important;
}

.related-slider-wrapper .swiper-button-next::after,
.related-slider-wrapper .swiper-button-prev::after {
  font-size: 12px !important;
  font-weight: 800 !important;
}

.related-slider-wrapper .swiper-button-prev {
  left: 0px !important;
}

.related-slider-wrapper .swiper-button-next {
  right: 0px !important;
}

@media (max-width: 768px) {
  .related-slider-wrapper {
    padding: 0 !important;
  }

  .related-slider-wrapper .swiper-button-next,
  .related-slider-wrapper .swiper-button-prev {
    display: none !important;
  }
}

/* ── VIDEO GALLERY ── */
#video-gallery {
  background: var(--navy);
}
#video-gallery .section-title {
  color: #fff;
}
#video-gallery .section-eyebrow {
  color: #FCA5A5;
}
#video-gallery .section-eyebrow::before {
  background: #FCA5A5;
}
#video-gallery .section-sub {
  color: rgba(255, 255, 255, .5);
}

.swiper-video {
  padding-bottom: 50px !important;
}
.video-card {
  background: rgba(255, 255, 255, .04);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
  border: 1px solid rgba(255, 255, 255, .08);
  cursor: pointer;
  height: 100%;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
}
.vc-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #f1f5f9;
  overflow: hidden;
}
.vc-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.video-card:hover .vc-thumbnail img {
  transform: scale(1.05);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}
.video-card:hover .play-btn {
  background: var(--red);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}
.vc-info {
  padding: 18px 20px;
}
.vc-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.swiper-video .swiper-button-next,
.swiper-video .swiper-button-prev {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: var(--shadow-sm) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  transition: all 0.2s ease;
}
.swiper-video .swiper-button-next:hover,
.swiper-video .swiper-button-prev:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-color: var(--blue) !important;
}
.swiper-video .swiper-button-next::after,
.swiper-video .swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 800 !important;
}

/* ── VIDEO MODAL ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: 0.3s ease;
}
.video-modal.open .video-modal-content {
  transform: scale(1);
}
.video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.video-modal-close:hover {
  background: var(--red);
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 500px) {
  .pd-gallery-thumbnails {
    gap: 8px;
  }

  .pd-spec-table td {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .related-header .btn-outline {
    width: 100%;
    justify-content: center;
  }
}