*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #2d3967;
  --blue:         #11a0e6;
  --blue-light:   #2db8ff;
  --white:        #ffffff;
  --dark:         #0d1425;
  --topbar-h:     42px;
  --nav-h:        100px;
  --mobile-nav-h: 68px;
}

html, body { overflow-x: hidden; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--dark);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ═══════════════════════════════
   TOP BAR
═══════════════════════════════ */
.top-bar {
  width: 100%;
  height: var(--topbar-h);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  overflow: hidden;
}

.top-bar-inner {
  position: absolute;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  box-shadow: 0 2px 10px rgba(45,57,103,0.12);
}

.top-bar::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 220px; height: 100%;
  background: var(--navy);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.top-bar::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 220px; height: 100%;
  background: var(--blue);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.top-bar-left a:hover { opacity: 0.8; }
.top-bar-left a svg { width: 13px; height: 13px; flex-shrink: 0; }
.top-bar-left a.phone-link { color: #fff; }
.top-bar-left a.phone-link svg { stroke: #fff; }
.top-bar-left a.email-link { color: var(--navy); margin-left: 8px; }
.top-bar-left a.email-link svg { stroke: var(--blue); }

.tb-divider { width: 1px; height: 16px; background: rgba(45,57,103,0.2); }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 3;
}

.tb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 16px;
  border-radius: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.tb-btn svg { width: 12px; height: 12px; flex-shrink: 0; }
.tb-btn.email-btn { background: var(--navy); color: #fff; border-color: var(--navy); }
.tb-btn.email-btn:hover { background: var(--blue); border-color: var(--blue); }
.tb-btn.sms-btn { background: transparent; color: #fff; border-color: rgba(255,255,255,0.85); }
.tb-btn.sms-btn:hover { background: rgba(255,255,255,0.18); }

/* ═══════════════════════════════
   MAIN NAVBAR
═══════════════════════════════ */
nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: linear-gradient(135deg, #1a2040 0%, #0f1628 60%, #162140 100%);
  border-bottom: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  box-shadow: 0 4px 32px rgba(17,160,230,0.18);
}

nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--navy), var(--blue), transparent);
}

.logo-wrap { display: flex; align-items: center; text-decoration: none; }

.logo-wrap img {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(17,160,230,0.85)) drop-shadow(0 0 30px rgba(17,160,230,0.4));
  transition: filter 0.3s, transform 0.3s;
}
.logo-wrap:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 22px rgba(17,160,230,1)) drop-shadow(0 0 44px rgba(17,160,230,0.6));
  transform: scale(1.05);
}

.nav-links { display: flex; align-items: center; list-style: none; gap: 2px; }

.nav-links li a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ccd6f6;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
  transition: color 0.25s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.nav-links li a:hover { color: var(--white); }
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-links li a.active { color: var(--blue-light); }
.nav-links li a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue) 0%, #0d85c4 100%) !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow: 0 2px 16px rgba(17,160,230,0.35) !important;
  transition: box-shadow 0.25s, transform 0.2s !important;
  margin-left: 6px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  box-shadow: 0 4px 28px rgba(17,160,230,0.6) !important;
  transform: translateY(-1px) !important;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--mobile-nav-h));
  left: 0; right: 0;
  background: #0b1120;
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid rgba(17,160,230,0.3);
  z-index: 999;
  flex-direction: column;
  padding: 8px 0 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu li { list-style: none; border-bottom: 1px solid rgba(17,160,230,0.1); }
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu li a {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ccd6f6;
  text-decoration: none;
  padding: 14px 28px;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.mobile-menu li a:hover { background: rgba(17,160,230,0.08); color: var(--white); padding-left: 36px; }
.mobile-menu li a.active { color: var(--blue-light); }
.mobile-menu .mobile-cta {
  margin: 16px 28px 0;
  display: block;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, #0d85c4 100%);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 3px 16px rgba(17,160,230,0.35);
  transition: box-shadow 0.25s, transform 0.2s;
}
.mobile-menu .mobile-cta:hover { box-shadow: 0 6px 28px rgba(17,160,230,0.6); transform: translateY(-1px); }

/* ═══════════════════════════════
   HERO SWIPER SECTION
═══════════════════════════════ */
.hero-swiper-wrap {
  margin-top: calc(var(--topbar-h) + var(--nav-h));
  width: 100%;
  height: calc(100vh - var(--topbar-h) - var(--nav-h));
  position: relative;
  overflow: hidden;
}

.swiper { width: 100%; height: 100%; }

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6s ease;
}
.swiper-slide-active .slide-bg { transform: scale(1); }

.swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0d1425 0%,
    #0d1425 35%,
    rgba(13,20,37,0.75) 50%,
    rgba(13,20,37,0.1) 65%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.slide-accent {
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 45%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.08;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}

.slide-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(17,160,230,0.12);
  border: 1px solid rgba(17,160,230,0.35);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.1s ease, transform 0.5s 0.1s ease;
}

.slide-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s 0.25s ease, transform 0.5s 0.25s ease;
}
.slide-title span { color: var(--blue-light); }

.slide-subtitle {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(204,214,246,0.8);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s 0.4s ease, transform 0.5s 0.4s ease;
}

.slide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s 0.5s ease, transform 0.5s 0.5s ease;
}

.slide-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ccd6f6;
}
.slide-feature::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--blue);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

.slide-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s 0.65s ease, transform 0.5s 0.65s ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, #0d85c4 100%);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(17,160,230,0.45);
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.2s;
}
.btn-primary:hover { box-shadow: 0 8px 36px rgba(17,160,230,0.7); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: transparent;
  border: 1.5px solid rgba(17,160,230,0.5);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  background: rgba(17,160,230,0.1);
  color: var(--white);
}

.swiper-slide-active .slide-tag,
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-features,
.swiper-slide-active .slide-cta-row {
  opacity: 1;
  transform: translateY(0);
}

