/* ============================================================
   INSIGHT TRAFFIC SURVEY – style.css
   Colors: Navy #0d2b5e | Green #3aaa35 | White #ffffff
   Font: Rajdhani (headings) + Inter (body)
   ============================================================ */

:root {
  --navy: #0d2b5e;
  --navy-dark: #081a3c;
  --navy-mid: #143672;
  --green: #3aaa35;
  --green-dark: #2a8226;
  --green-light: #4ecc48;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --light-bg: #eef2f9;
  --text-dark: #1a1a2e;
  --text-mid: #3d4a6b;
  --text-light: #6b7a99;
  --border: #dde4f0;
  --shadow: 0 4px 24px rgba(13,43,94,0.10);
  --shadow-lg: 0 12px 48px rgba(13,43,94,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo img { width: 160px; margin: 0 auto 24px; border-radius: 8px; mix-blend-mode: screen; filter: brightness(1.1); }
.preloader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; }
.preloader-fill { height: 100%; width: 0; background: var(--green); border-radius: 2px; animation: loadBar 1.4s ease forwards; }
@keyframes loadBar { to { width: 100%; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,26,60,0.97) ;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  line-height: 0;
}
.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
  border-radius: 0;
  background: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.btn-nav {
  margin-left: 28px;
  padding: 10px 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform 0.2s ease;
}
.btn-nav:hover { background: var(--green-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  margin-left: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--green); color: var(--white);
  border-radius: 8px; font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.5px;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,170,53,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border: 2px solid rgba(255,255,255,0.5);
  color: var(--white); border-radius: 8px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border: 2px solid var(--white);
  color: var(--white); border-radius: 8px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--navy-dark);
}
.hero-swiper-section{
  margin-top: 79px;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,26,60,0.97) 0%, rgba(13,43,94,0.92) 50%, rgba(8,26,60,0.98) 100%);
  z-index: 1;
}
/* Background image from Unsplash */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1501139083538-0139583c060f?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}

/* Road animation lines */
.road-lines { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.road-line {
  position: absolute; bottom: 0;
  width: 3px; height: 0;
  background: linear-gradient(to top, var(--green), transparent);
  animation: roadRise 3s ease-in-out infinite;
  opacity: 0;
}
.road-line:nth-child(1) { left: 20%; animation-delay: 0s; }
.road-line:nth-child(2) { left: 50%; animation-delay: 1s; }
.road-line:nth-child(3) { left: 80%; animation-delay: 2s; }
@keyframes roadRise {
  0% { height: 0; opacity: 0; bottom: 0; }
  40% { opacity: 0.4; }
  100% { height: 60vh; opacity: 0; bottom: 60vh; }
}

/* Particles */
.hero-particles { position: absolute; inset: 0; z-index: 2; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--green); opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80vh) scale(1.5); }
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto; padding: 120px 32px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: rgba(58,170,53,0.15);
  border: 1px solid rgba(58,170,53,0.4); border-radius: 100px;
  color: var(--green); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.1;
  color: var(--white); margin-bottom: 24px;
  max-width: 800px;
}
.text-green { color: var(--green); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.75);
  max-width: 600px; margin-bottom: 40px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.scroll-dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  animation: bounce 1.5s ease infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ===== STATS ===== */
.stats-section {
  background: var(--navy); padding: 48px 0;
}
.stats-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-card {
  text-align: center; padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition-delay: var(--delay, 0s);
}
.stat-card:last-child { border-right: none; }
.stat-icon { font-size: 1.8rem; color: var(--green); margin-bottom: 12px; }
.stat-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 3rem; color: var(--white); line-height: 1;
  display: inline;
}
.stat-plus { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2rem; color: var(--green); }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 8px; }

