/* =========================================================
   DataCraft Networks India — Brand-Matched Stylesheet
   Theme: LIGHT — Navy / Teal / Saffron / Off-White
   ========================================================= */

/* ── Custom Properties ── */
:root {
  /* Brand Palette */
  --navy:          #0D1B3E;
  --navy-mid:      #1A2B5E;
  --navy-light:    #243A78;
  --teal:          #00B4CC;
  --teal-dark:     #006E82;
  --teal-light:    #1CC8D4;
  --saffron:       #F7941D;
  --saffron-dark:  #C85E00;
  --saffron-light: #FFB347;

  /* Backgrounds */
  --bg-cream:      #F8F4EC;   /* warm off-white — logo background */
  --bg-cyan:       #EBF5FA;   /* cool cyan-tint — banner background */
  --bg-white:      #FFFFFF;
  --bg-section-alt:#F0F7FB;   /* alternate section tint */

  /* Text */
  --text-navy:     #0D1B3E;
  --text-mid:      #2D3F6B;
  --text-muted:    #5B6E9A;
  --text-light:    #8A9BBD;

  /* Circuit / Decorative */
  --circuit-line:  #A8D4E6;
  --circuit-line-dark: #B8C8E8;
  --border:        #D4E4F0;
  --border-light:  #E8EFF7;

  /* Gradients */
  --gradient-brand:  linear-gradient(135deg, #1CC8D4 0%, #0D1B3E 100%);
  --gradient-teal:   linear-gradient(135deg, #00B4CC 0%, #006E82 100%);
  --gradient-saffron:linear-gradient(135deg, #FFB347 0%, #F7941D 100%);
  --gradient-navy:   linear-gradient(135deg, #1A2B5E 0%, #0D1B3E 100%);
  --gradient-hero:   linear-gradient(135deg, #EBF5FA 0%, #F0F7FB 50%, #E8F2F8 100%);

  /* Shadows */
  --shadow:    0 8px 40px rgba(13,27,62,0.12);
  --shadow-md: 0 4px 20px rgba(13,27,62,0.10);
  --shadow-sm: 0 2px 10px rgba(13,27,62,0.07);
  --shadow-card: 0 4px 24px rgba(13,27,62,0.09);

  /* Misc */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-brand:   'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-navy);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ── Utility ── */
.text-teal    { color: var(--teal); }
.text-saffron { color: var(--saffron); }
.text-navy    { color: var(--navy); }

.brand-name   { color: var(--navy); font-weight: 900; }
.brand-india  { color: var(--saffron); }

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gradient-teal);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--navy);
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-desc   { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-navy);
  color: #fff;
  box-shadow: 0 6px 24px rgba(13,27,62,0.30);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,27,62,0.40);
}

.btn-teal {
  background: var(--gradient-teal);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,180,204,0.30);
}
.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,180,204,0.45);
}

.btn-saffron {
  background: var(--gradient-saffron);
  color: #fff;
  box-shadow: 0 6px 24px rgba(247,148,29,0.35);
}
.btn-saffron:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(247,148,29,0.50);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(255,255,255,0.25);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,255,255,0.35); }

.btn-nav {
  background: var(--gradient-navy);
  color: #fff;
  padding: 9px 22px;
  font-size: 0.82rem;
  border-radius: 50px;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: 0.95rem; }