/* ── Custom Swiper Pagination ── */
.swiper-pagination { bottom: 28px !important; left: 80px !important; width: auto !important; text-align: left; }
.swiper-pagination-bullet { width: 28px !important; height: 3px !important; border-radius: 2px !important; background: rgba(255,255,255,0.3) !important; opacity: 1 !important; margin: 0 4px !important; transition: background 0.3s, width 0.3s !important; }
.swiper-pagination-bullet-active { background: var(--blue) !important; width: 48px !important; }

/* ── Custom Swiper Arrows ── */
.swiper-button-prev,
.swiper-button-next {
  width: 46px !important; height: 46px !important;
  background: rgba(13,20,37,0.85) !important;
  border: 1.5px solid rgba(17,160,230,0.4) !important;
  border-radius: 2px !important;
  backdrop-filter: blur(4px) !important;
  transition: background 0.25s, border-color 0.25s !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover { background: rgba(13,20,37,1) !important; border-color: var(--blue) !important; }
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 14px !important; color: var(--white) !important; font-weight: 700 !important; }
.swiper-button-prev { left: auto !important; right: 80px !important; bottom: 20px !important; top: auto !important; }
.swiper-button-next { right: 28px !important; bottom: 20px !important; top: auto !important; }

/* Slide backgrounds */
.slide-1 .slide-accent { background: var(--blue); }
.slide-2 .slide-accent { background: #e67e11; }
.slide-3 .slide-accent { background: var(--navy); }
.slide-1 .slide-bg { background-image: url('../images/Slider-1.png'); }
.slide-2 .slide-bg { background-image: url('../images/Slider-2.png'); }
.slide-3 .slide-bg { background-image: url('../images/Slider-3.png'); }

/* ═══════════════════════════════
   ABOUT US SECTION
═══════════════════════════════ */
.about-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  /* Extra bottom padding to accommodate the diagonal cut height */
  padding: 100px 0 140px;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,57,103,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* 
  CLEAN DIAGONAL TRANSITION — About (white) → Products (dark)
  Single CSS diagonal on about section bottom.
  No SVG wave. No double-cut. No gap.
*/
.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--dark);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Image Side ── */
.about-image-wrap {
  position: relative;
  height: 540px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 88%;
  height: 88%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 88% 100%, 0 100%);
  filter: brightness(0.92);
  box-shadow: 0 24px 64px rgba(45,57,103,0.22);
  will-change: transform;
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%;
  height: 52%;
  object-fit: cover;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
  box-shadow: 0 12px 36px rgba(17,160,230,0.28);
  border: 3px solid #fff;
  will-change: transform;
}

.about-img-block {
  position: absolute;
  bottom: -16px; left: -16px;
  width: 200px; height: 200px;
  background: var(--navy);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  z-index: -1;
  opacity: 0.9;
}

.about-img-bar {
  position: absolute;
  top: -8px; right: 22px;
  width: 5px; height: 120px;
  background: linear-gradient(180deg, var(--blue), transparent);
}

.about-badge {
  position: absolute;
  bottom: 36px; left: -24px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2550 100%);
  color: #fff;
  padding: 20px 24px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  z-index: 4;
  min-width: 160px;
  will-change: transform, opacity;
}
.about-badge-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-top: 4px;
}

/* ── Text Side ── */
.about-content { padding-right: 20px; }

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  will-change: transform, opacity;
}
.about-label::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.about-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 6px;
  will-change: transform, opacity;
}
.about-heading span {
  color: var(--blue);
  position: relative;
}
.about-heading span::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  border-radius: 2px;
}

.about-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  will-change: transform, opacity;
}
.about-divider-bar { height: 3px; border-radius: 2px; }
.about-divider-bar.b1 { width: 48px; background: var(--blue); }
.about-divider-bar.b2 { width: 20px; background: var(--navy); opacity: 0.4; }
.about-divider-bar.b3 { width: 8px; background: var(--blue); opacity: 0.3; }

.about-body {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 28px;
  will-change: transform, opacity;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  will-change: transform, opacity;
}
.about-tag {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(45,57,103,0.06);
  border: 1px solid rgba(45,57,103,0.15);
  padding: 5px 12px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: default;
}
.about-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(45,57,103,0.12);
  padding-top: 28px;
  margin-bottom: 36px;
  will-change: transform, opacity;
}
.about-stat { text-align: center; padding: 0 12px; border-right: 1px solid rgba(45,57,103,0.12); }
.about-stat:first-child { padding-left: 0; text-align: left; }
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: block;
}
.about-stat-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #718096;
  display: block;
  margin-top: 4px;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  will-change: transform, opacity;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #0d85c4 100%);
  border: none;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(17,160,230,0.35);
  transition: box-shadow 0.25s, transform 0.2s;
}
.about-btn-primary:hover { box-shadow: 0 8px 32px rgba(17,160,230,0.55); transform: translateY(-2px); }

.about-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid rgba(45,57,103,0.35);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.about-btn-secondary:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

/* Keep the top cut (hero-dark → about-white transition at top) */
.about-section-top-cut {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS SECTION
   ─────────────────────────────────────────────────────
   TRANSITION: about-section::after already draws the
   dark diagonal. Products section starts flush — NO
   wave, NO extra pseudo-elements at top.
═══════════════════════════════════════════════════════ */
.products-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 50px 0 130px;
  margin-top: 0;
}

/* Subtle grid texture overlay */
.products-section-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,160,230,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,160,230,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* No top line — clean flush transition from about section diagonal */

/* ── Container ── */
.products-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

/* ── Section Header ── */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
}

.products-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.products-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.products-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0;
}
.products-heading span { color: var(--blue); }

.products-subtext {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  color: rgba(204,214,246,0.55);
  max-width: 380px;
  line-height: 1.7;
  margin-top: 12px;
}

/* ── Nav arrows ── */
.products-nav-wrap {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-self: center;
}

.products-swiper-prev,
.products-swiper-next {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(17,160,230,0.35);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  flex-shrink: 0;
  user-select: none;
}
.products-swiper-prev:hover,
.products-swiper-next:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.05); }

