/* ============================================================
   SKY Precision Engineering – style.css
   Dark Industrial Theme: Charcoal + SKY Blue + Red Accents
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-dark: #0a0c12;
  --bg-card: #13161f;
  --bg-card-hover: #1c2030;
  --bg-section-alt: #0d1018;
  --accent-blue: #1a56db;
  --accent-blue-light: #3b82f6;
  --accent-blue-glow: rgba(26, 86, 219, 0.25);
  --accent-red: #c0392b;
  --accent-red-light: #e74c3c;
  --accent: #1a56db;
  --accent-light: #3b82f6;
  --accent-glow: rgba(26, 86, 219, 0.2);
  /* legacy aliases used throughout */
  --accent-orange: #1a56db;
  --accent-orange-light: #3b82f6;
  --accent-orange-glow: rgba(26, 86, 219, 0.25);
  --steel-gray: #8a9ab0;
  --text-primary: #eef0f6;
  --text-secondary: #8a94b0;
  --text-muted: #50607a;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(26, 86, 219, 0.35);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px rgba(26, 86, 219, 0.18);
  --font-heading: 'Rajdhani', sans-serif;
  --font-brand: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

/* ---- Light Theme ---- */
[data-theme="light"] {
  --bg-dark: #f0f4fb;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f4fb;
  --bg-section-alt: #e8eef8;
  --text-primary: #0d1225;
  --text-secondary: #3a4a6a;
  --text-muted: #7080a0;
  --border: rgba(0, 0, 0, 0.09);
  --border-accent: rgba(26, 86, 219, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(26, 86, 219, 0.15);
}
[data-theme="light"] body { background: var(--bg-dark); }
[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg, rgba(240,244,251,0.92) 0%, rgba(220,230,248,0.78) 50%, rgba(210,225,248,0.88) 100%);
}
[data-theme="light"] .navbar.scrolled {
  background: rgba(240, 244, 251, 0.97);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .hero-title { color: #0d1225; }
[data-theme="light"] .footer { background: #d8e4f5; }
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg-dark); }
[data-theme="light"] .orbit-center {
  background: linear-gradient(135deg, var(--accent-blue), #0e2f7a);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Scroll Bar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-orange); border-radius: 3px; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Base ---- */
.section {
  padding: 100px 0;
}
.section:nth-child(even) {
  background: var(--bg-section-alt);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-blue-light);
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-light));
  border-radius: 2px;
  flex-shrink: 0;
}
.section-tag::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--accent-blue-light);
  opacity: 0.35;
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.section-subtitle-left {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.text-accent { color: var(--accent-orange); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), #1240a0);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26, 86, 219, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 86, 219, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(255, 107, 43, 0.05);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(14, 14, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.navbar.scrolled .logo-img {
  filter: none;
}
.logo-icon {
  font-size: 1.8rem;
  animation: rotateSlow 8s linear infinite;
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-sky {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--steel-gray);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent-blue), #1240a0);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(26, 86, 219, 0.35);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.5);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Theme Toggle ---- */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: rotate(20deg) scale(1.1);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_background.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 12, 18, 0.94) 0%,
    rgba(10, 12, 18, 0.78) 50%,
    rgba(8, 14, 28, 0.88) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-80px) scale(1.5); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 60px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(255, 107, 43, 0.12);
  border: 1px solid var(--border-accent);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.title-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
}
.title-line:nth-child(2) { animation-delay: 0.1s; }
.title-line:nth-child(3) { animation-delay: 0.2s; }
.title-line.accent {
  color: var(--accent-blue-light);
  text-shadow: 0 0 60px rgba(26, 86, 219, 0.45);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 40px;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s 0.5s ease both;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.stat-num {
  font-family: var(--font-brand);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  color: var(--accent-orange);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
  transition: opacity 0.3s;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent-orange);
  border-bottom: 2px solid var(--accent-orange);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--accent-blue), #1240a0, #2563eb, var(--accent-blue));
  padding: 12px 0;
}
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker span {
  display: inline-block;
  padding: 0 40px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--bg-section-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--accent-orange);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(255, 107, 43, 0.4);
}
.badge-num {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.about-accent-block {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--accent-orange-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  z-index: -1;
}
.about-content { padding: 20px 0; }
.about-text {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.feature-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-dark); }
.services-category {
  margin-bottom: 8px;
}
.cat-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.service-card--sm {
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-icon-sm {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}
.service-card--sm h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  text-align: center;
}
.service-card--sm p {
  font-size: 0.78rem;
  text-align: center;
}
.service-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,43,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  background: var(--bg-card-hover);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  color: var(--accent-orange);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  filter: drop-shadow(0 0 12px var(--accent-orange));
}
.service-svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.service-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
  transition: width 0.4s ease;
}
.service-card:hover .service-hover-line { width: 100%; }