/* ═══════════════════════════════════
   CIRCUIT BACKGROUND MIXIN
═══════════════════════════════════ */
.circuit-bg {
  position: relative;
}
.circuit-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* Horizontal lines */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      var(--circuit-line) 59px,
      var(--circuit-line) 60px
    ),
    /* Vertical lines */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      var(--circuit-line) 59px,
      var(--circuit-line) 60px
    );
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* Preloader removed — site is static */

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: rgba(248,244,236,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(248,244,236,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Navbar — text-only brand */
.nav-brand-text {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}
.nav-brand-main {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-brand-india {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--saffron);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-link {
  padding: 7px 13px;
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-teal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 55%; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0 70px;
  background: var(--gradient-hero);
}

/* Circuit grid background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-circuit {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,180,204,0.12) 59px, rgba(0,180,204,0.12) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,180,204,0.12) 59px, rgba(0,180,204,0.12) 60px);
}
/* Circuit trace SVG lines (decorative) */
.hero-circuit::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cg stroke='%23A8D4E6' stroke-width='1.5' fill='none' opacity='0.5'%3E%3Cpath d='M0 120 h80 v-40 h120 v80 h60'/%3E%3Ccircle cx='80' cy='120' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='200' cy='80' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='260' cy='160' r='4' fill='%23A8D4E6'/%3E%3Cpath d='M0 300 h40 v60 h100 v-30 h80'/%3E%3Ccircle cx='40' cy='300' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='140' cy='360' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='220' cy='330' r='4' fill='%23A8D4E6'/%3E%3Cpath d='M700 0 v80 h-60 v40 h-100'/%3E%3Ccircle cx='700' cy='80' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='640' cy='120' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='540' cy='120' r='4' fill='%23A8D4E6'/%3E%3Cpath d='M750 400 h-80 v-60 h-120 v40'/%3E%3Ccircle cx='670' cy='400' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='550' cy='340' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='550' cy='380' r='4' fill='%23A8D4E6'/%3E%3Cpath d='M0 500 h60 v-80 h40'/%3E%3Ccircle cx='60' cy='500' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='100' cy='420' r='4' fill='%23A8D4E6'/%3E%3Cpath d='M800 500 h-100 v60 h-80'/%3E%3Ccircle cx='700' cy='500' r='4' fill='%23A8D4E6'/%3E%3Ccircle cx='620' cy='560' r='4' fill='%23A8D4E6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(235,245,250,0) 0%, rgba(235,245,250,0.6) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left side */
.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

/* Hero logo — centred above badge */
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.hero-logo-img {
  height: 120px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(13,27,62,0.13));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(247,148,29,0.1);
  border: 1px solid rgba(247,148,29,0.35);
  color: var(--saffron-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge i { font-size: 0.8rem; }

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero-accent { color: var(--teal-dark); }

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right side */
.hero-right { display: flex; flex-direction: column; gap: 20px; }

.hero-services-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.hero-services-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
}
.hero-card-label {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.hero-service-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.hero-service-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-service-row:hover { transform: translateX(4px); }

.hero-svc-icon {
  width: 38px; height: 38px;
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hero-service-row strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}
.hero-service-row span { font-size: 0.78rem; color: var(--text-muted); }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.stat-item { text-align: center; flex: 1; }
.stat-number {
  font-family: var(--font-brand);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-plus { font-size: 1.1rem; font-weight: 900; color: var(--saffron); }
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll a {
  width: 40px; height: 40px;
  border: 2px solid rgba(13,27,62,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition);
}
.hero-scroll a:hover { border-color: var(--teal); color: var(--teal); }

/* ═══════════════════════════════════
   SERVICE STRIP (static, no animation)
═══════════════════════════════════ */
.service-strip {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
}
.service-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 24px;
}
.service-strip-inner span {
  font-family: var(--font-brand);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.service-strip-inner .strip-dot {
  color: var(--saffron);
  font-size: 0.5rem;
  letter-spacing: 0;
}

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about-section {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,180,204,0.06) 59px, rgba(0,180,204,0.06) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,180,204,0.06) 59px, rgba(0,180,204,0.06) 60px);
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Single-column override when visual is removed */
.about-grid-single {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}

.about-content { }
.about-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.98rem;
}

.about-highlights {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.highlight-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.highlight-icon {
  width: 42px; height: 42px;
  background: var(--gradient-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.highlight-item strong {
  display: block;
  font-family: var(--font-brand);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.highlight-item p { font-size: 0.87rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.about-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.3px;
}
.about-tags span i { font-size: 0.7rem; color: var(--teal); }

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services-section {
  background: var(--bg-cyan);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,110,130,0.08) 59px, rgba(0,110,130,0.08) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,110,130,0.08) 59px, rgba(0,110,130,0.08) 60px);
  pointer-events: none;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(0,180,204,0.3);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 62px; height: 62px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 22px;
  transition: var(--transition);
}
/* Individual card accent colours */
.service-card:nth-child(1) .service-icon-wrap { background: var(--gradient-teal); }
.service-card:nth-child(2) .service-icon-wrap { background: var(--gradient-navy); }
.service-card:nth-child(3) .service-icon-wrap { background: var(--gradient-saffron); }
.service-card:nth-child(4) .service-icon-wrap { background: linear-gradient(135deg, #1CC8D4, #006E82); }

.service-card:hover .service-icon-wrap { transform: scale(1.08) rotate(4deg); }

.service-card h3 {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.service-card > p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.service-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--text-mid);
}
.service-list li i { color: var(--teal); font-size: 0.72rem; flex-shrink: 0; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--navy); }

/* ═══════════════════════════════════
   INDUSTRY SOLUTIONS TABS
═══════════════════════════════════ */
.solutions-section {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.solutions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,180,204,0.055) 59px, rgba(0,180,204,0.055) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,180,204,0.055) 59px, rgba(0,180,204,0.055) 60px);
  pointer-events: none;
}

