@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  --yellow: #F5C518;
  --yellow-dark: #c9a000;
  --yellow-light: #FFD84D;
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #222222;
  --dark3: #2e2e2e;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --border: rgba(245,197,24,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; max-width: 100%; position: relative; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); }
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; line-height: 1.05; }
.bebas { font-family: 'Bebas Neue', sans-serif; }

/* TOPBAR */
.topbar { background: var(--black); color: var(--white); padding: 10px 0; font-size: 15px; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--yellow-light); }
.topbar-right { display: flex; gap: 28px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; }
.topbar-item svg { color: var(--yellow); flex-shrink: 0; width: 16px; height: 16px; }

/* NAVBAR */
.navbar { background: var(--dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 30px rgba(0,0,0,0.4); transition: background .3s; }
.navbar.scrolled { background: rgba(17,17,17,0.97); backdrop-filter: blur(12px); }
.navbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; text-decoration: none; gap: 0; }
.logo-block { line-height: 1; }
.logo-text-jk { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--yellow); letter-spacing: 1px; }
.logo-text-express { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--white); letter-spacing: 3px; }
.logo-sub { font-size: 8px; color: #888; font-weight: 600; letter-spacing: 1px; display: block; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: block; padding: 8px 16px; color: var(--white); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; border-radius: 4px; transition: color .2s; position: relative; }
.nav-links > li > a::after { content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px; height: 2px; background: var(--yellow); transform: scaleX(0); transition: transform .25s; }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { transform: scaleX(1); }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--yellow); }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--dark2); border: 1px solid var(--border); border-top: 3px solid var(--yellow); min-width: 220px; border-radius: 0 0 8px 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .25s; z-index: 999; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 12px 20px; color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); transition: background .2s, color .2s, padding-left .2s; }
.dropdown-menu li a:hover { background: rgba(245,197,24,0.1); color: var(--yellow); padding-left: 28px; }
.dropdown-menu li:last-child a { border-bottom: none; }
.nav-cta { background: var(--yellow) !important; color: var(--black) !important; padding: 10px 22px !important; border-radius: 6px !important; font-weight: 700 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--yellow-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { min-height: 90vh; background: var(--black); position: relative; display: flex; align-items: center; overflow: hidden; width: 100%; }
.hero-bg-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(245,197,24,0.03) 0px, rgba(245,197,24,0.03) 1px, transparent 1px, transparent 60px), repeating-linear-gradient(-45deg, rgba(245,197,24,0.03) 0px, rgba(245,197,24,0.03) 1px, transparent 1px, transparent 60px); }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(245,197,24,0.07) 0%, transparent 70%); }
.hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--yellow); }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 100px 40px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.25); color: var(--yellow); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; animation: fadeInUp .6s .1s both; }
.hero-tag-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.hero-title { font-size: clamp(52px, 6.5vw, 88px); color: var(--white); line-height: 0.95; margin-bottom: 24px; animation: fadeInUp .6s .2s both; }
.hero-title span { color: var(--yellow); }
.hero-title em { font-style: normal; display: block; color: rgba(255,255,255,0.1); font-size: 0.85em; -webkit-text-stroke: 1px rgba(255,255,255,0.15); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 480px; margin-bottom: 40px; animation: fadeInUp .6s .3s both; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp .6s .4s both; }
.hero-stats { display: flex; gap: 36px; margin-top: 52px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08); animation: fadeInUp .6s .5s both; flex-wrap: wrap; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--yellow); line-height: 1; display: block; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 4px; }
.hero-visual { position: relative; animation: fadeInRight .8s .3s both; }
.hero-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 16px; overflow: visible; position: relative; }
.hero-card-img { width: 100%; height: 300px; background: var(--dark3); border-radius: 16px 16px 0 0; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.hero-card-footer { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; }
.card-badge { background: rgba(245,197,24,0.12); color: var(--yellow); font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; }
.card-route { font-size: 13px; color: rgba(255,255,255,0.4); }
.hero-float-1 { position: absolute; top: -16px; right: -16px; background: var(--yellow); color: var(--black); border-radius: 10px; padding: 14px 18px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 13px; text-transform: uppercase; line-height: 1.3; box-shadow: 0 8px 28px rgba(245,197,24,0.4); animation: float 3s ease-in-out infinite; z-index: 10; }
.hero-float-2 { position: absolute; bottom: 48px; left: -28px; background: var(--dark3); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; animation: float 3s 1.5s ease-in-out infinite; z-index: 10; }
.hero-float-2 .f2-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--yellow); line-height: 1; }
.hero-float-2 .f2-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* MARQUEE */
.marquee-bar { background: var(--yellow); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 32px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; color: var(--black); }
.marquee-dot { width: 5px; height: 5px; background: rgba(0,0,0,0.35); border-radius: 50%; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SECTION */
.section { padding: 40px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-dark { background: var(--black); color: var(--white); }
.section-gray { background: var(--light-gray); }
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--yellow); display: block; }
.section-title { font-size: clamp(36px, 4.5vw, 58px); line-height: 1; margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 540px; font-weight: 400; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.45); }
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--yellow); color: var(--black); padding: 14px 28px; border-radius: 6px; font-weight: 700; font-size: 14px; letter-spacing: .5px; text-decoration: none; text-transform: uppercase; transition: all .25s; border: 2px solid var(--yellow); }
.btn-primary:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.3); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); padding: 14px 28px; border-radius: 6px; font-weight: 700; font-size: 14px; letter-spacing: .5px; text-decoration: none; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.2); transition: all .25s; }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-dark { display: inline-flex; align-items: center; gap: 10px; background: var(--black); color: var(--white); padding: 16px 32px; border-radius: 6px; font-weight: 700; font-size: 14px; letter-spacing: .5px; text-decoration: none; text-transform: uppercase; transition: all .25s; white-space: nowrap; }
.btn-dark:hover { background: var(--dark3); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px !important; font-size: 13px !important; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.feature-card { background: var(--dark2); padding: 44px 32px; transition: background .3s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.feature-card:hover { background: var(--dark3); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 56px; height: 56px; background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: background .3s; }
.feature-card:hover .feature-icon { background: rgba(245,197,24,0.2); }
.feature-icon svg { color: var(--yellow); }
.feature-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: rgba(245,197,24,0.06); position: absolute; top: 12px; right: 16px; line-height: 1; pointer-events: none; }
.feature-title { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.feature-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; font-weight: 300; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; transition: all .3s; background: var(--white); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--yellow); }
.service-card-top { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.service-card-top-img { background: var(--dark2); }
.service-card-top-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.service-card:hover .service-card-top-img img { transform: scale(1.08); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%); pointer-events: none; }
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-title { font-size: 22px; margin-bottom: 10px; }
.service-card-desc { font-size: 14px; color: var(--gray); line-height: 1.65; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--yellow-dark); font-weight: 700; font-size: 12px; text-decoration: none; text-transform: uppercase; letter-spacing: .5px; margin-top: auto; padding-top: 16px; transition: gap .2s; }
.service-card-link:hover { gap: 10px; }
.service-icon-wrap { width: 80px; height: 80px; background: rgba(245,197,24,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.service-icon-wrap svg { color: var(--yellow-dark); }

/* WHY US */
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.whyus-img-block { position: relative; z-index: 1; border-radius: 20px; overflow: hidden; background: var(--dark2); min-height: 460px; display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.whyus-img-real { padding: 0; }
.whyus-img-real img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; display: block; }
.whyus-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,17,17,0.25) 0%, rgba(245,197,24,0.12) 100%); pointer-events: none; }
.whyus-img-badge {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--yellow); color: var(--black);
  padding: 18px 22px; border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 36px rgba(245,197,24,0.45);
  z-index: 2;
}
.whyus-img-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; line-height: 1; }
.whyus-img-badge-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; line-height: 1.3; }
.whyus-big-num { font-family: 'Bebas Neue', sans-serif; font-size: 200px; color: rgba(245,197,24,0.06); line-height: 1; position: absolute; top: -30px; left: -10px; pointer-events: none; }
.whyus-badge { position: absolute; bottom: 28px; right: -16px; background: var(--yellow); color: var(--black); border-radius: 12px; padding: 20px 24px; text-align: center; box-shadow: 0 10px 40px rgba(245,197,24,0.4); z-index: 2; }
.whyus-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; }
.whyus-badge-text { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.whyus-intro { font-size: 16px; color: #444; line-height: 1.8; margin-top: 18px; font-weight: 400; }
.whyus-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.whyus-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border-radius: 10px; border: 1px solid transparent; transition: all .3s; }
.whyus-item:hover { border-color: var(--border); background: rgba(245,197,24,0.06); }
.whyus-item-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(245,197,24,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.whyus-item-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #1a1a1a; }
.whyus-item-desc { font-size: 14.5px; color: #555; line-height: 1.65; }

/* COUNTER */
.counter-strip { background: var(--yellow); padding: 60px 0; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.counter-item { text-align: center; padding: 20px 14px; }
.counter-item:last-child { border-right: none; }
.counter-num { font-family: 'Bebas Neue', sans-serif; font-size: 60px; color: var(--black); line-height: 1; display: block; }
.counter-suffix { font-size: 40px; color: var(--black); font-family: 'Bebas Neue', sans-serif; }
.counter-label { font-size: 12px; font-weight: 700; color: rgba(0,0,0,0.55); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 31px; left: 10%; width: 80%; height: 2px; background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 8px, transparent 8px, transparent 16px); z-index: 0; }
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle { width: 62px; height: 62px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--black); box-shadow: 0 0 0 8px rgba(245,197,24,0.1); }
.step-title { font-size: 19px; margin-bottom: 10px; color: var(--white); }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* CLIENTS */
.clients-strip { padding: 56px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; background: #fafafa; }
.clients-label { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 3px; color: #555; font-weight: 700; margin-bottom: 40px; }
.clients-logos { display: flex; justify-content: center; align-items: center; gap: 52px; flex-wrap: wrap; }
.client-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: #2a2a2a; letter-spacing: 1.2px; text-transform: uppercase; transition: color .3s, transform .3s; cursor: default; opacity: 0.78; }
.client-logo:hover { color: var(--yellow-dark); opacity: 1; transform: translateY(-2px); }

/* CERTIFICATES (homepage) */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.cert-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s, box-shadow .3s;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.cert-card-head { display: flex; align-items: center; gap: 14px; }
.cert-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cert-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--gray); text-transform: uppercase; margin: 0; }
.cert-title { font-size: 17px; font-weight: 800; color: #111; margin: 3px 0 0; line-height: 1.2; }
.cert-desc { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }
.cert-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.cert-pill { font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.cert-pill-yellow { background: #fffbeb; border: 1.5px solid var(--yellow); color: #92600a; }
.cert-pill-dark { background: #f5f5f5; border: 1.5px solid #222; color: #222; }
.cert-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 8px;
  font-size: 13px; font-weight: 700; color: var(--yellow-dark);
  text-decoration: none; text-transform: uppercase; letter-spacing: .5px;
  transition: gap .2s, color .2s;
}
.cert-link:hover { gap: 12px; color: #111; }
.cert-link-pending { color: #999; cursor: default; pointer-events: none; }
@media(max-width: 1024px) {
  .cert-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 700px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* INDIA MAP - Key Routes (services.php) */
.india-routes-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--dark2) 0%, #181818 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.india-routes-wrap::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.india-map-container {
  position: relative;
  width: 100%;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.india-map-svg { width: 100%; max-width: 760px; height: auto; }

.routes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.routes-list-title {
  font-size: 14px;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,197,24,0.15);
}
.route-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(245,197,24,0.1);
  border-radius: 10px;
  transition: all .25s;
}
.route-row:hover {
  background: rgba(245,197,24,0.06);
  border-color: rgba(245,197,24,0.4);
  transform: translateX(4px);
}
.route-row-pin {
  width: 32px; height: 32px;
  background: rgba(245,197,24,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.route-row-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--white);
  letter-spacing: .3px;
}
.route-row-distance {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.route-row-time {
  background: rgba(245,197,24,0.12);
  color: var(--yellow);
  font-size: 12px; font-weight: 700;
  padding: 6px 11px;
  border-radius: 5px;
  letter-spacing: .3px;
  white-space: nowrap;
}

@media(max-width: 1024px) {
  .india-routes-wrap { grid-template-columns: 1fr; gap: 32px; }
  .india-map-container { min-height: 500px; }
}
@media(max-width: 600px) {
  .india-routes-wrap { padding: 20px; }
  .india-map-container { min-height: 400px; }
}

/* CLIENTS PAGE — Sectors with real icons */
.sector-block { margin-bottom: 56px; }
.sector-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f0f0;
}
.sector-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #111;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(245,197,24,0.28);
}
.sector-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.clients-sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.client-tile {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 22px 14px;
  text-align: center;
  transition: all .3s ease;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}
.client-tile:hover {
  border-color: var(--yellow);
  background: #fffdf3;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(245,197,24,0.15);
}
.client-tile-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #1f1f1f;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}
@media(max-width: 1024px) {
  .clients-sector-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 600px) {
  .clients-sector-grid { grid-template-columns: 1fr 1fr; }
  .sector-title { font-size: 20px; }
}

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: all .3s; }
.testimonial-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.testimonial-quote { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: var(--yellow); opacity: 0.4; line-height: 0.7; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.75; font-weight: 400; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: rgba(245,197,24,0.18); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--yellow); flex-shrink: 0; }
.author-name { font-size: 15px; font-weight: 700; color: var(--white); }
.author-title { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.stars { color: var(--yellow); font-size: 13px; margin-bottom: 4px; letter-spacing: 1px; }

/* CTA BANNER */
.cta-banner { background: var(--yellow); padding: 72px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: 'JK'; font-family: 'Bebas Neue', sans-serif; font-size: 360px; color: rgba(0,0,0,0.04); position: absolute; right: -40px; top: 50%; transform: translateY(-50%); line-height: 1; pointer-events: none; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-text { max-width: 640px; }
.cta-title { font-size: clamp(30px, 4vw, 52px); color: var(--black); line-height: 1.05; }
.cta-desc { font-size: 17px; color: rgba(0,0,0,0.7); margin-top: 12px; font-weight: 500; line-height: 1.5; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-self: end; }
@media(max-width:768px){
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-self: center; justify-content: center; }
}

/* FOOTER */
.footer { background: var(--black); color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 20px 0 28px; font-weight: 300; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; transition: all .2s; font-weight: 700; font-family: 'Barlow Condensed', sans-serif; }
.social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.footer-col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--yellow); font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 14px; transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--yellow); }
.footer-links a::before { content: '→'; font-size: 11px; opacity: 0; transition: opacity .2s; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item svg { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-contact-item a { color: var(--yellow); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

/* PAGE HERO */
.page-hero { background: var(--black); padding: 80px 0 60px; position: relative; overflow: hidden; }
.page-hero-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(245,197,24,0.025) 0px, rgba(245,197,24,0.025) 1px, transparent 1px, transparent 60px); }
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 20px; list-style: none; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { color: var(--yellow); }
.page-title { font-size: clamp(44px, 6vw, 72px); color: var(--white); line-height: 1; }
.page-title span { color: var(--yellow); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 16px; overflow: hidden; min-height: 480px; background: var(--dark2); display: flex; align-items: center; justify-content: center; padding: 24px; }
.about-exp-badge { position: absolute; bottom: -16px; right: -16px; background: var(--yellow); color: var(--black); width: 120px; height: 120px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 8px 30px rgba(245,197,24,0.4); font-family: 'Bebas Neue', sans-serif; }
.about-exp-badge .num { font-size: 44px; line-height: 1; }
.about-exp-badge .text { font-size: 10px; font-weight: 700; letter-spacing: .5px; font-family: 'Inter', sans-serif; line-height: 1.2; }
.about-text { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.value-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.value-pill { background: rgba(245,197,24,0.08); border: 1px solid rgba(245,197,24,0.2); color: var(--yellow-dark); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px; text-transform: uppercase; letter-spacing: .5px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; border: 1px solid #eee; border-radius: 12px; overflow: hidden; transition: all .3s; }
.team-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.team-avatar { width: 100%; height: 200px; background: linear-gradient(135deg, var(--dark2), var(--dark3)); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--yellow); }
.team-info { padding: 20px; }
.team-name { font-size: 20px; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* USP */
.usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.usp-card { display: flex; gap: 22px; padding: 32px; border: 1px solid var(--border); border-radius: 12px; background: var(--dark2); transition: all .3s; align-items: flex-start; }
.usp-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.usp-card-icon { width: 56px; height: 56px; flex-shrink: 0; background: rgba(245,197,24,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.usp-card-title { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.usp-card-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; font-weight: 300; }

/* AWARDS */
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.award-card { background: var(--white); border: 1px solid #e8e8e8; border-radius: 12px; padding: 36px; text-align: center; transition: all .3s; }
.award-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.award-icon { width: 72px; height: 72px; background: rgba(245,197,24,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.award-year { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--yellow-dark); letter-spacing: 1px; }
.award-title { font-size: 20px; margin: 8px 0 10px; }
.award-body { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-form-wrap { background: var(--white); border: 1px solid #e8e8e8; border-radius: 16px; padding: 48px; box-shadow: 0 4px 30px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; color: var(--dark); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; font-family: 'Inter', sans-serif; color: var(--dark); background: #fafafa; transition: border-color .2s, box-shadow .2s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,197,24,0.15); background: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border: 1px solid #eee; border-radius: 12px; transition: border-color .3s; }
.contact-info-card:hover { border-color: var(--yellow); }
.contact-info-icon { width: 52px; height: 52px; background: var(--yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--black); }
.contact-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); font-weight: 700; margin-bottom: 6px; }
.contact-info-val { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.5; }
.contact-info-val a { color: var(--dark); text-decoration: none; }
.contact-info-val a:hover { color: var(--yellow-dark); }
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid #eee; height: 280px; background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray); }

/* ANIMATIONS */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s, transform .7s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s, transform .7s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ── GLOBAL OVERFLOW PREVENTION ── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

/* Hide drawer-only elements on desktop */
.nav-drawer-header { display: none; }

/* ── SIDE DRAWER OVERLAY ── */
.nav-overlay{
  display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);
  z-index:998;backdrop-filter:blur(2px);opacity:0;transition:opacity .3s;
}
.nav-overlay.open{display:block;opacity:1;}

/* LOGO IMAGE */
.logo-img { height: 100%; width: 60%; display: block; }
.logo:hover .logo-img { opacity: 0.85; }

/* ── TABLET (max 1024px) ── */
@media(max-width:1024px){
  .features-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .whyus-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { display: block; max-width: 540px; margin: 0 auto; width: 100%; }
  .hero-card-img { height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counter-grid { grid-template-columns: repeat(3,1fr); }
  .counter-num { font-size: 52px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  /* about.php timeline — collapse to single column on tablet */
  .milestone-row { grid-template-columns: 1fr !important; }
}

/* ── MOBILE (max 768px) ── */
@media(max-width:768px){

  /* ── NAV ── */
  .logo-img { width: 90% !important;}
  .topbar-right { display: none; }
  .hamburger { display: flex; }
  .navbar { position: relative; overflow: visible; }
  .nav-drawer-header { display: flex; }

  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(300px,82vw);
    background: var(--dark2);
    padding: 0; z-index: 999;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,.45);
  }
  .nav-links.open { transform: translateX(0); }

  .nav-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; border-bottom: 2px solid var(--yellow);
    background: var(--black); flex-shrink: 0;
  }
  .nav-drawer-header .drawer-logo { font-size: 20px; font-weight: 900; color: var(--yellow); letter-spacing: 1px; }
  .nav-drawer-close {
    background: none; border: none; cursor: pointer; padding: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); border-radius: 6px; transition: background .2s;
  }
  .nav-drawer-close:hover { background: rgba(255,255,255,.1); }
  .nav-drawer-close svg { display: block; }

  .nav-links > li > a {
    display: block; padding: 15px 24px; font-size: 14px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase; color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.07);
    text-decoration: none; transition: background .2s, color .2s;
  }
  .nav-links > li > a:hover, .nav-links > li > a.active { background: rgba(245,197,24,.1); color: var(--yellow); }
  .nav-links > li > a::after { display: none; }

  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; background: rgba(0,0,0,.3); padding-left: 0;
    display: none; box-shadow: none; border-radius: 0; min-width: unset;
  }
  .dropdown-menu li a {
    padding: 12px 24px 12px 36px; font-size: 13px; color: rgba(255,255,255,.75);
    border-bottom: 1px solid rgba(255,255,255,.05); display: block;
    text-decoration: none; transition: color .2s;
  }
  .dropdown-menu li a:hover { color: var(--yellow); }
  .dropdown.open .dropdown-menu { display: block; }

  .nav-links .nav-cta {
    margin: 20px 20px 8px; border-radius: 8px; text-align: center;
    border: 2px solid var(--yellow); color: var(--yellow) !important;
    background: transparent !important;
  }
  .nav-links .nav-cta:hover { background: var(--yellow) !important; color: #111 !important; }

  /* ── LAYOUT & SPACING ── */
  .section-inner, .navbar-inner, .topbar-inner { padding: 0 16px; }
  .hero-inner { padding: 60px 16px; }
  .section { padding: 26px 0; }
  .contact-form-wrap { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }

  /* ── ALL GRIDS → SINGLE COLUMN ── */
  .features-grid,
  .services-grid,
  .testimonials-grid,
  .team-grid,
  .usp-grid,
  .awards-grid,
  .process-steps { grid-template-columns: 1fr; }

  .photo-leaders-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .counter-grid { grid-template-columns: 1fr 1fr; }

  /* ── OVERFLOW CULPRITS ── */
  /* Hero floating badges cause horizontal scroll */
  .hero-float-1, .hero-float-2 { display: none; }
  /* On mobile, restructure the hero so the truck banner sits right after the title (before description & CTAs) */
  .hero { min-height: auto; }
  .hero-inner { display: flex; flex-direction: column; padding: 32px 16px 48px; gap: 0; }
  .hero-content { display: contents; }
  .hero-tag { order: 1; margin-bottom: 14px; }
  .hero-title { order: 2; font-size: clamp(36px, 9vw, 48px) !important; margin-bottom: 18px; }
  .hero-visual { order: 3; max-width: 100%; margin: 0 0 22px; }
  .hero-desc { order: 4; margin-bottom: 22px; }
  .hero-actions { order: 5; margin-bottom: 28px; }
  .hero-stats { order: 6; margin-top: 0; padding-top: 24px; gap: 18px; }
  .hero-card-img { height: 190px; border-radius: 12px 12px 0 0; }
  .hero-card { border-radius: 12px; }
  .hero-card-footer { padding: 12px 16px; }
  /* CTA giant watermark text overflows */
  .cta-banner::before { display: none; }
  /* whyus badge overflow */
  .whyus-badge { right: 0; bottom: 8px; position: relative; display: inline-flex; margin-top: 16px; }
  .whyus-img-block { overflow: visible; }
  /* about badge overflow */
  .about-exp-badge { right: 0; bottom: 0; }
  .about-img-wrap { overflow: visible; }

  /* ── MANAGEMENT PAGE — JK Shah Featured Card ── */
  .jk-shah-card {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
    gap: 24px !important;
    text-align: center;
  }
  .jk-shah-card > div:first-child { min-width: unset !important; }

  /* ── ABOUT PAGE — Milestones Timeline ── */
  .milestone-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .milestone-row > div:first-child,
  .milestone-row > div:last-child { padding: 0 !important; text-align: left !important; }
  .milestone-dot-col { display: none !important; }

  /* ── SERVICES PAGE — Routes grid ── */
  .routes-grid { grid-template-columns: 1fr !important; }

  /* ── VISION PAGE — values 2-col mini grid ── */
  .values-grid { grid-template-columns: 1fr !important; }
  .goals-grid { grid-template-columns: 1fr !important; }

  /* ── CLIENTS PAGE — 6-col client logos grid ── */
  .clients-sector-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* ── AWARDS PAGE — counter-grid 5-item ── */
  .counter-grid { grid-template-columns: 1fr 1fr; }

  /* ── PREVENT ALL OVERFLOW ── */
  * { max-width: 100%; }
  img, svg { max-width: 100%; height: auto; }
}
.vision-mission-grid{
  align-items: start;
  gap: 80px;
}

@media(max-width:768px){

  .vision-mission-grid{
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .vision-mission-grid > div > div{
    padding: 28px 20px !important;
  }

  .vision-mission-grid .section-title{
    font-size: 38px;
    line-height: 1.1;
  }
}