/* ======================================================
   RAVI SHARDA & ASSOCIATES — Design System & Styles
   Premium Global Accounting & Audit Website
   ====================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette */
  --primary: #0A2540;
  --primary-light: #0F3460;
  --primary-dark: #061A2E;
  --accent: #1B6FE0;
  --accent-light: #4A90E8;
  --accent-dark: #1458B8;
  --accent-gold: #C9952B;
  --accent-gold-light: #E2B754;

  /* Backgrounds */
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-section-alt: #F1F5F9;
  --bg-dark: #0A2540;
  --bg-dark-card: rgba(255, 255, 255, 0.06);

  /* Text */
  --text-primary: #1A1A2E;
  --text-secondary: #64748B;
  --text-light: #94A3B8;
  --text-on-dark: #E2E8F0;
  --text-on-dark-muted: #94A3B8;
  --text-white: #FFFFFF;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0A2540 0%, #0F3460 40%, #1B4F72 70%, #1B6FE0 100%);
  --gradient-accent: linear-gradient(135deg, #1B6FE0 0%, #4A90E8 100%);
  --gradient-gold: linear-gradient(135deg, #C9952B 0%, #E2B754 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.12);
  --shadow-xl: 0 20px 60px rgba(10, 37, 64, 0.16);
  --shadow-glow: 0 0 40px rgba(27, 111, 224, 0.15);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-dark: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-narrow: 900px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-primary);
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
  margin: 20px 0;
}

.section-header.center .gold-divider {
  margin: 20px auto;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ======================================================
   NAVIGATION
   ====================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo-icon {
  width: 54px;
  height: auto;
  flex-shrink: 0;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-white);
  transition: var(--transition-base);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

.navbar.scrolled .nav-logo-text {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--gradient-accent) !important;
  color: var(--text-white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 111, 224, 0.35);
}

/* Resources Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  z-index: 1002;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(10, 37, 64, 0.95);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-gold-light) !important;
  padding-left: 24px;
}

.navbar.scrolled .nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(10, 37, 64, 0.08);
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.15);
}

.navbar.scrolled .nav-dropdown-menu::before {
  border-bottom-color: rgba(255, 255, 255, 0.97);
}

.navbar.scrolled .nav-dropdown-menu a {
  color: var(--text-primary) !important;
}

.navbar.scrolled .nav-dropdown-menu a:hover {
  background: rgba(10, 37, 64, 0.04);
  color: var(--accent-gold) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar.scrolled .nav-hamburger span {
  background: var(--primary);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(27, 111, 224, 0.15) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
  z-index: 2;
}

/* Hero dot grid pattern */
.hero-content::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 500px;
  max-width: 100vw;
  height: 500px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-5%, 5%) scale(1.1);
    opacity: 0.8;
  }
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  animation: float 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
  transform: rotate(15deg);
}

.hero-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: -5s;
  transform: rotate(-10deg);
  border-color: rgba(201, 149, 43, 0.08);
}

.hero-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 8%;
  animation-delay: -10s;
  transform: rotate(25deg);
}

.hero-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: -15s;
  border-color: rgba(201, 149, 43, 0.1);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
  }

  50% {
    transform: translateY(-10px) rotate(-3deg);
  }

  75% {
    transform: translateY(-25px) rotate(3deg);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  color: var(--accent-gold-light);
  position: relative;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-on-dark-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-accent);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 111, 224, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  position: relative;
  padding-left: 20px;
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 44px;
  background: var(--gradient-gold);
  border-radius: 3px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-global-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-flags {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
}

.hero-flags .flag-icon {
  width: 22px;
  height: auto;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ======================================================
   LEADERSHIP
   ====================================================== */
.leadership {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.leader-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 4px 0 0 4px;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.leader-avatar {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  background: var(--gradient-hero);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--bg-light), var(--bg-light)), var(--gradient-gold);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 24px rgba(201, 149, 43, 0.25);
  position: relative;
}

.leader-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px dashed rgba(201, 149, 43, 0.3);
  animation: avatarSpin 12s linear infinite;
}

@keyframes avatarSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.leader-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.leader-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.leader-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.leader-qual-badge {
  padding: 3px 10px;
  background: rgba(27, 111, 224, 0.08);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.leader-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.leader-firm {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.leader-desc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.leader-desc-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.leader-desc-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.75rem;
}

.leader-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.leader-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(27, 111, 224, 0.08);
  color: var(--accent);
  transition: all var(--transition-fast);
}