/* ════════════════════════════════════════════════
   PRODUCTS SWIPER — CONFLICT FIXES
   The hero .swiper-slide::after applies a dark
   gradient overlay. We must kill it for product
   slides specifically.
════════════════════════════════════════════════ */
.productsSwiper { overflow: hidden !important; position: relative; }

.productsSwiper .swiper-slide::after {
  display: none !important;
  background: none !important;
  content: none !important;
}

.productsSwiper .swiper-slide {
  background: transparent !important;
  overflow: visible !important;
  opacity: 1 !important;
  height: auto !important;
  display: block !important;
}

/* ════════════════════════════════════════════════
   PRODUCT CARD
════════════════════════════════════════════════ */
.product-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  height: 460px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  background: #0f1a2e;
}
.product-card:hover {
  box-shadow: 0 20px 60px rgba(17,160,230,0.28), 0 8px 30px rgba(0,0,0,0.6);
  transform: translateY(-6px);
}

/* Left blue accent stripe on hover */
.product-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), rgba(17,160,230,0.2));
  z-index: 15;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.35s ease;
}
.product-card:hover::before { transform: scaleY(1); }

/* ══════════════════════════════════════════
   IMAGE AREA — TRUE EDGE-TO-EDGE FULL BLEED
   Image fills the ENTIRE card. Text overlays
   sit on a gradient at the bottom.
══════════════════════════════════════════ */
.product-card-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 35%, #1a2d50 0%, #0d1832 50%, #070e1c 100%);
}

.product-card-img-wrap::after {
  display: none !important;
  background: none !important;
  content: none !important;
}

.product-card-img-wrap::before {
  content: '';
  position: absolute;
  top: -15%; right: -10%;
  width: 65%; height: 65%;
  background: radial-gradient(circle, rgba(17,160,230,0.1) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/*
  mix-blend-mode: screen on a dark background makes
  white PNG areas transparent, machine colours stay vivid.
  (multiply darkens; screen is correct for dark backgrounds)
*/
.product-card-img-wrap img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 72%;
  object-fit: contain;
  object-position: center 38%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05) saturate(1.1)
          drop-shadow(0 12px 28px rgba(0,0,0,0.7));
}
.product-card:hover .product-card-img-wrap img {
  transform: scale(1.07) translateY(-6px);
}

/* ── Product number watermark ── */
.product-card-num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.22);
  line-height: 1;
  z-index: 5;
  pointer-events: none;
  letter-spacing: -0.02em;
}

/* ── Bottom gradient overlay — text lives here ──
   Gradient fades from transparent → solid dark.
   This is what makes edge-to-edge images work with text.
*/
.product-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: linear-gradient(
    to top,
    rgba(5, 10, 22, 1)    0%,
    rgba(5, 10, 22, 0.97) 28%,
    rgba(5, 10, 22, 0.82) 50%,
    rgba(5, 10, 22, 0.38) 70%,
    transparent           100%
  );
  padding: 80px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-card-body::before { display: none; }

/* ── Category tag ── */
.product-card-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(17,160,230,0.1);
  border: 1px solid rgba(17,160,230,0.25);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 5px;
  opacity: 1 !important;
  transform: none !important;
  transition: background 0.2s, border-color 0.2s !important;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.product-card:hover .product-card-tag { background: rgba(17,160,230,0.2); border-color: rgba(17,160,230,0.5); }

/* ── Title ── */
.product-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1px;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  position: relative;
  z-index: 1;
}

/* ── Subtitle ── */
.product-card-sub {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.78rem;
  color: rgba(204,214,246,0.55);
  font-weight: 500;
  margin-bottom: 0;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  max-width: none;
  position: relative;
  z-index: 1;
}

/* ── Specs — slide up on hover ── */
.product-card-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid rgba(17,160,230,0.15);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.28s ease 0.05s, margin-top 0.28s ease, padding-top 0.28s ease;
  position: relative;
  z-index: 1;
}
.product-card:hover .product-card-specs {
  max-height: 50px;
  opacity: 1;
  margin-top: 10px;
  padding-top: 10px;
}
.product-card-specs span {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.7rem;
  color: rgba(204,214,246,0.65);
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card-specs span::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--blue);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

/* ── CTA row ── */
.product-card-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease 0.08s, transform 0.28s ease 0.08s;
  position: relative;
  z-index: 1;
}
.product-card:hover .product-card-cta-row { opacity: 1; transform: translateY(0); }

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.product-card-link::after { display: none !important; content: none !important; }
.product-card-link:hover { color: #fff; gap: 9px; }

.product-overlay-btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #0d85c4 100%);
  padding: 6px 14px;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(17,160,230,0.4);
  transition: box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.product-overlay-btn:hover { box-shadow: 0 5px 18px rgba(17,160,230,0.65); transform: translateY(-1px); }

/* ── Pagination ── */
.products-swiper-pagination {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}
.products-swiper-pagination .swiper-pagination-bullet {
  width: 28px !important;
  height: 3px !important;
  border-radius: 2px !important;
  background: rgba(255,255,255,0.15) !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: background 0.3s, width 0.3s !important;
  display: inline-block;
}
.products-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--blue) !important;
  width: 48px !important;
}

/* ── Bottom CTA ── */
.products-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.products-section .about-btn-secondary {
  color: rgba(204,214,246,0.75);
  border-color: rgba(204,214,246,0.22);
}
.products-section .about-btn-secondary:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .top-bar-inner { padding: 0 48px; }
  .slide-content { padding: 0 48px; }
  .swiper-pagination { left: 48px !important; }
  .swiper-button-prev { right: 72px !important; }
  .products-container { padding: 0 40px; }
  .product-card { height: 420px; }
}

