/* ═══════════════════════════════════════════════════════════════
   FOGS CONSULTANTS — style.css
   Design System: Deep violet/blue brand, Inter + Plus Jakarta Sans
════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Brand palette pulled from logo */
  --clr-brand-deep: #3A0CA3;
  /* deep violet */
  --clr-brand-mid: #4361EE;
  /* royal blue  */
  --clr-brand-light: #4CC9F0;
  /* cyan accent  */
  --clr-brand-red: #E63946;
  /* logo dot red */

  /* Neutrals */
  --clr-bg: #0A0E1A;
  --clr-bg-2: #0F1629;
  --clr-surface: #141B2D;
  --clr-surface-2: #1C2540;
  --clr-border: rgba(67, 97, 238, 0.18);
  --clr-text: #E8EAFF;
  --clr-text-muted: #8891B5;
  --clr-white: #ffffff;

  /* Gradients */
  --g-brand: linear-gradient(135deg, var(--clr-brand-deep), var(--clr-brand-mid));
  --g-accent: linear-gradient(135deg, var(--clr-brand-mid), var(--clr-brand-light));
  --g-hero: linear-gradient(135deg, #0D0621 0%, #0A1628 50%, #061225 100%);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Typography */
  --ff-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(67, 97, 238, 0.25);
  --shadow-glow-light: 0 0 20px rgba(76, 201, 240, 0.2);

  /* Transition */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-brand-light);
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.section-title.tl {
  text-align: left;
}

.section-sub {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
text-align: justify;
}

.gradient-text {
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-full);
  padding: 0.65rem 1.6rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--g-brand);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(67, 97, 238, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(67, 97, 238, 0.55);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--clr-border);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  border-radius: var(--r-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-full);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  margin-left: 0.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}
html {
  scroll-padding-top: 120px;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--g-hero);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--clr-brand-deep), transparent);
  top: -150px;
  left: -150px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--clr-brand-mid), transparent);
  bottom: -100px;
  right: -100px;
  opacity: 0.2;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--clr-brand-light), transparent);
  top: 40%;
  left: 50%;
  opacity: 0.1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-brand-light);
  background: rgba(76, 201, 240, 0.08);
  border: 1px solid rgba(76, 201, 240, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  animation: fadeIn 1s 0.5s ease both;
}

.hero-globe {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: spin linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(67, 97, 238, 0.3);
  animation-duration: 12s;
}

.ring-2 {
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  border-color: rgba(76, 201, 240, 0.15);
  border-style: dashed;
  animation-duration: 20s;
  animation-direction: reverse;
}

.ring-3 {
  width: 160%;
  height: 160%;
  top: -30%;
  left: -30%;
  border-color: rgba(67, 97, 238, 0.08);
  animation-duration: 30s;
}

.globe-core {
  width: 120px;
  height: 120px;
  background: var(--clr-surface);
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 2;
  overflow: hidden;
  position: relative;
}

.globe-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.globe-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--clr-bg);
  z-index: 3;
  animation: pulse-dot 2s ease-in-out infinite;
}

.dot-uk {
  top: 12%;
  left: 38%;
  background: #4CC9F0;
  animation-delay: 0s;
}

.dot-india {
  bottom: 18%;
  right: 25%;
  background: #FF6B35;
  animation-delay: 1s;
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(20, 27, 45, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  z-index: 10;
}

.hero-card:nth-child(1) {
  top: 8%;
  right: 5%;
}

.hero-card:nth-child(2) {
  bottom: 20%;
  left: -5%;
}

.hero-card:nth-child(3) {
  bottom: 5%;
  right: 8%;
}

.hcard-icon {
  font-size: 1.6rem;
}

.hcard-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
}