.solutions-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.tab-btn:hover { color: var(--navy); border-color: var(--teal); }
.tab-btn.active {
  background: var(--gradient-navy);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(13,27,62,0.25);
}

.solutions-content { position: relative; z-index: 1; }
.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 48px;
}
.tab-icon {
  width: 100px; height: 100px;
  background: var(--gradient-brand);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(13,27,62,0.20);
}
.tab-text h3 {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.tab-text > p { color: var(--text-mid); margin-bottom: 20px; line-height: 1.7; font-size: 0.95rem; }
.tab-text ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tab-text ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}
.tab-text ul li i { color: var(--teal-dark); font-size: 0.75rem; }

/* ═══════════════════════════════════
   WHY US
═══════════════════════════════════ */
.whyus-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.whyus-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.04) 59px, rgba(255,255,255,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.04) 59px, rgba(255,255,255,0.04) 60px);
  pointer-events: none;
}
/* Circuit SVG decoration on dark section */
.whyus-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400'%3E%3Cg stroke='rgba(0,180,204,0.15)' stroke-width='1.5' fill='none'%3E%3Cpath d='M0 80 h60 v-40 h100 v60 h40'/%3E%3Ccircle cx='60' cy='80' r='4' fill='rgba(0,180,204,0.2)'/%3E%3Ccircle cx='160' cy='40' r='4' fill='rgba(0,180,204,0.2)'/%3E%3Ccircle cx='200' cy='100' r='4' fill='rgba(0,180,204,0.2)'/%3E%3Cpath d='M550 0 v60 h-80 v40'/%3E%3Ccircle cx='550' cy='60' r='4' fill='rgba(0,180,204,0.2)'/%3E%3Ccircle cx='470' cy='100' r='4' fill='rgba(0,180,204,0.2)'/%3E%3Cpath d='M0 380 h100 v-60'/%3E%3Ccircle cx='100' cy='380' r='4' fill='rgba(0,180,204,0.2)'/%3E%3Ccircle cx='100' cy='320' r='4' fill='rgba(0,180,204,0.2)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  opacity: 0.8;
}

.whyus-section .section-label { color: var(--teal-light); }
.whyus-section .section-label::before { background: var(--gradient-teal); }
.whyus-section .section-title { color: #fff; }
.whyus-section .section-desc { color: rgba(255,255,255,0.6); }

.whyus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-teal);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(0,180,204,0.4);
  transform: translateY(-5px);
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 64px; height: 64px;
  background: rgba(0,180,204,0.12);
  border: 1px solid rgba(0,180,204,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--teal-light);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gradient-teal);
  color: #fff;
  border-color: transparent;
}