/* ===== SECTION UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 96px 0; }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--navy-dark); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-title, .section-header.light .section-desc { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.65); }
.section-eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--green);
  margin-bottom: 12px; position: relative; padding-bottom: 8px;
}
.section-eyebrow::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--green);
}
.section-header .section-eyebrow::after { left: 50%; transform: translateX(-50%); }
.section-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
}
.section-desc { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 48px; }

/* ===== ABOUT INTRO ===== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.img-frame img { width: 100%; border-radius: var(--radius-lg); display: block; }
.img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--green); color: var(--white);
  padding: 12px 20px; border-radius: 8px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}
.about-intro-text .section-eyebrow { display: block; margin-bottom: 12px; }
.about-intro-text p { color: var(--text-mid); margin-bottom: 20px; line-height: 1.8; }
.check-list { margin: 24px 0 32px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; color: var(--text-mid); font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--green); font-size: 0.9rem; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  transition-delay: var(--delay, 0s);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.service-icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(58,170,53,0.12), rgba(58,170,53,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--green); margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.2rem;
  color: var(--navy); margin-bottom: 12px;
}
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-weight: 600; font-size: 0.9rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ===== WHY SECTION ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-eyebrow { display: block; margin-bottom: 12px; }
.why-text > p { color: var(--text-mid); margin-bottom: 32px; line-height: 1.8; }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.why-feature h4 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: var(--navy); margin-bottom: 6px;
}
.why-feature p { color: var(--text-light); font-size: 0.95rem; }
.why-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-img-wrap img { width: 100%; border-radius: var(--radius-lg); }
.why-stats-overlay {
  position: absolute; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.why-stat {
  background: var(--navy); color: var(--white);
  padding: 12px 20px; border-radius: 10px;
  text-align: center; border-left: 3px solid var(--green);
}
.why-stat span { display: block; font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--green); }
.why-stat small { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ===== HOW IT WORKS ===== */
.how-steps { display: flex; align-items: flex-start; gap: 20px; justify-content: center; flex-wrap: wrap; }
.how-step {
  text-align: center; flex: 1; min-width: 220px; max-width: 280px;
  transition-delay: var(--delay, 0s);
}
.step-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 4rem;
  color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 12px;
}
.step-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white); margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(58,170,53,0.35);
}
.how-step h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.how-step p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.how-connector { color: rgba(255,255,255,0.25); font-size: 1.5rem; margin-top: 60px; }

/* ===== TESTIMONIALS ===== */
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testi-card {
  min-width: 100%; padding: 48px; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.testi-stars { color: #f5a623; margin-bottom: 20px; font-size: 1.1rem; letter-spacing: 2px; }
.testi-card p {
  font-size: 1.1rem; color: var(--text-mid); line-height: 1.8;
  font-style: italic; margin-bottom: 32px; max-width: 700px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.testi-author strong { display: block; color: var(--navy); font-weight: 700; }
.testi-author span { color: var(--text-light); font-size: 0.9rem; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background var(--transition);
}
.testi-btn:hover { background: var(--green); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all 0.3s ease;
}
.testi-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 96px 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1494522855154-9297ac14b55f?w=1200&q=80') center/cover;
  opacity: 0.07;
}
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 20px; }
.brand-col p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: var(--white); margin-bottom: 20px; letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  transition: color var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.contact-list li {
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start;
}
.contact-list li i { color: var(--green); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(58,170,53,0.4);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 380px; display: flex; align-items: center;
  background: var(--navy-dark); position: relative; overflow: hidden;
  padding-top: 80px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80') center/cover;
  opacity: 0.08;
}
.page-hero-content { position: relative; z-index: 1; padding: 64px 0; }
.page-hero-content h1 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 12px;
}
.page-hero-content p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 20px; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 0.9rem;
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.7rem; }