.hcard-sub {
  font-size: 0.73rem;
  color: var(--clr-text-muted);
  margin-top: 1px;
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services {
  background: var(--clr-bg-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed to 4 columns */
    gap: 20px; /* Slightly smaller gap to accommodate 4 boxes */
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-accent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(67, 97, 238, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(67, 97, 238, 0.12);
  border: 1px solid rgba(67, 97, 238, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: rgba(67, 97, 238, 0.2);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.65rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-features {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-features li {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  padding-left: 1rem;
  position: relative;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-brand-light);
  font-size: 0.75rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-brand-light);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-link:hover {
  gap: 0.5rem;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  background: var(--clr-bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* About Visual */
.about-visual {
  position: relative;
  padding: 2rem 2rem 4rem;
}

.about-card-main {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.about-logo {
  width: 110px;
  margin: 0 auto 1rem;
  border-radius: var(--r-md);
}

.about-brand {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 0.35rem;
}

.about-tagline {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.about-badge-1,
.about-badge-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(20, 27, 45, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-card);
}

.about-badge-1 {
  bottom: 1rem;
  left: -1rem;
}

.about-badge-2 {
  top: 1rem;
  right: -1rem;
}

.ab-icon {
  font-size: 1.8rem;
}

.ab-text {
  display: flex;
  flex-direction: column;
}

.ab-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-white);
}

.ab-text span {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* About content */
.about-desc {
  color: var(--clr-text-muted);
text-align: justify;  
line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  transition: var(--transition);
}

.pillar:hover {
  border-color: rgba(67, 97, 238, 0.4);
  background: var(--clr-surface-2);
}

.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.3rem;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── PROCESS ─────────────────────────────────────────────────── */
.process {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(67, 97, 238, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(67, 97, 238, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--ff-head);
  color: rgba(67, 97, 238, 0.12);
  letter-spacing: -0.05em;
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.process-step h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.65rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
text-align: justify;
}

.process-arrow {
  color: rgba(67, 97, 238, 0.4);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ── LOCATIONS ───────────────────────────────────────────────── */
.locations {
  background: var(--clr-bg);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.location-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  transition: var(--transition);
}

.location-card.primary-loc {
  border-color: rgba(67, 97, 238, 0.35);
  background: var(--clr-surface-2);
  position: relative;
  overflow: hidden;
}

.location-card.primary-loc::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.12), transparent);
}

.location-card:hover {
  border-color: rgba(67, 97, 238, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.loc-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.location-card h3 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 0.4rem;
}

.loc-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-brand-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.location-card p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
text-align: justify;
}

.loc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.loc-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-brand-mid);
  background: rgba(67, 97, 238, 0.1);
  border: 1px solid rgba(67, 97, 238, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
}

.loc-services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ls-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.ls-item span {
  color: var(--clr-brand-light);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  background: var(--clr-bg-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.testimonial-card.highlight {
  background: linear-gradient(135deg, rgba(58, 12, 163, 0.25), rgba(67, 97, 238, 0.15));
  border-color: rgba(67, 97, 238, 0.4);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stars {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #F5C518;
}

.testimonial-card p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--clr-border);
  padding-top: 1rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--g-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g-accent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cd-icon {
  width: 46px;
  height: 46px;
  background: rgba(67, 97, 238, 0.12);
  border: 1px solid rgba(67, 97, 238, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
}

.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: var(--clr-white);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--clr-brand-light);
}

/* Contact Form */
.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0.8rem 1rem;
  color: var(--clr-white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238891B5' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--clr-surface);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 145, 181, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-brand-mid);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.btn-arrow {
  transition: var(--transition);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.form-success {
  display: none;
  font-size: 0.9rem;
  color: #4ade80;
  text-align: center;
  padding: 1rem;
  background: rgba(74, 222, 128, 0.08);
  border-radius: var(--r-md);
  margin-top: 0.75rem;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.form-error {
  display: none;
  font-size: 0.88rem;
  color: #f87171;
  text-align: center;
  padding: 1rem;
  background: rgba(248, 113, 113, 0.08);
  border-radius: var(--r-md);
  margin-top: 0.75rem;
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-logo {
  height: 50px;
  width: auto;
  border-radius: var(--r-sm);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--clr-brand-mid);
  border-color: var(--clr-brand-mid);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col a,
.footer-col span {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--clr-brand-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-inner span {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--clr-brand-light);
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(76, 201, 240, 0);
  }
}

.card-float {
  animation: floatY 3.5s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 1.2s;
}

.delay-2 {
  animation-delay: 2.4s;
}

.floating {
  animation: floatY 4s ease-in-out infinite;
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-left {
    display: none;
  }

  .section-title.tl {
    text-align: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--clr-border);
    padding: 1.5rem;
    gap: 0.5rem;
  }

  .nav-links.open a {
    padding: 0.75rem 1rem;
    border-radius: var(--r-md);
    border: 1px solid var(--clr-border);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
.sub-hero {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.mv-block {
  margin-bottom: 60px;
}
.elfsight-app-0a733c87-b25f-4065-880a-9cc2098206b7 {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.founder-img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

.founder-role {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.founder-desc {
  line-height: 1.8;
  color: var(--clr-text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .founder-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-img {
    margin: 0 auto;
  }

}






