
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050816;
  --bg-alt: #070b1a;
  --surface: #0f172a;
  --surface-soft: #111827;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --accent: #6366f1;
  --accent-soft: rgba(99, 102, 241, 0.12);
  --accent-strong: #a855f7;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --shadow-soft: 0 22px 45px rgba(15, 23, 42, 0.75);
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;
}

:root.light {
  --bg: #f5f7fb;
  --bg-alt: #edf1fb;
  --surface: #ffffff;
  --surface-soft: #f4f4fb;
  --border-subtle: rgba(148, 163, 184, 0.45);
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.08);
  --accent-strong: #a855f7;
  --text-main: #0b1120;
  --text-muted: #4b5563;
  --text-soft: #6b7280;
  --shadow-soft: 0 20px 40px rgba(148, 163, 184, 0.45);
}

html.light {
  --bg: #f5f7fb;
  --bg-alt: #edf1fb;
  --surface: #ffffff;
  --surface-soft: #f4f4fb;
  --border-subtle: rgba(148, 163, 184, 0.45);
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.08);
  --accent-strong: #a855f7;
  --text-main: #0b1120;
  --text-muted: #4b5563;
  --text-soft: #6b7280;
  --shadow-soft: 0 20px 40px rgba(148, 163, 184, 0.45);
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #1d2543 0, var(--bg) 35%),
    radial-gradient(circle at bottom right, #020617 0, var(--bg-alt) 40%);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-alt {
  position: relative;
  padding: 5.5rem 0;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.06), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

:root.light .site-header {
  background: linear-gradient(
    to bottom,
    rgba(248, 250, 252, 0.92),
    rgba(241, 245, 249, 0.85),
    transparent
  );
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 0 0, #a855f7, #6366f1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease-out;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #6366f1, #a855f7);
  transition: width 0.22s ease-out;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  background: linear-gradient(135deg, #4f46e5, #a855f7);
  color: #f9fafb;
  box-shadow: 0 14px 35px rgba(79, 70, 229, 0.7);
  cursor: pointer;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.8);
}

/* Theme toggle */
.theme-toggle {
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.3), transparent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: inline-block;
  font-size: 0.95rem;
}

:root.light .theme-toggle .icon-sun {
  opacity: 0.25;
}
:root.light .theme-toggle .icon-moon {
  opacity: 1;
}

:root:not(.light) .theme-toggle .icon-sun {
  opacity: 1;
}
:root:not(.light) .theme-toggle .icon-moon {
  opacity: 0.25;
}

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1.5rem 1.3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.96);
}

:root.light .mobile-menu {
  background: rgba(248, 250, 252, 0.98);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link,
.mobile-cta {
  border: none;
  background: none;
  text-align: left;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
}

.mobile-cta {
  margin-top: 0.6rem;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, #4f46e5, #a855f7);
  color: #f9fafb;
}

/* Hero */
.hero {
  padding-top: 5.5rem;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.2), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.35rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-text .accent-gradient {
  background: linear-gradient(120deg, #4f46e5, #a855f7, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.6rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.4), transparent);
  font-size: 0.8rem;
  margin-bottom: 1.1rem;
  color: var(--text-soft);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #22c55e, #15803d);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    background 0.18s ease-out, border-color 0.18s ease-out, color 0.18s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #a855f7);
  color: #f9fafb;
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(79, 70, 229, 0.9);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text-main);
}

:root.light .btn-secondary {
  background: rgba(248, 250, 252, 0.8);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.8);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-item {
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.35), transparent);
  min-width: 115px;
}

.stat-value {
  font-weight: 600;
  font-size: 1.1rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #020617;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-main {
  height: 280px;
}

.hero-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.85rem 1rem 1rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.96), transparent);
}

.hero-card-overlay .badge {
  display: inline-flex;
  font-size: 0.72rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 0.4rem;
}

.hero-card-overlay p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-card.mini {
  height: 150px;
}

.hero-card-mini-text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.5rem 0.7rem 0.6rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98), transparent);
}