.why-card h4 {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.why-card p { font-size: 0.87rem; color: rgba(255,255,255,0.58); line-height: 1.7; }

/* CTA Banner */
.cta-banner {
  position: relative;
  z-index: 1;
  background: var(--gradient-teal);
  border-radius: 20px;
  padding: 46px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; right: -5%;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.cta-content h3 {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
}
.cta-content p { color: rgba(255,255,255,0.85); font-size: 0.97rem; }

/* Team section removed */

/* ═══════════════════════════════════
   OUR CLIENTS
═══════════════════════════════════ */
.clients-section {
  background: var(--bg-cyan);
  position: relative;
  overflow: hidden;
}
.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,110,130,0.07) 59px, rgba(0,110,130,0.07) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,110,130,0.07) 59px, rgba(0,110,130,0.07) 60px);
  pointer-events: none;
}

/* Header two-column layout */
.clients-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.clients-header-left .section-label {
  color: var(--saffron-dark);
  margin-bottom: 10px;
}
.clients-header-left .section-label::before {
  background: var(--gradient-saffron);
}
.clients-header-left .section-title {
  margin-bottom: 10px;
}
.clients-title-bar {
  width: 56px;
  height: 4px;
  background: var(--gradient-teal);
  border-radius: 4px;
}
.clients-tagline-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-right: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  max-width: 340px;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
  text-align: right;
}

/* Featured label */
.clients-featured-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Featured 3-card grid */
.clients-featured-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.client-featured-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.client-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(0,180,204,0.35);
}
.client-featured-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.client-featured-card:hover::after { transform: scaleX(1); }

.client-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gradient-saffron);
  color: #fff;
  font-family: var(--font-brand);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
}
.client-feat-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.client-featured-card:hover .client-feat-icon {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}
.client-featured-card h3 {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.client-feat-sub {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Regular 5-column grid */
.clients-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.client-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.client-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.client-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.client-card:hover .client-icon {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.client-card span {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .clients-featured-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .clients-grid           { grid-template-columns: repeat(3, 1fr); }
  .clients-header         { flex-direction: column; align-items: flex-start; }
  .clients-tagline-card   { max-width: 100%; text-align: left; }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════
   PARTNERS
═══════════════════════════════════ */
.partners-section {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.partners-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,180,204,0.055) 59px, rgba(0,180,204,0.055) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,180,204,0.055) 59px, rgba(0,180,204,0.055) 60px);
  pointer-events: none;
}

.partners-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

.partner-logo {
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.partner-logo:hover {
  border-color: var(--teal);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.partner-logo i { font-size: 1.6rem; color: var(--teal-dark); }
.partner-logo span { font-family: var(--font-brand); font-size: 0.75rem; font-weight: 700; color: var(--text-mid); letter-spacing: 0.3px; }
.partner-logo:hover i { color: var(--navy); }
.partner-logo:hover span { color: var(--navy); }

.certifications {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  text-align: center;
}
.certifications h3 {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
.certs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 22px;
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: var(--transition);
}
.cert-badge:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.cert-badge i { color: var(--teal-dark); font-size: 0.85rem; }
.cert-badge:hover i { color: var(--teal-light); }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact-section {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,110,130,0.06) 59px, rgba(0,110,130,0.06) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,110,130,0.06) 59px, rgba(0,110,130,0.06) 60px);
  pointer-events: none;
}