.leader-social a:hover {
  background: var(--accent-gold);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ======================================================
   SERVICES
   ====================================================== */
.services {
  padding: 60px 0;
  background: var(--bg-light);
  position: relative;
}

.services .section-header {
  margin-bottom: 36px;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 111, 224, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 37, 64, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, rgba(201, 149, 43, 0.12) 0%, rgba(201, 149, 43, 0.04) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-gold);
  border: 1px solid rgba(201, 149, 43, 0.15);
  flex-shrink: 0;
  margin-top: 4px;
}

.service-card-content {
  flex: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-card ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-card ul li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

/* ======================================================
   TECHNICAL CAPABILITIES
   ====================================================== */
.capabilities {
  padding: var(--section-padding);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.capabilities::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(27, 111, 224, 0.1) 0%, transparent 60%);
}

.capabilities .section-label {
  color: var(--accent-gold-light);
}

.capabilities .section-title {
  color: var(--text-white);
}

.capabilities .section-subtitle {
  color: var(--text-on-dark-muted);
}

.capabilities .gold-divider {
  opacity: 0.7;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cap-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.cap-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(201, 149, 43, 0.4);
  box-shadow: 0 12px 40px rgba(201, 149, 43, 0.12), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cap-card:hover::before {
  transform: scaleX(1);
}

.cap-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201, 149, 43, 0.18) 0%, rgba(201, 149, 43, 0.06) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-gold-light);
  border: 1px solid rgba(201, 149, 43, 0.2);
  transition: all var(--transition-base);
}

.cap-card:hover .cap-card-icon {
  background: linear-gradient(135deg, rgba(201, 149, 43, 0.28) 0%, rgba(201, 149, 43, 0.1) 100%);
  border-color: rgba(201, 149, 43, 0.4);
  box-shadow: 0 0 20px rgba(201, 149, 43, 0.15);
}

.cap-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.cap-card p {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cap-tag {
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-on-dark);
  font-weight: 500;
  transition: all var(--transition-base);
}

.cap-tag:hover {
  background: rgba(201, 149, 43, 0.15);
  border-color: rgba(201, 149, 43, 0.35);
  color: var(--accent-gold-light);
}

/* ======================================================
   FEATURED PROJECTS
   ====================================================== */
.projects {
  padding: 60px 0;
  background: var(--bg-white);
}

.projects .section-header {
  margin-bottom: 36px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.project-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 111, 224, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 149, 43, 0.2);
}

.project-card:hover::after {
  transform: scaleX(1);
}

.project-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(27, 111, 224, 0.25);
  flex-shrink: 0;
  margin-top: 4px;
}

.project-card-content {
  flex: 1;
}

.project-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(201, 149, 43, 0.1);
  border: 1px solid rgba(201, 149, 43, 0.2);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.project-metric {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1.2;
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.project-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ======================================================
   IMPACT / RESULTS
   ====================================================== */
.impact {
  padding: var(--section-padding);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 149, 43, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.impact .section-label {
  color: var(--accent-gold-light);
}

.impact .section-title {
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact .gold-divider {
  opacity: 0.7;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.impact-stat-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.impact-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 0 0 3px 3px;
}

.impact-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 149, 43, 0.3);
}

.impact-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent-gold-light);
  margin-bottom: 4px;
  line-height: 1;
}

.impact-stat-label {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}

.impact-stat-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 4px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.impact-stat-flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.impact-stat-flags .flag-icon {
  width: 24px;
  height: auto;
  border-radius: 2px;
}

.impact-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.impact-highlight {
  background: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-left: 4px solid var(--accent-gold);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.impact-highlight:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(201, 149, 43, 0.2);
  border-left-color: var(--accent-gold);
}

.impact-highlight h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.impact-highlight p {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

.impact-highlight strong {
  color: var(--accent-gold-light);
  font-weight: 700;
}



/* ======================================================
   GLOBAL REACH
   ====================================================== */
.global {
  padding: var(--section-padding);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.global::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 111, 224, 0.08) 0%, transparent 70%);
}

.global .section-label {
  color: var(--accent-gold-light);
}

.global .section-title {
  color: var(--text-white);
}