/* ===== ABOUT STORY / MISSION ===== */
.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.mini-stat {
  text-align: center; padding: 20px 8px;
  background: var(--light-bg); border-radius: 10px; border: 1px solid var(--border);
}
.mini-stat strong { display: block; font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.mini-stat span { font-size: 0.82rem; color: var(--text-light); }

.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mission-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); border-top: 4px solid var(--green);
  transition: transform var(--transition); transition-delay: var(--delay, 0s);
}
.mission-card:hover { transform: translateY(-4px); }
.mission-icon { font-size: 2rem; color: var(--green); margin-bottom: 16px; }
.mission-card h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.mission-card p { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }

.strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.strength-item {
  padding: 32px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all var(--transition); transition-delay: var(--delay, 0s);
}
.strength-item:hover { border-color: var(--green); transform: translateY(-4px); }
.strength-num { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--green); opacity: 0.3; margin-bottom: 8px; }
.strength-item h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.strength-item p { color: var(--text-light); font-size: 0.95rem; }

.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.coverage-item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 24px 20px;
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.8); font-weight: 500;
  transition: all var(--transition); transition-delay: var(--delay, 0s);
}
.coverage-item:hover { background: rgba(58,170,53,0.1); border-color: var(--green); color: var(--white); }
.coverage-item i { color: var(--green); }

/* ===== SERVICES DETAIL ===== */
.service-detail-card {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 36px 36px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow); margin-bottom: 24px;
  transition: all var(--transition); transition-delay: var(--delay, 0s);
}
.service-detail-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); }
.sd-icon {
  width: 72px; height: 72px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(58,170,53,0.12), rgba(58,170,53,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--green);
}
.sd-content h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.sd-content > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.sd-content ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.sd-content ul li { display: flex; align-items: flex-start; gap: 8px; color: var(--text-mid); font-size: 0.9rem; }
.sd-content ul li i { color: var(--green); margin-top: 4px; font-size: 0.8rem; flex-shrink: 0; }

.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.promise-item {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); transition: all var(--transition); transition-delay: var(--delay, 0s);
}
.promise-item:hover { background: rgba(58,170,53,0.1); border-color: rgba(58,170,53,0.3); }
.promise-item > i { font-size: 2rem; color: var(--green); margin-bottom: 16px; }
.promise-item h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.promise-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ===== HOW IT WORKS PAGE ===== */
.hiw-steps { display: flex; flex-direction: column; gap: 0; }
.hiw-step-card {
  display: flex; gap: 0; padding: 0 0 56px 0;
  transition-delay: var(--delay, 0s);
}
.hiw-step-card:last-child { padding-bottom: 0; }
.hiw-step-left { display: flex; flex-direction: column; align-items: center; width: 80px; flex-shrink: 0; }
.hiw-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2rem;
  background: var(--green); color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hiw-line { flex: 1; width: 2px; background: var(--border); margin-top: 12px; }
.hiw-step-right {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; flex: 1; margin-left: 28px;
  box-shadow: var(--shadow);
}
.hiw-icon { font-size: 2rem; color: var(--green); margin-bottom: 16px; }
.hiw-step-right h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; }
.hiw-step-right > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.hiw-features { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.hiw-features span {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--light-bg); border-radius: 100px;
  font-size: 0.85rem; color: var(--text-mid); font-weight: 500;
}
.hiw-features span i { color: var(--green); }