/* ============================================================
   JUSTIFIED PARAGRAPHS
   ============================================================ */
.about-text,
.service-card p,
.why-body p,
.feature-item p,
.info-card p,
.expansion-card p,
.infra-item span,
.section-subtitle,
.section-subtitle-left,
.footer-tagline {
  text-align: justify;
}
/* Keep section headers centered */
.section-header .section-subtitle {
  text-align: center;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg-section-alt); }
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-orange);
  color: #fff;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 16px rgba(255,107,43,0.3);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item--wide {
  grid-column: span 1;
}
.gallery-item img {
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info { transform: translateY(12px); transition: transform 0.4s ease; }
.gallery-item:hover .gallery-info { transform: translateY(0); }
.gallery-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(255,107,43,0.15);
  border: 1px solid var(--border-accent);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.gallery-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.gallery-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.gallery-item.hidden { display: none; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--bg-dark); }

/* New centered orbit system */
.orbit-system-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 64px;
}
.orbit-system {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Multi-badge orbit rings */
.orbit-ring-multi {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(26, 86, 219, 0.2);
  border-radius: 50%;
}
.ring-inner {
  top: 80px; left: 80px; right: 80px; bottom: 80px;
  animation: orbitSpin 18s linear infinite;
}
.ring-outer {
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  animation: orbitSpin 28s linear infinite reverse;
}

/* Each arm extends from center, badge at end */
.orbit-arm {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  transform-origin: left center;
  transform: rotate(var(--angle, 0deg));
}

/* Keyframe for badge counter-rotation using CSS var */
@keyframes counterSpinBadge {
  from { transform: translateY(-50%) rotate(calc(-1 * var(--angle, 0deg))); }
  to   { transform: translateY(-50%) rotate(calc(-1 * var(--angle, 0deg) - 360deg)); }
}
@keyframes counterSpinBadgeReverse {
  from { transform: translateY(-50%) rotate(calc(-1 * var(--angle, 0deg))); }
  to   { transform: translateY(-50%) rotate(calc(-1 * var(--angle, 0deg) + 360deg)); }
}

.orbit-badge-multi {
  position: absolute;
  right: -6px;
  top: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  color: var(--accent-orange);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
  animation: counterSpinBadge 18s linear infinite;
}
.ring-outer .orbit-badge-multi {
  animation: counterSpinBadgeReverse 28s linear infinite;
}

/* Why grid below the orbit */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-grid .why-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.why-grid .why-item:nth-child(3n) { border-right: none; }
.why-grid .why-item:nth-child(4),
.why-grid .why-item:nth-child(5),
.why-grid .why-item:nth-child(6) { border-bottom: none; }
.why-grid .why-item:hover { background: var(--bg-card-hover); padding-left: 32px; }

/* Center-aligned cert badges */
.cert-badges-centered {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 16px;
  flex-wrap: wrap;
}
.cert-badges-centered .cert-badge {
  max-width: 320px;
}

/* Legacy why-inner kept for backwards compat */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { padding-left: 8px; }
.why-num {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-orange);
  flex-shrink: 0;
  width: 36px;
  opacity: 0.7;
  transition: var(--transition);
}
.why-item:hover .why-num { opacity: 1; }
.why-body h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  transition: var(--transition);
}
.why-item:hover .why-body h4 { color: var(--accent-orange); }
.why-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.why-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  position: sticky;
  top: 100px;
}
.why-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border: 1px dashed rgba(255, 107, 43, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ring-1 { width: 180px; height: 180px; animation: orbitSpin 8s linear infinite; }
.ring-2 { width: 240px; height: 240px; animation: orbitSpin 12s linear infinite reverse; }
.ring-3 { width: 296px; height: 296px; animation: orbitSpin 16s linear infinite; }
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}
.orbit-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  color: var(--accent-orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  position: absolute;
  right: -20px;
  animation: counterSpin 8s linear infinite;
}
.ring-2 .orbit-badge { animation-duration: 12s; animation-direction: reverse; }
.ring-3 .orbit-badge { animation-duration: 16s; }
@keyframes counterSpin {
  to { transform: rotate(-360deg); }
}
.orbit-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-blue), #0e2f7a);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(26, 86, 219, 0.4), 0 0 100px rgba(26, 86, 219, 0.2);
  z-index: 1;
}
.orbit-logo {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.orbit-sub {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.cert-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cert-badge {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.cert-badge:hover {
  border-color: var(--border-accent);
}
.cert-icon { font-size: 1.6rem; }
.cert-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}
.cert-badge span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-section-alt); }
.testimonials-track-wrap { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
  min-width: calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  flex-shrink: 0;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.testi-stars {
  color: #ffd700;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-quote::before { content: '"'; color: var(--accent-orange); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-secondary); }
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--accent-orange);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255,107,43,0.12);
  background: rgba(255,107,43,0.02);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(56, 239, 125, 0.08);
  border: 1px solid rgba(56, 239, 125, 0.25);
  border-radius: var(--radius-sm);
  color: #38ef7d;
  font-size: 0.9rem;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.info-card:hover { border-color: var(--border-accent); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-card strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 4px; }