@media (max-width: 1024px) {
  .about-container { gap: 50px; padding: 0 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: var(--mobile-nav-h); }

  .top-bar::before { width: 150px; }
  .top-bar::after  { width: 100px; }
  .top-bar-inner   { padding: 0 12px; }
  .top-bar-left a.email-link { display: none; }
  .tb-divider { display: none; }
  .tb-btn span { display: none; }
  .tb-btn { padding: 4px 10px; gap: 0; }
  .tb-btn svg { width: 14px; height: 14px; }

  nav { padding: 0 20px; height: var(--mobile-nav-h); }
  .logo-wrap img { height: 56px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-swiper-wrap {
    margin-top: calc(var(--topbar-h) + var(--mobile-nav-h));
    height: 450px;
  }

  .slide-content { padding: 0 24px; max-width: 100%; }
  .slide-title { font-size: clamp(1.6rem, 6vw, 2.6rem); }
  .slide-subtitle { font-size: 0.85rem; }
  .slide-features { gap: 8px 16px; }
  .slide-feature { font-size: 0.78rem; }
  .btn-primary { padding: 11px 22px; font-size: 0.82rem; }
  .btn-secondary { padding: 10px 18px; font-size: 0.8rem; }
  .swiper-pagination { left: 24px !important; bottom: 20px !important; }
  .swiper-button-prev { right: 62px !important; bottom: 14px !important; width: 38px !important; height: 38px !important; }
  .swiper-button-next { right: 16px !important; bottom: 14px !important; width: 38px !important; height: 38px !important; }
  .swiper-button-prev::after, .swiper-button-next::after { font-size: 11px !important; }

  .about-section { padding: 80px 0 120px; }
  .about-container { grid-template-columns: 1fr; gap: 50px; padding: 0 24px; }
  .about-image-wrap { height: 320px; }
  .about-badge { left: 8px; bottom: 16px; }
  .about-content { padding-right: 0; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .about-cta-row { flex-wrap: wrap; }

  .products-section { padding: 80px 0 100px; }
  .products-container { padding: 0 20px; }
  .products-header { flex-direction: column; align-items: flex-start; margin-bottom: 28px; gap: 16px; }
  .products-nav-wrap { align-self: flex-start; }
  .product-card { height: 360px; }
  .product-card-title { font-size: 1.1rem; }
  .products-bottom-cta { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .product-card { height: 320px; }
  .about-section::after { height: 60px; }
}

@media (max-width: 400px) {
  .top-bar::before { width: 120px; }
  .top-bar-left a.phone-link span { font-size: 0.72rem; }
}
/* ═══════════════════════════════════════════════════════
   SK WORKING PROCESS SECTION
═══════════════════════════════════════════════════════ */

.process-section {
  background: #060d1a;
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding: 80px 0;
}

.process-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,160,230,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,160,230,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(17,160,230,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.process-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  margin-bottom: 48px;
}

.process-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.process-label::before,
.process-label::after {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.process-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.process-heading span { color: var(--blue); }

.process-subtext {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.97rem;
  color: rgba(204,214,246,0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.process-video-wrap {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.process-video-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-video-inner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(17,160,230,0.18);
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
}

.process-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pv-corner {
  position: absolute;
  width: 22px; height: 22px;
  z-index: 5;
  pointer-events: none;
}
.pv-corner--tl { top: 0; left: 0; border-top: 2px solid var(--blue); border-left: 2px solid var(--blue); }
.pv-corner--tr { top: 0; right: 0; border-top: 2px solid var(--blue); border-right: 2px solid var(--blue); }
.pv-corner--bl { bottom: 0; left: 0; border-bottom: 2px solid var(--blue); border-left: 2px solid var(--blue); }
.pv-corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--blue); border-right: 2px solid var(--blue); }

@media (max-width: 1024px) {
  .process-container { padding: 0 24px; }
}

@media (max-width: 768px) {
  .process-section   { padding: 60px 0; }
  .process-container { padding: 0 16px; }
  .process-header    { margin-bottom: 32px; }
}
/* ═══════════════════════════════════════════════════════
   FOUNDER SECTION — "What Our Founder Says"
   White background, mirrors About section language.
   Add this block to the end of style.css
═══════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.founder-section {
  background: #ffffff;
  position: relative;
  overflow: clip;             /* clips paint without creating scroll container */
  padding: 80px 0 50px;     /* top padding aligns with diagonal cut height  */
  z-index: 0;
}

/* subtle dot grid */
.founder-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,57,103,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ── Top diagonal cut: dark → white ──
   #060d1a matches .process-section bg exactly.
   clip-path tapers top-left full-height → top-right → bottom-left 0.
   Result: dark triangle in top-left corner only, flush join. */
.founder-top-cut {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: #060d1a;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

/* ── Bottom diagonal cut: white → dark ── */
.founder-bottom-cut {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: var(--dark);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* ── Container ── */
.founder-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════
   LEFT — VISUAL COLUMN
═══════════════════════════════ */
.founder-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  will-change: transform, opacity;
}

/* ── Photo frame ── */
.founder-photo-frame {
  position: relative;
  width: 100%;
  /* no overflow:hidden here — let accents breathe;
     section overflow:clip handles the outer boundary */
}

.founder-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 90% 100%, 0 100%);
  box-shadow: 0 24px 64px rgba(45,57,103,0.22);
  filter: brightness(0.95) saturate(1.05);
  transition: transform 0.5s ease;
}
.founder-photo-frame:hover .founder-photo {
  transform: scale(1.025);
}

/* ── Decorative bars — sit ON the photo edges, no negative offsets ── */
.founder-frame-bar {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  border-radius: 2px;
}
/* Blue line across the very top of the photo */
.founder-frame-bar.bar-top {
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(17,160,230,0.15) 100%);
}
/* Blue line down the very left edge of the photo */
.founder-frame-bar.bar-left {
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(17,160,230,0.1) 100%);
}

