:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    
    --font-main: 'Inter', system-ui, sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
  }
  
  .nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
  }
  
  .btn-contact {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 6px;
  }
  
  .btn-contact:hover {
    background: var(--primary-dark);
  }
  
  /* Mobile menu toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
  }


  /* ==========================================================================
   SHARED VARIABLES & BASE
   ========================================================================== */
:root {
  --primary: #0066ff;
  --primary-dark: #0055dd;
  --text-dark: #1a1a2e;
  --text-muted: #475569;
  --text-light: #f8fafc;
  --bg-light: #f8fafc;
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 25px rgba(0,0,0,0.06);
  --radius-lg: 16px;
  --radius-md: 12px;
  --transition: all 0.25s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 960px;
}

/* ==========================================================================
 HERO
 ========================================================================== */
.page-hero {
  padding: 9rem 1rem 6rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0052cc 100%);
  color: white;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.92;
}

/* ==========================================================================
 WHO WE ARE (already good – just ensure it's in your file)
 ========================================================================== */
/* ... keep your existing .who-we-are, .who-grid, .btn-primary etc. ... */

/* ==========================================================================
 SHARED SECTION PADDING & TITLES
 ========================================================================== */
.section-light, .section-white {
  padding: 6rem 1rem;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.6rem);
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 700;
}

/* ==========================================================================
 CARDS (Mission/Vision + Why Choose)
 ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  padding: 2.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.accent { color: var(--primary); }

.card-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #334155;
}

/* Why Choose – simpler cards */
.why-choose .card {
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.why-card .why-text {
  font-size: 1.15rem;
  margin: 0;
  color: #334155;
  font-weight: 500;
}

/* ==========================================================================
 PROCESS
 ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.process-step {
  text-align: center;
}

.step-number {
  font-size: clamp(2.8rem, 8vw, 4.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.step-text {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
 CORE VALUES
 ========================================================================== */
.values-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.value-tag {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 600;
  color: var(--primary);
  padding: 0.65rem 1.8rem;
  border: 2px solid var(--primary);
  border-radius: 999px;
}

/* ==========================================================================
 CTA SECTION
 ========================================================================== */
.cta-section {
  padding: 8rem 1rem;
  background: #0f172a;
  color: white;
  text-align: center;
}

.cta-title {
  font-size: clamp(2.2rem, 5.5vw, 3rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.btn-cta {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 1.1rem 2.8rem;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: var(--transition);
}

.btn-cta:hover,
.btn-cta:focus {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* ==========================================================================
 RESPONSIVE ADJUSTMENTS
 ========================================================================== */
@media (max-width: 768px) {
  .section-light, .section-white { padding: 5rem 1rem; }
  .cta-section { padding: 6rem 1rem; }
  .page-hero { padding: 7rem 1rem 5rem; }
}

@media (max-width: 640px) {
  .section-light, .section-white { padding: 4rem 1rem; }
  .cards-grid, .process-grid { gap: 1.8rem; }
  .card { padding: 2rem 1.5rem; }
}