/* ── Top 4 Info Cards ── */
.contact-info-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.contact-info-card {
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.contact-info-card:hover {
  background: var(--bg-white);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.cic-icon {
  width: 44px; height: 44px;
  background: var(--gradient-brand);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.cic-body h4 {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.cic-body p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ── Main 2-col layout ── */
.contact-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ── Form Panel ── */
.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.contact-form-header {
  background: var(--gradient-navy);
  padding: 28px 36px;
}
.contact-form-header h3 {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.contact-form-header p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 36px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-brand);
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group label i { color: var(--teal); font-size: 0.72rem; }
.req { color: var(--saffron); font-size: 0.85rem; }

.form-group input,
.form-group textarea {
  background: var(--bg-section-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-navy);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-body);
  width: 100%;
}

/* Select wrapper */
.select-wrap {
  position: relative;
}
.select-wrap select {
  width: 100%;
  background: var(--bg-section-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 40px 12px 16px;
  color: var(--text-navy);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  appearance: none;
  cursor: pointer;
}
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus,
.select-wrap select:focus {
  border-color: var(--teal);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(0,180,204,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group select option { background: #fff; color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-message {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(0,180,204,0.08);
  border: 1px solid rgba(0,180,204,0.3);
  color: var(--teal-dark);
}
.form-message.error {
  display: block;
  background: rgba(220,53,69,0.07);
  border: 1px solid rgba(220,53,69,0.25);
  color: #b91c1c;
}

/* ── Side Panel ── */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-side-card {
  background: var(--bg-cyan);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.contact-side-card h4 {
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-side-card h4 i { color: var(--teal-dark); }

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
}
.contact-perks li i {
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Social grid */
.contact-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.csocial-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.csocial-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.csocial-btn.linkedin  { background: #0077B5; }
.csocial-btn.twitter   { background: #1DA1F2; }
.csocial-btn.facebook  { background: #1877F2; }
.csocial-btn.youtube   { background: #FF0000; }

/* Stat strip */
.contact-side-stat {
  background: var(--gradient-navy);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.css-item { text-align: center; }
.css-num {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.css-num span { font-size: 1rem; color: var(--saffron); font-weight: 900; }
.css-label {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.css-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-main       { grid-template-columns: 1fr; }
  .contact-side       { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-side-stat  { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
  .form-row           { grid-template-columns: 1fr; }
  .contact-form       { padding: 24px; }
  .contact-form-header{ padding: 22px 24px; }
  .contact-side       { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-social-grid{ grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); position: relative; overflow: hidden; }
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.03) 59px, rgba(255,255,255,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.03) 59px, rgba(255,255,255,0.03) 60px);
  pointer-events: none;
}

.footer-top { padding: 72px 0 52px; }
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 52px;
}

/* Footer brand name (text-only, no image) */
.footer-brand { }
.footer-brand-name {
  margin-bottom: 6px;
}
.footer-brand-main {
  display: block;
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.footer-brand-india {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 900;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-left: 6px;
}
.footer-brand-tagline {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-brand-hindi {
  color: rgba(247,148,29,0.75);
  font-weight: 700;
}

.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.8; margin-bottom: 12px; }
.footer-formerly {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(247,148,29,0.85);
  letter-spacing: 0.5px;
}

.footer-col h5 {
  font-family: var(--font-brand);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-col ul li + li { margin-top: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.50);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a:hover { color: var(--teal-light); padding-left: 4px; }
.footer-col ul li a i { color: var(--teal); font-size: 0.7rem; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--teal);
  color: #fff;
  border-color: transparent;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ═══════════════════════════════════
   BACK TO TOP
═══════════════════════════════════ */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gradient-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  box-shadow: 0 6px 24px rgba(13,27,62,0.30);
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,27,62,0.40); }

/* ═══════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 44px; }
  .hero-left       { align-items: center; text-align: center; }
  .hero-logo-wrap  { justify-content: center; }
  .hero-desc       { max-width: 560px; }
  .hero-cta        { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-row  { grid-template-columns: repeat(4, 1fr); }
  .footer-grid   { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .whyus-grid    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .contact-grid  { grid-template-columns: 1fr; }
  .tab-inner     { flex-direction: column; text-align: center; }
  .tab-text ul   { grid-template-columns: 1fr; justify-items: start; }
  .cta-banner    { flex-direction: column; text-align: center; padding: 36px; }
  .partners-row  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }

  /* Navbar mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(248,244,236,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 999;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 13px 28px; }
  .hamburger { display: flex; z-index: 1001; }
  .btn-nav { display: none; }

  /* Hero */
  .hero-stats { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .stat-item  { min-width: 90px; }
  .stat-divider { display: none; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .whyus-grid    { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .partners-row  { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-logo-img  { height: 84px; max-width: 240px; }
  .whyus-grid     { grid-template-columns: 1fr; }
  .solutions-tabs { flex-direction: column; align-items: center; }
  .tab-btn        { width: 100%; max-width: 250px; text-align: center; }
  .contact-form-wrap { padding: 24px; }
  .certs-row      { flex-direction: column; align-items: center; }
  .hero-cta       { flex-direction: column; width: 100%; }
  .hero-cta .btn  { justify-content: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}