/* ── Corner accents — inset slightly so they're always visible ── */
.founder-corner {
  position: absolute;
  width: 18px; height: 18px;
  z-index: 5;
  pointer-events: none;
}
/* top-left corner: inset 0 so it overlaps the bar lines cleanly */
.fc-tl {
  top: 0; left: 0;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
}
/* bottom-right corner: above the clipped photo corner; right-0 is safe */
.fc-br {
  bottom: 26px; right: 0;
  border-bottom: 3px solid var(--navy);
  border-right: 3px solid var(--navy);
}

/* ── Since badge — tucked inside the photo bottom-right ── */
.founder-since-badge {
  position: absolute;
  bottom: 14px; right: 0;          /* flush with photo right edge */
  background: linear-gradient(135deg, var(--navy) 0%, #1a2550 100%);
  padding: 14px 20px 14px 28px;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 110px;
}
.fsb-year {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.fsb-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* ── Name plate ── */
.founder-name-plate {
  position: relative;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
  padding: 16px 44px 16px 16px;
  width: 100%;
  will-change: transform, opacity;
  overflow: hidden;
}
.fnp-accent {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--blue);
}
.fnp-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.1;
  padding-left: 12px;
}
.fnp-role {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  padding-left: 12px;
}
.fnp-company {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
  padding-left: 12px;
}

/* ═══════════════════════════════
   RIGHT — CONTENT COLUMN
═══════════════════════════════ */
.founder-content {
  padding-top: 8px;
  will-change: transform, opacity;
}

/* Label */
.founder-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.founder-label::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

/* Heading */
.founder-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 6px;
  will-change: transform, opacity;
}
.founder-heading span {
  color: var(--blue);
  position: relative;
}
.founder-heading span::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  border-radius: 2px;
}

/* Divider */
.founder-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 28px;
  will-change: transform, opacity;
}
.fd-bar { height: 3px; border-radius: 2px; }
.fd-bar.b1 { width: 48px; background: var(--blue); }
.fd-bar.b2 { width: 20px; background: var(--navy); opacity: 0.4; }
.fd-bar.b3 { width: 8px; background: var(--blue); opacity: 0.3; }

/* ── Pull quote ── */
.founder-pull-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(45,57,103,0.05) 0%, rgba(17,160,230,0.06) 100%);
  border-left: 4px solid var(--blue);
  border-radius: 0 6px 6px 0;
  padding: 22px 26px 22px 26px;
  margin-bottom: 32px;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;   /* icon stacks above text */
  gap: 8px;
}
.fpq-icon {
  width: 26px; height: 20px;
  color: var(--blue);
  opacity: 0.5;
  display: block;          /* flows in document, no absolute overlap */
  margin-bottom: 10px;
  flex-shrink: 0;
}
.fpq-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  /* no extra padding needed — icon is now a block above */
}

/* ── Letter body ── */
.founder-letter {
  will-change: transform, opacity;
}
.fl-salutation {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.founder-letter p {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.98rem;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 16px;
}
.founder-letter p strong {
  color: var(--navy);
  font-weight: 700;
}

/* ── Sign-off ── */
.founder-sign {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(45,57,103,0.12);
}
.fs-line {
  width: 60px; height: 2px;
  background: var(--blue);
  margin-bottom: 12px;
  border-radius: 2px;
}
.fs-sign-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 4px;
  font-style: italic;
}
.fs-sign-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.fs-sign-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 4px;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .founder-container { grid-template-columns: 320px 1fr; gap: 52px; padding: 0 40px; }
}

@media (max-width: 900px) {
  .founder-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 28px;
  }
  .founder-visual {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .founder-photo-frame { max-width: 220px; flex-shrink: 0; }
  .founder-name-plate  { clip-path: none; flex: 1; align-self: center; }
}

@media (max-width: 600px) {
  .founder-section { padding: 80px 0 100px; }
  .founder-container { padding: 0 20px; }
  .founder-visual { flex-direction: column; }
  .founder-photo-frame { max-width: 100%; }
  .founder-top-cut  { height: 56px; }
  .founder-bottom-cut { height: 64px; }
  .founder-pull-quote { padding: 16px 16px 16px 20px; }
  .fpq-text { font-size: 0.95rem; }
}
/* ═══════════════════════════════════════════════════════
   CLIENTS SECTION
═══════════════════════════════════════════════════════ */

.clients-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0 130px;
  z-index: 0;
}

/* Grid texture */
.clients-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,160,230,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,160,230,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Diagonal top cut (white founder → dark clients) ── */
.clients-top-cut {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 2;
}

/* ── Diagonal bottom cut (dark → next section) ── */
.clients-bottom-cut {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--dark);
  z-index: 2;
}

/* ── Container ── */
.clients-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.clients-header {
  text-align: center;
  margin-bottom: 52px;
  will-change: transform, opacity;
}

.clients-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.clients-label::before,
.clients-label::after {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.clients-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.clients-heading span { color: var(--blue); }

.clients-subtext {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  color: rgba(204,214,246,0.5);
  line-height: 1.7;
}

/* ═══════════════════════════════
   LOGO GRID
═══════════════════════════════ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 52px;
  will-change: transform, opacity;
}

/* Center the last partial row */
.clients-grid .client-logo-wrap:nth-child(19) { grid-column: 2; }
.clients-grid .client-logo-wrap:nth-child(20) { grid-column: 3; }
.clients-grid .client-logo-wrap:nth-child(21) { grid-column: 4; }

/* ── Individual logo card — clean bright white box ── */
.client-logo-wrap {
  background: #ffffff;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: default;
  min-height: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.client-logo-wrap:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 16px 40px rgba(17,160,230,0.28), 0 4px 16px rgba(0,0,0,0.5);
  border-color: rgba(17,160,230,0.6);
}

/* ── Larger logos ── */
.client-logo-wrap img {
  max-width: 90%;
  max-height: 68px;        /* was 56px — bigger logos */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform 0.25s ease;
}
.client-logo-wrap:hover img {
  transform: scale(1.06);
}

/* ═══════════════════════════════
   TRUST BANNER
═══════════════════════════════ */
.clients-trust-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(17,160,230,0.18);
  padding-top: 40px;
  will-change: transform, opacity;
}