.turnaround-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ta-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 28px;
  text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--green);
  transition: transform var(--transition); transition-delay: var(--delay, 0s);
}
.ta-card:hover { transform: translateY(-4px); }
.ta-icon { font-size: 2rem; color: var(--green); margin-bottom: 16px; }
.ta-card h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.ta-time { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.ta-card p { color: var(--text-light); font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
  transition-delay: var(--delay, 0s);
}
.faq-q {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; background: var(--white);
  font-weight: 600; color: var(--navy); transition: background 0.2s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q i { color: var(--green); transition: transform 0.3s ease; }
.faq-q.open i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 24px;
  color: var(--text-mid); font-size: 0.95rem; line-height: 1.8;
  background: var(--off-white); transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 300px; padding: 20px 24px; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap .section-eyebrow { display: block; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.95rem; color: var(--text-dark); background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,170,53,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 24px;
  background: rgba(58,170,53,0.08); border: 1px solid var(--green);
  border-radius: var(--radius); margin-top: 20px; color: var(--green);
}
.form-success i { font-size: 2rem; margin-bottom: 10px; }
.form-success.show { display: block; }

.contact-info .section-eyebrow { display: block; margin-bottom: 8px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.ci-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 24px; background: var(--light-bg);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.ci-card:hover { border-color: var(--green); }
.ci-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; flex-shrink: 0;
}
.ci-card h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ci-card a, .ci-card span { color: var(--text-mid); font-size: 0.95rem; display: block; }
.ci-card small { color: var(--text-light); font-size: 0.82rem; display: block; margin-top: 2px; }
.social-block { margin-top: 28px; }
.social-block h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.test-project-box {
  margin-top: 28px; padding: 28px; border-radius: var(--radius);
  background: var(--navy); color: var(--white);
}
.test-project-box h4 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--white); margin-bottom: 10px;
}
.test-project-box h4 i { color: var(--green); margin-right: 8px; }
.test-project-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.revealed { opacity: 1 !important; transform: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-card:nth-child(even) { border-right: none; }
  .stat-card:nth-child(n+3) { border-bottom: none; }
  .about-intro-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid, .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-stats { grid-template-columns: repeat(2, 1fr); }
  .sd-content ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 20px; height: 70px; }
  .nav-logo img { height: 48px; }
  .nav-links {
    position: fixed;
    top: 0; left: -100%;
    width: 78%; max-width: 300px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 24px;
    transition: left 0.35s ease;
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.4);
    z-index: 1001;
  }
  .nav-links.open { left: 0; }
  .nav-links a { font-size: 1.15rem; color: var(--white); }
  .btn-nav { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-connector { transform: rotate(90deg); margin: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mission-grid, .strengths-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .turnaround-grid { grid-template-columns: 1fr; }
  .service-detail-card { flex-direction: column; gap: 20px; }
  .hiw-step-card { flex-direction: column; gap: 16px; }
  .hiw-step-left { flex-direction: row; width: 100%; }
  .hiw-line { display: none; }
  .hiw-step-right { margin-left: 0; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: 1fr 1fr; }
  .testi-card { padding: 28px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ===== SCROLL OVERLAY for mobile nav ===== */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 999;
}
.nav-overlay.show { display: block; }

/* ============================================================
   SERVICES PAGE – IMAGE GRID STYLE (Client Request)
   ============================================================ */

.srv-intro { text-align: center; padding: 72px 0 40px; }
.srv-intro p { color: var(--text-light); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.srv-grid-section { padding: 0 0 80px; }

.srv-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.srv-item-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.srv-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.srv-item-img:hover img { transform: scale(1.06); }
.srv-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,26,60,0.6) 0%, transparent 60%);
}

.srv-item-text {
  grid-column: span 3;
  background: var(--white);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 3px solid var(--green);
}

.srv-text-block h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  color: var(--navy); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.srv-text-block h3 i { color: var(--green); font-size: 1rem; }
.srv-text-block p {
  color: var(--text-light); font-size: 0.93rem;
  line-height: 1.75; max-height: 120px;
  overflow: hidden;
}

/* Divider between text blocks */
.srv-text-block:not(:last-child) {
  border-right: 1px solid var(--border);
  padding-right: 28px;
}

/* Single row services (last row if only 2) */
.srv-item.two-col { grid-template-columns: repeat(2, 1fr); }
.srv-item.two-col .srv-item-text { grid-template-columns: repeat(2, 1fr); }

.srv-item.one-col { grid-template-columns: 1fr; }
.srv-item.one-col .srv-item-text { grid-template-columns: 1fr; }