.global .section-subtitle {
  color: var(--text-on-dark-muted);
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.global-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  display: flex;
  gap: 20px;
}

.global-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(201, 149, 43, 0.3);
}

.global-card-flags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 52px;
  align-items: center;
  padding-top: 4px;
}

.flag-icon {
  width: 40px;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Logo in Navbar */
.nav-logo-img {
  height: 56px;
  width: auto;
  transition: var(--transition-base);
}

.navbar.scrolled .nav-logo-img {
  height: 48px;
}

/* Logo in Footer */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon,
.footer-logo-shield {
  width: 44px;
  height: auto;
  flex-shrink: 0;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-white);
}

.footer-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.global-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.global-card p {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

/* ======================================================
   CONTACT
   ====================================================== */
.contact {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info>p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(27, 111, 224, 0.08), rgba(27, 111, 224, 0.03));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  border: 1px solid rgba(27, 111, 224, 0.1);
}

.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-detail a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(10, 37, 64, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(10, 37, 64, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 111, 224, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gradient-accent);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  border: none;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 111, 224, 0.4);
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--primary-dark);
  padding: 60px 0 24px;
  color: var(--text-on-dark-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-white);
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-white);
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
}

.footer ul li a:hover {
  color: var(--accent-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: var(--accent-gold-light);
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}

.back-to-top {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.back-to-top:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* ======================================================
   RESPONSIVE — Tablet
   ====================================================== */
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .impact-highlights {
    grid-template-columns: 1fr;
  }

  .global-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    gap: 32px;
  }
}

/* ======================================================
   RESPONSIVE — Mobile
   ====================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    gap: 24px;
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--text-on-dark) !important;
    font-size: 1.1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a {
    text-align: center;
    justify-content: center;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Sticky Mobile CTA */
  .mobile-cta {
    display: flex;
  }
}

/* ======================================================
   SCROLL PROGRESS BAR
   ====================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ======================================================
   PAGE LOADING OVERLAY
   ====================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ======================================================
   3D CARD TILT HOVER EFFECT
   ====================================================== */
.service-card {
  transform-style: preserve-3d;
  perspective: 800px;
}

.service-card:hover {
  transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
  box-shadow: var(--shadow-lg);
}

.project-card {
  transform-style: preserve-3d;
  perspective: 800px;
}

.project-card:hover {
  transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
  box-shadow: var(--shadow-lg);
}

/* ======================================================
   STICKY MOBILE CTA
   ====================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  border-top: 1px solid rgba(201, 149, 43, 0.2);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--gradient-gold);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

/* ======================================================
   CONTENT PLACEHOLDER SECTIONS
   ====================================================== */
/* Trusted By / Client Logos */
.trusted-by {
  padding: 50px 0;
  background: var(--bg-white);
  border-top: 1px solid rgba(10, 37, 64, 0.04);
  border-bottom: 1px solid rgba(10, 37, 64, 0.04);
}

.trusted-by .section-header {
  margin-bottom: 32px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
  min-height: 60px;
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: var(--bg-light);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(10, 37, 64, 0.05);
  transition: all var(--transition-base);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Certifications */
/* Credentials Strip — Scrolling Marquee */
.credentials-strip {
  padding: 36px 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(10, 37, 64, 0.06);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  overflow: hidden;
}

.credentials-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 16px 32px;
  transition: all var(--transition-base);
}

.marquee-item:hover {
  transform: scale(1.08);
}

.marquee-item img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: all var(--transition-base);
}

.marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.marquee-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.marquee-item:hover .marquee-name {
  color: var(--primary);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

.certifications {
  padding: 50px 0;
  background: var(--primary);
}

.certifications .section-label {
  color: var(--accent-gold-light);
}

.certifications .section-title {
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cert-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cert-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cert-image:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 40px rgba(201, 149, 43, 0.25);
}

.cert-image img {
  width: 100%;
  height: 221px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.cert-image:hover img {
  transform: scale(1.05);
}

.cert-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, transparent 100%);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .cert-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cert-gallery {
    grid-template-columns: 1fr;
  }

  .cert-image img {
    height: 200px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}


/* Responsive for new sections */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   WHATSAPP FLOATING BUTTON
   ====================================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all var(--transition-base);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 80px;
    /* Above mobile sticky CTA */
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}