.ctb-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ctb-divider {
  width: 4px;
  height: 56px;
  background: linear-gradient(180deg, var(--blue), rgba(17,160,230,0.2));
  border-radius: 2px;
  flex-shrink: 0;
}

.ctb-sub {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  color: rgba(204,214,246,0.6);
  line-height: 1.65;
  max-width: 320px;
}

/* ── Right: BIG counter ── */
.ctb-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.ctb-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(17,160,230,0.45), 0 0 80px rgba(17,160,230,0.2);
}

.ctb-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-left: 3px solid var(--blue);
  padding-left: 16px;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .clients-container { padding: 0 40px; }
  .clients-grid { grid-template-columns: repeat(5, 1fr); }
  .clients-grid .client-logo-wrap:nth-child(19) { grid-column: auto; }
  .clients-grid .client-logo-wrap:nth-child(20) { grid-column: auto; }
  .clients-grid .client-logo-wrap:nth-child(21) { grid-column: auto; }
}

@media (max-width: 860px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .ctb-num { font-size: clamp(3.5rem, 10vw, 5.5rem); }
  .ctb-label { font-size: 1.5rem; }
}

@media (max-width: 640px) {
  .clients-section { padding: 72px 0 100px; }
  .clients-container { padding: 0 20px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .client-logo-wrap { padding: 14px 10px; min-height: 80px; }
  .client-logo-wrap img { max-height: 52px; }
  .clients-trust-banner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ctb-right { align-self: flex-end; }
  .ctb-num { font-size: 4rem; }
}

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

/* ── Fix: remove gap between founder and clients sections ── */
.founder-section {
  padding-bottom: 100px; /* match clients-top-cut height */
}
/* ═══════════════════════════════════════════════════════
   CONTACT / GET IN TOUCH SECTION
   All selectors are scoped to .contact-section to avoid
   conflicts with any other section styles.
═══════════════════════════════════════════════════════ */

.contact-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 100px 0 140px;
  z-index: 0;
}

.contact-section .contact-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,57,103,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ── Top diagonal cut: dark → white ── */
.contact-section .contact-top-cut {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 2;
}

/* ── Bottom diagonal cut: white → dark ── */
.contact-section .contact-bottom-cut {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: var(--dark);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* ── Two-column layout ── */
.contact-section .contact-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════
   LEFT COLUMN
═══════════════════════════════ */
.contact-section .contact-left {
  display: flex;
  flex-direction: column;
}

.contact-section .contact-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #11a0e6;
  margin-bottom: 16px;
}
.contact-section .contact-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #11a0e6;
  flex-shrink: 0;
}

.contact-section .contact-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #2d3967;
  line-height: 1.1;
  margin-bottom: 6px;
}
.contact-section .contact-heading span {
  color: #11a0e6;
  position: relative;
}
.contact-section .contact-heading span::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #11a0e6, transparent);
  border-radius: 2px;
}