.hero-card-mini-text .mini-label {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.hero-card-mini-text .mini-value {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.7rem;
}

.section-kicker {
  display: inline-flex;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.8);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

:root.light .section-kicker {
  background: rgba(248, 250, 252, 0.9);
}

.section-header h2 {
  font-size: clamp(1.75rem, 2.35vw, 2.1rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
  border-radius: 22px;
  padding: 1.3rem 1.25rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out,
    border-color 0.22s ease-out, background 0.22s ease-out;
}

:root.light .service-card {
  background: radial-gradient(circle at top, #ffffff, #eef2ff);
  box-shadow: 0 16px 38px rgba(148, 163, 184, 0.55);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
  border-color: rgba(129, 140, 248, 0.85);
}

.service-card h3 {
  font-size: 1rem;
  margin: 0.75rem 0 0.4rem;
}

.service-card p {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-card ul {
  padding-left: 1.1rem;
  margin: 0;
}

.service-card li {
  font-size: 0.86rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-top: 0.9rem;
}

/* ===============================
   SERVICE ICON – FIXED & UPGRADED
=============================== */

/* ===============================
   SERVICE ICON – FINAL
=============================== */

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  margin-bottom: 1rem;

  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.35),
    0 18px 42px rgba(79, 70, 229, 0.55);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.6),
    0 26px 60px rgba(168, 85, 247, 0.55);
}


/* Hover polish */
.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.6),
    0 22px 52px rgba(168, 85, 247, 0.55);
}


.service-cloud {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=400&q=80");
}

.service-k8s {
  background-image: url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?auto=format&fit=crop&w=400&q=80");
}

.service-automation {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=400&q=80");
}

.service-ai {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=400&q=80");
}

.service-sap {
  background-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=400&q=80");
}

.service-advisory {
  background-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=400&q=80");
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.8rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.7rem, 2.3vw, 2rem);
  margin: 0 0 0.7rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 1.1rem;
}

.highlight {
  padding: 0.75rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.86rem;
  color: var(--text-main);
}

:root.light .highlight {
  background: #ffffff;
}

.highlight-label {
  display: inline-flex;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  background: rgba(148, 163, 184, 0.14);
  margin-bottom: 0.35rem;
}

.about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.stat-chip {
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: inline-flex;
  flex-direction: column;
  font-size: 0.78rem;
}

.stat-chip .chip-value {
  font-weight: 600;
}

.stat-chip .chip-label {
  color: var(--text-soft);
}

/* About visuals */
.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 0.8rem;
}

.about-image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image.large {
  height: 250px;
}

.about-image.small {
  height: 160px;
  align-self: end;
}

.about-floating-card {
  position: absolute;
  right: 0.3rem;
  bottom: -1.4rem;
  width: 70%;
  border-radius: 18px;
  padding: 0.85rem 0.9rem;
  background: linear-gradient(135deg, #4f46e5, #a855f7);
  color: #f9fafb;
  font-size: 0.86rem;
  box-shadow: 0 18px 50px rgba(79, 70, 229, 0.8);
}

.badge-soft {
  display: inline-flex;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.contact-text h2 {
  font-size: clamp(1.6rem, 2.1vw, 1.9rem);
  margin: 0 0 0.8rem;
}

.contact-text p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
}

.contact-info {
  display: grid;
  gap: 0.6rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.info-item a,
.info-item span {
  color: var(--text-main);
}

.contact-form-wrapper {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 22px;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.9);
}

:root.light .contact-form-wrapper {
  background: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.55rem 0.7rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out,
    background 0.18s ease-out;
}

:root.light input,
:root.light select,
:root.light textarea {
  background: #f9fafb;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.35);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 2rem 0;
  background: rgba(15, 23, 42, 0.9);
}

:root.light .site-footer {
  background: #0b1120;
  color: #e5e7eb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--text-main);
}

.footer-copy {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 0.4rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-visual {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .nav-mobile-toggle {
    display: inline-flex;
  }
  .header-actions {
    gap: 0.4rem;
  }
  .nav-cta {
    display: none;
  }
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0.75rem 0;
  }
  .hero {
    padding-top: 4.3rem;
  }
  .hero-stats {
    gap: 0.6rem;
  }
  .stat-item {
    min-width: 100px;
  }
}
/* =========================
   TOAST NOTIFICATION
========================= */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #16a34a; /* green */
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  background: #dc2626; /* red */
}
.service-card h3 {
  font-size: 1.15rem !important;
  margin-top: 1rem !important;
}