.info-card p, .info-card li { font-size: 0.88rem; color: var(--text-secondary); }
.info-card a { color: var(--accent-orange); }
.info-card a:hover { text-decoration: underline; }
.map-placeholder {
  height: 250px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.map-link-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(10, 12, 18, 0.85);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(4px);
  z-index: 5;
}
.map-link-overlay a {
  color: var(--accent-orange);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}
.map-link-overlay a:hover {
  text-decoration: underline;
}
.map-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: var(--text-secondary);
}
.map-icon { font-size: 2rem; }
.map-link {
  color: var(--accent-orange);
  font-size: 0.85rem;
  font-weight: 600;
}
.map-link:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products { background: var(--bg-dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.product-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.product-icon { font-size: 1.6rem; }
.product-card span { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; line-height: 1.4; }

.infra-banner {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(26,86,219,0.08), rgba(26,86,219,0.03));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.infra-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
  padding: 0 24px;
}
.infra-item:first-child { padding-left: 0; }
.infra-item:last-child { padding-right: 0; }
.infra-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.infra-item strong { display: block; font-family: var(--font-heading); font-size: 1rem; margin-bottom: 4px; color: var(--accent-blue-light); }
.infra-item span { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.infra-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

.expansion-card {
  position: relative;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
}
.expansion-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
}
.expansion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-red-light);
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.expansion-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.expansion-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients { background: var(--bg-section-alt); }
.client-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.client-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.client-category:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cat-icon { font-size: 1.4rem; }
.cat-header h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; line-height: 1.2; }
.client-list { display: flex; flex-direction: column; gap: 7px; }
.client-list li {
  font-size: 0.83rem;
  color: var(--text-secondary);
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
}
.client-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-size: 0.7rem;
  top: 2px;
}

.orders-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
}
.orders-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue-light);
  background: rgba(26,86,219,0.1);
  border: 1px solid var(--border-accent);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.orders-scroll { overflow-x: auto; }
.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.orders-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.orders-table td {
  padding: 10px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.orders-table td:last-child { text-align: right; color: var(--accent-blue-light); font-weight: 600; }
.orders-table tbody tr:hover td { background: rgba(26,86,219,0.04); color: var(--text-primary); }
.orders-table tfoot td {
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  border-bottom: none;
  padding-top: 14px;
}
.orders-table tfoot td:last-child { color: var(--accent-blue-light); font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060810;
  border-top: 1px solid var(--border);
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}
.footer-gst { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 40px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}
.footer-links-group h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group li,
.footer-links-group a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--accent-orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,43,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--accent-orange-light); transform: translateY(-2px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame { aspect-ratio: 16/9; }
  .about-img-badge { right: 20px; }
  .about-accent-block { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .client-categories { grid-template-columns: repeat(2, 1fr); }
  .infra-banner { flex-direction: column; gap: 20px; }
  .infra-divider { width: 100%; height: 1px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid .why-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .why-grid .why-item:nth-child(2n) { border-right: none; }
  .why-grid .why-item:nth-child(4),
  .why-grid .why-item:nth-child(5),
  .why-grid .why-item:nth-child(6) { border-bottom: 1px solid var(--border); }
  .why-grid .why-item:nth-child(5),
  .why-grid .why-item:nth-child(6) { border-bottom: none; }
  .orbit-system { width: 380px; height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: rgba(10,12,18,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 24px; padding: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .client-categories { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .testi-card { min-width: 90%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .why-graphic { width: 240px; height: 240px; }
  .ring-1 { width: 140px; height: 140px; }
  .ring-2 { width: 190px; height: 190px; }
  .ring-3 { width: 235px; height: 235px; }
  .orbit-center { width: 80px; height: 80px; }
  .orbit-system { width: 300px; height: 300px; }
  .ring-inner { top: 55px; left: 55px; right: 55px; bottom: 55px; }
  .ring-outer { top: 15px; left: 15px; right: 15px; bottom: 15px; }
  .orbit-badge-multi { font-size: 0.62rem; padding: 4px 9px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid .why-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .why-grid .why-item:last-child { border-bottom: none !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
}