.contact-section .contact-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 20px;
}
.contact-section .contact-divider .cd-bar {
  height: 3px;
  border-radius: 2px;
}
.contact-section .contact-divider .cd-bar.b1 { width: 48px; background: #11a0e6; }
.contact-section .contact-divider .cd-bar.b2 { width: 20px; background: #2d3967; opacity: 0.4; }
.contact-section .contact-divider .cd-bar.b3 { width: 8px;  background: #11a0e6; opacity: 0.3; }

.contact-section .contact-intro {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}

/* ── Video Frame ── */
.contact-section .contact-video-frame {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(45,57,103,0.18), 0 0 0 1px rgba(17,160,230,0.15);
  aspect-ratio: 16 / 10;
  background: #0d1425;
  margin-bottom: 24px;
}

.contact-section .contact-video-frame .contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-section .contact-video-frame .cvf-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #11a0e6, #2d3967, #11a0e6);
  z-index: 3;
}

.contact-section .contact-video-frame .cvf-corner {
  position: absolute;
  width: 20px; height: 20px;
  z-index: 4;
  pointer-events: none;
}
.contact-section .contact-video-frame .cvf-tl { top: 0; left: 0; border-top: 3px solid #11a0e6; border-left: 3px solid #11a0e6; }
.contact-section .contact-video-frame .cvf-tr { top: 0; right: 0; border-top: 3px solid #11a0e6; border-right: 3px solid #11a0e6; }
.contact-section .contact-video-frame .cvf-bl { bottom: 0; left: 0; border-bottom: 3px solid #11a0e6; border-left: 3px solid #11a0e6; }
.contact-section .contact-video-frame .cvf-br { bottom: 0; right: 0; border-bottom: 3px solid #11a0e6; border-right: 3px solid #11a0e6; }

/* ── Info cards below video ── */
.contact-section .contact-info-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-section .contact-info-row .ci-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
  background: linear-gradient(135deg, rgba(45,57,103,0.05) 0%, rgba(17,160,230,0.06) 100%);
  border: 1px solid rgba(45,57,103,0.12);
  border-left: 3px solid #11a0e6;
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
  transition: box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
}
.contact-section .contact-info-row .ci-item:hover {
  box-shadow: 0 6px 20px rgba(17,160,230,0.12);
  border-color: rgba(17,160,230,0.45);
  border-left-color: #11a0e6;
}

.contact-section .contact-info-row .ci-item .ci-icon {
  width: 38px; height: 38px;
  background: #2d3967;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-section .contact-info-row .ci-item .ci-icon svg {
  width: 16px; height: 16px;
  stroke: #11a0e6;
}

.contact-section .contact-info-row .ci-item .ci-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-section .contact-info-row .ci-item .ci-text .ci-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11a0e6;
}
.contact-section .contact-info-row .ci-item .ci-text .ci-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3967;
}

/* ═══════════════════════════════
   RIGHT COLUMN — FORM CARD
═══════════════════════════════ */
.contact-section .contact-right {
  padding-top: 8px;
}

.contact-section .contact-form-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1.5px solid rgba(45,57,103,0.1);
  box-shadow: 0 20px 60px rgba(45,57,103,0.1), 0 4px 16px rgba(45,57,103,0.06);
  overflow: hidden;
}

/* Card header */
.contact-section .contact-form-card .cfc-header {
  background: linear-gradient(135deg, #2d3967 0%, #1a2550 100%);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.contact-section .contact-form-card .cfc-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #11a0e6, rgba(17,160,230,0.3), transparent);
}
.contact-section .contact-form-card .cfc-header .cfc-header-accent {
  width: 4px;
  height: 44px;
  background: #11a0e6;
  border-radius: 2px;
  flex-shrink: 0;
}
.contact-section .contact-form-card .cfc-header .cfc-header-text {
  flex: 1;
}
.contact-section .contact-form-card .cfc-header .cfc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.contact-section .contact-form-card .cfc-header .cfc-sub {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.72rem;
  color: rgba(204,214,246,0.6);
  margin-top: 3px;
}
.contact-section .contact-form-card .cfc-header .cfc-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
}

/* ── Form body ── */
.contact-section .contact-form-card .contact-form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Single field per row */
.contact-section .contact-form-card .contact-form .cf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.contact-section .contact-form-card .contact-form .cf-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2d3967;
  display: block;
}
.contact-section .contact-form-card .contact-form .cf-label .cf-required {
  color: #11a0e6;
  margin-left: 2px;
}

/* Input wrapper */
.contact-section .contact-form-card .contact-form .cf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.contact-section .contact-form-card .contact-form .cf-input-wrap .cf-icon {
  position: absolute;
  left: 13px;
  width: 16px; height: 16px;
  stroke: rgba(45,57,103,0.3);
  pointer-events: none;
  flex-shrink: 0;
  transition: stroke 0.2s;
  z-index: 1;
}

.contact-section .contact-form-card .contact-form .cf-input-wrap:focus-within .cf-icon {
  stroke: #11a0e6;
}

/* All inputs and textarea */
.contact-section .contact-form-card .contact-form .cf-input-wrap input,
.contact-section .contact-form-card .contact-form .cf-input-wrap textarea {
  width: 100%;
  padding: 13px 16px 13px 40px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  color: #2d3967;
  background: #f8fafc;
  border: 1.5px solid rgba(45,57,103,0.15);
  border-radius: 5px;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.contact-section .contact-form-card .contact-form .cf-input-wrap input::placeholder,
.contact-section .contact-form-card .contact-form .cf-input-wrap textarea::placeholder {
  color: rgba(74,85,104,0.4);
  font-size: 0.87rem;
}
.contact-section .contact-form-card .contact-form .cf-input-wrap input:focus,
.contact-section .contact-form-card .contact-form .cf-input-wrap textarea:focus {
  border-color: #11a0e6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(17,160,230,0.1);
}

/* Textarea specific */
.contact-section .contact-form-card .contact-form .cf-input-wrap textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 13px;
  line-height: 1.65;
  align-self: stretch;
}
.contact-section .contact-form-card .contact-form .cf-input-wrap.cf-textarea-wrap {
  align-items: flex-start;
}
.contact-section .contact-form-card .contact-form .cf-input-wrap.cf-textarea-wrap .cf-icon {
  top: 14px;
}

/* ── Submit button ── */
.contact-section .contact-form-card .contact-form .cf-submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #11a0e6 0%, #0d85c4 60%, #2d3967 100%);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(17,160,230,0.4);
  transition: box-shadow 0.28s, transform 0.2s;
  margin-top: 6px;
}
.contact-section .contact-form-card .contact-form .cf-submit-btn:hover {
  box-shadow: 0 10px 36px rgba(17,160,230,0.6);
  transform: translateY(-2px);
}
.contact-section .contact-form-card .contact-form .cf-submit-btn:active {
  transform: translateY(0);
}
.contact-section .contact-form-card .contact-form .cf-submit-btn .cf-btn-text {
  position: relative;
  z-index: 1;
}
.contact-section .contact-form-card .contact-form .cf-submit-btn .cf-btn-icon {
  width: 18px; height: 18px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
/* Shine sweep */
.contact-section .contact-form-card .contact-form .cf-submit-btn .cf-btn-shine {
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.contact-section .contact-form-card .contact-form .cf-submit-btn:hover .cf-btn-shine {
  left: 140%;
}

/* ── Success message ── */
.contact-section .contact-form-card .contact-form .cf-success-msg {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(17,160,230,0.08);
  border: 1.5px solid rgba(17,160,230,0.3);
  border-radius: 5px;
  padding: 14px 18px;
}
.contact-section .contact-form-card .contact-form .cf-success-msg.show {
  display: flex;
}
.contact-section .contact-form-card .contact-form .cf-success-msg svg {
  width: 22px; height: 22px;
  stroke: #11a0e6;
  flex-shrink: 0;
}
.contact-section .contact-form-card .contact-form .cf-success-msg p {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3967;
  margin: 0;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .contact-section .contact-container { padding: 0 40px; gap: 48px; }
}

@media (max-width: 900px) {
  .contact-section .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 32px;
  }
  .contact-section .contact-intro { max-width: 100%; }
}

@media (max-width: 600px) {
  .contact-section { padding: 90px 0 120px; }
  .contact-section .contact-container { padding: 0 20px; }
  .contact-section .contact-form-card .contact-form { padding: 20px; gap: 14px; }
  .contact-section .contact-form-card .cfc-header { padding: 16px 20px; }
  .contact-section .contact-info-row { flex-direction: column; gap: 12px; }
  .contact-section .contact-top-cut  { height: 70px; }
  .contact-section .contact-bottom-cut { height: 70px; }
}
.contact-section .contact-form-card .cfc-header .cfc-num {
  display: none;
}
/* ═══════════════════════════════════════════════════════
   MADE IN INDIA BANNER
═══════════════════════════════════════════════════════ */
.mii-banner {
  background: linear-gradient(135deg, #0f1628 0%, #1a2550 50%, #0f1628 100%);
  border-top: 2px solid rgba(17,160,230,0.25);
  border-bottom: 2px solid rgba(17,160,230,0.15);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}

.mii-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,160,230,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,160,230,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.mii-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.mii-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.mii-images {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mii-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05) drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}
.mii-img:hover { transform: scale(1.06); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.sk-footer {
  background: linear-gradient(160deg, #0b1120 0%, #0f1a2e 50%, #0b1120 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}

/* Grid texture */
.sk-footer .sk-footer-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,160,230,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,160,230,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Top accent line */
.sk-footer .sk-footer-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #11a0e6, #2d3967, #11a0e6, transparent);
  z-index: 2;
}

/* ── Three-column container ── */
.sk-footer .sk-footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════
   COL 1 — BRAND
═══════════════════════════════ */
.sk-footer .sk-footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* White box wrapping logo */
.sk-footer .sk-footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 22px;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.sk-footer .sk-footer-logo {
  height: 64px;
  width: auto;
  display: block;
  /* logo is already dark — no filter needed on white bg */
  filter: none;
}

.sk-footer .sk-footer-blurb {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.88rem;
  color: rgba(204,214,246,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 300px;
}

/* Social */
.sk-footer .sk-footer-social {
  margin-top: auto;
}
.sk-footer .sk-footer-social-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #11a0e6;
  margin-bottom: 12px;
}
.sk-footer .sk-footer-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sk-footer .sk-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(17,160,230,0.25);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(204,214,246,0.7);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}
.sk-footer .sk-social-link svg {
  width: 16px; height: 16px;
}
.sk-footer .sk-social-link:hover {
  background: #11a0e6;
  border-color: #11a0e6;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ═══════════════════════════════
   COL 2 — QUICK LINKS
═══════════════════════════════ */
.sk-footer .sk-footer-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.sk-footer .sk-footer-col-line {
  width: 36px; height: 3px;
  background: #11a0e6;
  border-radius: 2px;
  margin-bottom: 22px;
}

.sk-footer .sk-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sk-footer .sk-footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(204,214,246,0.6);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.22s, gap 0.22s;
  position: relative;
}
.sk-footer .sk-footer-links li a::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: #11a0e6;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.22s;
}
.sk-footer .sk-footer-links li a:hover {
  color: #ffffff;
  gap: 12px;
}
.sk-footer .sk-footer-links li a:hover::before {
  opacity: 1;
}

/* ═══════════════════════════════
   COL 3 — ADDRESS
═══════════════════════════════ */
.sk-footer .sk-footer-address {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.sk-footer .sk-footer-addr-icon {
  width: 36px; height: 36px;
  background: rgba(17,160,230,0.12);
  border: 1px solid rgba(17,160,230,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.sk-footer .sk-footer-addr-icon svg {
  width: 16px; height: 16px;
  stroke: #11a0e6;
}

.sk-footer .sk-footer-addr-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.88rem;
  color: rgba(204,214,246,0.6);
  line-height: 1.8;
}
.sk-footer .sk-footer-addr-text strong {
  color: rgba(204,214,246,0.85);
  font-weight: 600;
}

.sk-footer .sk-footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sk-footer .sk-footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(204,214,246,0.6);
  text-decoration: none;
  transition: color 0.22s;
}
.sk-footer .sk-footer-contact-item svg {
  width: 15px; height: 15px;
  stroke: #11a0e6;
  flex-shrink: 0;
}
.sk-footer .sk-footer-contact-item:hover { color: #ffffff; }

/* ═══════════════════════════════
   BOTTOM COPYRIGHT BAR
═══════════════════════════════ */
.sk-footer .sk-footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(17,160,230,0.12);
  background: rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}

.sk-footer .sk-footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sk-footer .sk-footer-copy {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  color: rgba(204,214,246,0.4);
}

.sk-footer .sk-footer-dev {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  color: rgba(204,214,246,0.4);
}
.sk-footer .sk-footer-dev a {
  color: #11a0e6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.sk-footer .sk-footer-dev a:hover { color: #ffffff; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .sk-footer .sk-footer-container { padding: 0 40px; gap: 40px; }
  .sk-footer .sk-footer-bottom-inner { padding: 18px 40px; }
  .mii-inner { padding: 0 40px; }
}

@media (max-width: 860px) {
  .sk-footer .sk-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .sk-footer .sk-footer-col--brand { grid-column: 1 / -1; }
  .sk-footer .sk-footer-blurb { max-width: 100%; }
}

@media (max-width: 600px) {
  .sk-footer { padding: 52px 0 0; }
  .sk-footer .sk-footer-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 36px;
  }
  .sk-footer .sk-footer-bottom-inner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .mii-inner { padding: 0 20px; gap: 16px; }
  .mii-img { height: 38px; }
  .mii-text { font-size: 0.85rem; letter-spacing: 0.1em; }
}
/* ── Hide diagonal section dividers on mobile/tablet ── */
@media (max-width: 768px) {

  /* About section — top & bottom cuts */
  .about-section-top-cut { display: none; }
  .about-section::after  { display: none; }

  /* Products section — no extra top cut needed */
  .products-section { margin-top: 0; padding-top: 60px; }

  /* Founder section cuts */
  .founder-top-cut    { display: none; }
  .founder-bottom-cut { display: none; }

  /* Clients section cuts */
  .clients-top-cut    { display: none; }
  .clients-bottom-cut { display: none; }

  /* Contact section cuts */
  .contact-section .contact-top-cut    { display: none; }
  .contact-section .contact-bottom-cut { display: none; }

  /* Restore padding since cuts are gone */
  .about-section    { padding: 60px 0 60px; }
  .founder-section  { padding: 60px 0 60px; }
  .clients-section  { padding: 60px 0 60px; }
  .contact-section  { padding: 60px 0 60px; }
}