/* Section label floating on image */
.srv-img-label {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--green); color: var(--white);
  padding: 6px 16px; border-radius: 100px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.5px;
  z-index: 2;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .srv-item { grid-template-columns: repeat(2, 1fr); }
  .srv-item-img { height: 220px; }
  .srv-item-text { grid-column: span 2; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .srv-item { grid-template-columns: 1fr; }
  .srv-item-img { height: 200px; }
  .srv-item-text { grid-column: span 1; grid-template-columns: 1fr; }
  .srv-text-block:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 20px; }
  .srv-item.two-col { grid-template-columns: 1fr; }
  .srv-item.two-col .srv-item-text { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO SWIPER SECTION
   ============================================================ */

.hero-swiper-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 26, 60, 0.92) 0%,
    rgba(13, 43, 94, 0.80) 50%,
    rgba(8, 26, 60, 0.88) 100%
  );
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.slide-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(58, 170, 53, 0.15);
  border: 1px solid rgba(58, 170, 53, 0.45);
  border-radius: 100px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.7s ease both;
  animation-delay: 0.2s;
}

.slide-content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 780px;
  animation: fadeSlideUp 0.7s ease both;
  animation-delay: 0.35s;
}

.slide-content p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.7s ease both;
  animation-delay: 0.5s;
}

.slide-content .hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s ease both;
  animation-delay: 0.65s;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reset animation on slide change */
.swiper-slide-active .hero-badge,
.swiper-slide-active h1,
.swiper-slide-active p,
.swiper-slide-active .hero-btns {
  animation-play-state: running;
}
.swiper-slide:not(.swiper-slide-active) .hero-badge,
.swiper-slide:not(.swiper-slide-active) h1,
.swiper-slide:not(.swiper-slide-active) p,
.swiper-slide:not(.swiper-slide-active) .hero-btns {
  opacity: 0;
}

/* ---- Swiper Pagination Bullets ---- */
.heroSwiperPagination {
  bottom: 32px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
}
.heroSwiperPagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.heroSwiperPagination .swiper-pagination-bullet-active {
  background: var(--green);
  width: 28px;
  border-radius: 5px;
}

/* ---- Swiper Prev/Next Arrows ---- */
.heroSwiperPrev,
.heroSwiperNext {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(4px);
}
.heroSwiperPrev:hover,
.heroSwiperNext:hover {
  background: var(--green) !important;
  border-color: var(--green) !important;
}
.heroSwiperPrev { left: 24px !important; }
.heroSwiperNext { right: 24px !important; }
.heroSwiperPrev::after,
.heroSwiperNext::after { display: none !important; }
.heroSwiperPrev i,
.heroSwiperNext i { font-size: 1rem; }

/* ---- Scroll indicator ---- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: bounce 1.5s ease infinite;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-swiper-section { height: 100svh; min-height: 560px; }
  .slide-content { padding: 0 20px; }
  .slide-content .hero-btns { flex-direction: column; align-items: flex-start; }
  .heroSwiperPrev { left: 12px !important; }
  .heroSwiperNext { right: 12px !important; }
  .hero-scroll-indicator { display: none; }
}

/* ===== HERO SLIDE FALLBACK GRADIENTS (if images don't load) ===== */
.heroSwiper .swiper-slide:nth-child(1) {
  background-color: #0a1f4e;
  background-image: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1600&q=80');
}
.heroSwiper .swiper-slide:nth-child(2) {
  background-color: #061530;
  background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1600&q=80');
}
.heroSwiper .swiper-slide:nth-child(3) {
  background-color: #0d2240;
  background-image: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=1600&q=80');
}
.heroSwiper .swiper-slide:nth-child(4) {
  background-color: #081830;
  background-image: url('https://images.unsplash.com/photo-1543872084-c7bd3822856f?w=1600&q=80');
}
.heroSwiper .swiper-slide:nth-child(5) {
  background-color: #0a1a3a;
  background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&q=80');
}