/* ===================================================
   WONTON CONSULTING PVT LTD — GLOBAL STYLESHEET
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #1a3a8c;
  --primary-dark: #0f2460;
  --accent: #2563eb;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  z-index: 201;
  flex-shrink: 0;
}
/* NAVBAR LOGO */
.nav-logo{
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

/* LOGO IMAGE */
.logo-img{
    height: 42px;
    width: auto;
    object-fit: contain;
}

/* LOGO TEXT */
.nav-logo span{
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

/* ACCENT COLOR */
.nav-logo .accent{
    color: #0d6efd; /* change to your brand color */
}

/* HOVER EFFECT */
.nav-logo:hover span{
    opacity: 0.85;
}

/* MOBILE FIX */
@media (max-width:768px){

    .logo-img{
        height:36px;
    }

    .nav-logo span{
        font-size:18px;
    }

}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-logo span.accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-mid); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* --- Hamburger button --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile menu drawer --- */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 199;
  flex-direction: column;
  padding: 24px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--primary); }
.nav-mobile .btn-nav-mobile {
  margin-top: 24px;
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: none;
}
.nav-mobile .btn-nav-mobile:hover { background: var(--primary-dark); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--white); color: var(--primary); border: 2px solid var(--white); }
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.65); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-solid { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-solid:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 60%, #38bdf8 100%);
  padding: 80px 0 72px;
  text-align: center;
  color: var(--white);
}
.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }

/* ===================================================
   SECTION UTILITIES
   =================================================== */
section { padding: 88px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-tag .tag-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.section-tag .tag-icon svg { width: 15px; height: 15px; }
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading span { color: var(--accent); }
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 560px; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-header.center .section-sub { text-align: center; }

/* ===================================================
   CARDS
   =================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ===================================================
   CHECKMARK LISTS
   =================================================== */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.97rem; color: var(--text-mid); }
.check-list li .chk {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: rgba(37,99,235,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--accent);
}
.check-list li .chk svg { width: 12px; height: 12px; }

/* ===================================================
   GRIDS
   =================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }

/* ===================================================
   FOOTER
   =================================================== */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 60px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: flex-end; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-align: right; }

/* ===================================================
   HOME HERO
   =================================================== */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, #2563eb 75%, #38bdf8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.hero-shield {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  font-size: 17rem;
  font-weight: 900;
  color: white;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.hero-watermark {
  position: absolute;
  left: 4%;
  bottom: 14%;
  opacity: 0.06;
  color: white;
  pointer-events: none;
  user-select: none;
}
.hero-watermark .wm-line1 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; }
.hero-watermark .wm-line2 { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-watermark .wm-line3 { font-size: 0.68rem; letter-spacing: 0.1em; }
.hero-content { position: relative; z-index: 2; text-align: center; width: 100%; }
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-content h1 .line-accent { color: #60c5fa; display: block; }
.hero-content .hero-services { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; letter-spacing: 0.02em; line-height: 1.9; }
.hero-content .hero-services span { opacity: 0.4; margin: 0 5px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================
   HOME — SERVICES OVERVIEW
   =================================================== */
.services-overview { background: var(--bg-light); }

/* ===================================================
   HOME — WHY US
   =================================================== */
.why-us { background: var(--white); }
.why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us-right { background: var(--bg-light); border-radius: var(--radius); padding: 48px; text-align: center; border: 1px solid var(--border); }
.why-us-right .company-badge {
  width: 80px; height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.8rem;
  margin: 0 auto 24px;
}
.why-us-right h3 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.why-us-right p { font-size: 1rem; color: var(--text-light); }

/* ===================================================
   HOME — CTA
   =================================================== */
.home-cta { background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%); color: var(--white); text-align: center; padding: 80px 0; }
.home-cta h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
.home-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.home-cta .cta-btns,
.services-cta .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================
   SERVICES PAGE
   =================================================== */
.services-list { background: var(--white); }
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child { border-bottom: none; }
.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }
.service-visual {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--border);
  min-height: 300px;
  text-align: center;
}
.service-icon-lg {
  width: 88px; height: 88px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.service-icon-lg svg { width: 44px; height: 44px; }
.service-visual h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--text-dark); }
.service-visual p { font-size: 0.88rem; color: var(--text-light); }
.service-info .service-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.service-info .service-tag .s-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.service-info .service-tag .s-icon svg { width: 18px; height: 18px; }
.service-info .service-tag span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.service-info h2 { font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.service-info > p { font-size: 0.98rem; color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }
.services-cta { background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%); color: var(--white); text-align: center; padding: 80px 0; }
.services-cta h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
.services-cta p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 6px; }
.services-cta .cta-btns { margin-top: 36px; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-mission { background: var(--bg-light); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mission-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.mission-card .m-icon { width: 50px; height: 50px; background: rgba(37,99,235,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent); }
.mission-card .m-icon svg { width: 26px; height: 26px; }
.mission-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.mission-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }

.about-story { background: var(--white); }
.story-intro { text-align: center; font-size: 1.05rem; color: var(--text-light); margin-bottom: 52px; }
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 40px 1fr; margin-bottom: 48px; align-items: start; }
.timeline-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; padding-right: 32px; }
.timeline-item:nth-child(odd) .tl-dot { grid-column: 2; }
.timeline-item:nth-child(odd) .tl-empty { grid-column: 3; }
.timeline-item:nth-child(even) .tl-empty { grid-column: 1; }
.timeline-item:nth-child(even) .tl-dot { grid-column: 2; }
.timeline-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; padding-left: 32px; }
.tl-dot { display: flex; justify-content: center; padding-top: 4px; }
.tl-dot span { width: 14px; height: 14px; background: var(--accent); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--accent); flex-shrink: 0; margin-top: 4px; }
.tl-content .year { font-size: 0.82rem; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 6px; display: block; }
.tl-content h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.tl-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

.about-team { background: var(--bg-light); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 20px; text-align: center; transition: box-shadow 0.25s, transform 0.25s; }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar { width: 70px; height: 70px; background: #dde7f7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 0 auto 16px; }
.team-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-card p { font-size: 0.82rem; color: var(--text-light); }

.about-stats { background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 24px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-item .stat-number { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-item .stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 500; }

.about-values { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-section { background: var(--bg-light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-left h2 { font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.contact-left h2 span { color: var(--accent); }
.contact-left > p { font-size: 0.98rem; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-quick-card { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.contact-quick-card .cq-icon { width: 38px; height: 38px; background: rgba(37,99,235,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.contact-quick-card .cq-icon svg { width: 18px; height: 18px; }
.contact-quick-card strong { font-size: 0.88rem; color: var(--text-dark); display: block; margin-bottom: 2px; }
.contact-quick-card p { font-size: 0.82rem; color: var(--text-light); }

.contact-info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 72px; }
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 20px; text-align: center; transition: box-shadow 0.25s; }
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-info-card .ci-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent); }
.contact-info-card .ci-icon svg { width: 26px; height: 26px; }
.contact-info-card h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.contact-info-card p { font-size: 0.88rem; color: var(--text-light); }

.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-md); }
.contact-form-wrap h3 { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 700; color: var(--text-dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; }
.form-group label .req { color: var(--accent); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.form-submit .btn-submit { padding: 13px 30px; background: var(--primary); color: var(--white); border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600; transition: all 0.2s; border: none; cursor: pointer; }
.form-submit .btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-note { font-size: 0.78rem; color: var(--text-light); }

/* ===================================================
   RESPONSIVE — TABLET (≤1024px)
   =================================================== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.15); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-item,
  .service-item.reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; padding: 52px 0; }
  .service-item.reverse > * { direction: ltr; }
  .service-visual { min-height: auto; }
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤768px)
   =================================================== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 18px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  /* Hero */
  .hero { min-height: auto; padding: 64px 0 60px; }
  .hero-shield, .hero-watermark { display: none; }
  .hero-content h1 { font-size: clamp(1.9rem, 9vw, 3rem); }
  .hero-content .hero-services { font-size: 0.83rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }

  /* Grids */
  .grid-3, .grid-2, .mission-grid, .values-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; }
  .footer-bottom p { text-align: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 10px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Contact */
  .contact-info-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-submit { flex-direction: column; align-items: flex-start; }
  .form-submit .btn-submit { width: 100%; text-align: center; }

  /* Page hero */
  .page-hero { padding: 56px 0 48px; }

  /* Timeline */
  .timeline::before { left: 18px; transform: none; }
  .timeline-item { grid-template-columns: 36px 1fr; }
  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content { grid-column: 2; grid-row: 1; text-align: left; padding-left: 20px; padding-right: 0; }
  .timeline-item:nth-child(odd) .tl-dot,
  .timeline-item:nth-child(even) .tl-dot { grid-column: 1; grid-row: 1; justify-content: flex-start; padding-left: 12px; }
  .timeline-item .tl-empty { display: none; }

  /* Services */
  .service-item, .service-item.reverse { padding: 40px 0; gap: 28px; }
  .service-icon-lg { width: 72px; height: 72px; border-radius: 16px; }
  .service-icon-lg svg { width: 36px; height: 36px; }

  /* CTA btns */
  .home-cta .cta-btns, .services-cta .cta-btns { flex-direction: column; align-items: center; }
  .home-cta .cta-btns .btn, .services-cta .cta-btns .btn { width: 100%; max-width: 280px; }

  .why-us-right { padding: 32px 24px; }
}

/* ===================================================
   RESPONSIVE — SMALL (≤480px)
   =================================================== */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item .stat-number { font-size: 1.9rem; }
  .card { padding: 22px; }
  .contact-form-wrap { padding: 20px 14px; }
  .mission-card { padding: 24px; }
  .hero-content h1 { font-size: 1.75rem; }
}

/*==========Industry we serve=========*/
   /* ===================================================
       SECTION UTILITIES (matching site)
    =================================================== */
    section { padding: 88px 0; }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-tag .tag-icon {
      width: 30px; height: 30px;
      border-radius: 6px;
      background: rgba(37,99,235,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }
    .section-tag .tag-icon svg { width: 15px; height: 15px; }
    .section-heading {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-heading span { color: var(--accent); }
    .section-sub { font-size: 1rem; color: var(--text-light); max-width: 560px; }
    .section-header { margin-bottom: 52px; }
    .section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .section-header.center .section-sub { text-align: center; }

    /* ===================================================
       INDUSTRIES SECTION
    =================================================== */
    .industries {
      background: var(--bg-light);
      position: relative;
      overflow: hidden;
    }

    /* Subtle background pattern */
    .industries::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -80px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .industries::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -80px;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26,58,140,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Industry cards grid */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 52px;
    }

    .industry-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .industry-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      opacity: 0;
      transition: opacity 0.25s;
    }
    .industry-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: rgba(37,99,235,0.2);
    }
    .industry-card:hover::before { opacity: 1; }

    .industry-icon {
      width: 52px; height: 52px;
      background: rgba(37,99,235,0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--accent);
      flex-shrink: 0;
      transition: background 0.25s;
    }
    .industry-card:hover .industry-icon {
      background: rgba(37,99,235,0.14);
    }
    .industry-icon svg { width: 26px; height: 26px; }

    .industry-card h3 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .industry-card p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
      flex: 1;
    }

    .industry-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.05em;
      margin-top: 18px;
      text-transform: uppercase;
    }
    .industry-tag svg {
      width: 11px; height: 11px;
      transition: transform 0.2s;
    }
    .industry-card:hover .industry-tag svg { transform: translateX(3px); }

    /* Bottom stat strip */
    .industries-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .ind-stat {
      padding: 28px 24px;
      text-align: center;
      border-right: 1px solid var(--border);
      transition: background 0.2s;
    }
    .ind-stat:last-child { border-right: none; }
    .ind-stat:hover { background: var(--bg-light); }
    .ind-stat .ind-stat-num {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 6px;
    }
    .ind-stat .ind-stat-label {
      font-size: 0.83rem;
      color: var(--text-light);
      font-weight: 500;
    }

    /* ===================================================
       RESPONSIVE
    =================================================== */
    @media (max-width: 1024px) {
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .industries-stats { grid-template-columns: repeat(2, 1fr); }
      .ind-stat:nth-child(2) { border-right: none; }
      .ind-stat:nth-child(3) { border-top: 1px solid var(--border); }
      .ind-stat:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
    }

    @media (max-width: 768px) {
      section { padding: 56px 0; }
      .container { padding: 0 18px; }
      .section-header { margin-bottom: 36px; }
      .industries-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .industry-card { padding: 22px 18px; }
      .industry-icon { width: 44px; height: 44px; margin-bottom: 14px; }
      .industry-icon svg { width: 22px; height: 22px; }
      .industry-card h3 { font-size: 0.97rem; }
      .industries-stats { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
      .container { padding: 0 14px; }
      .industries-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .industry-card { padding: 18px 14px; }
      .ind-stat .ind-stat-num { font-size: 1.6rem; }
      .ind-stat { padding: 20px 12px; }
    }

    /*======================= OUR Process section=============*/
       /* ===================================================
       1. CLIENT LOGOS STRIP
    =================================================== */
    .clients-strip {
      background: var(--white);
      padding: 56px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .clients-strip-header {
      text-align: center;
      margin-bottom: 36px;
    }
    .clients-strip-header p {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-light);
    }

    /* Infinite scroll track */
    .logos-track-wrap {
      position: relative;
      overflow: hidden;
    }
    /* Fade edges */
    .logos-track-wrap::before,
    .logos-track-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    .logos-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--white) 0%, transparent 100%);
    }
    .logos-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--white) 0%, transparent 100%);
    }

    .logos-track {
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: scroll-logos 32s linear infinite;
    }
    .logos-track:hover { animation-play-state: paused; }

    @keyframes scroll-logos {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 40px;
      height: 64px;
      flex-shrink: 0;
      border-right: 1px solid var(--border);
      transition: opacity 0.2s;
      opacity: 0.55;
    }
    .logo-item:hover { opacity: 1; }

    /* Text-based logo placeholders — replace with <img> tags */
    .logo-item .logo-text {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-mid);
      white-space: nowrap;
      letter-spacing: 0.02em;
    }
    .logo-item .logo-text span {
      color: var(--accent);
    }

    /* ===================================================
       2. HOW WE WORK — PROCESS
    =================================================== */
    .how-we-work {
      background: var(--bg-light);
      position: relative;
      overflow: hidden;
    }

    .how-we-work::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Steps grid */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-bottom: 56px;
    }

    /* Connector line through centres */
    .process-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(12.5% + 4px);
      right: calc(12.5% + 4px);
      height: 2px;
      background: linear-gradient(90deg, var(--accent) 0%, rgba(37,99,235,0.15) 100%);
      z-index: 0;
    }

    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    /* Step number circle */
    .step-num {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      position: relative;
      transition: border-color 0.3s, box-shadow 0.3s;
      flex-shrink: 0;
    }
    .step-num .step-inner {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: rgba(37,99,235,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      transition: background 0.3s;
    }
    .step-num .step-inner svg { width: 24px; height: 24px; }

    /* Active/first step highlighted */
    .process-step:first-child .step-num {
      border-color: var(--accent);
      box-shadow: 0 0 0 6px rgba(37,99,235,0.08);
    }
    .process-step:first-child .step-inner {
      background: var(--accent);
      color: var(--white);
    }

    .process-step:hover .step-num {
      border-color: var(--accent);
      box-shadow: 0 0 0 6px rgba(37,99,235,0.08);
    }
    .process-step:hover .step-inner {
      background: var(--accent);
      color: var(--white);
    }

    /* Step number badge */
    .step-badge {
      position: absolute;
      top: -6px; right: -6px;
      width: 22px; height: 22px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--white);
      border: 2px solid var(--bg-light);
    }

    .process-step h4 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .process-step p {
      font-size: 0.87rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* Bottom outcome strip */
    .process-outcome {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: var(--radius);
      padding: 36px 48px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 32px;
    }
    .process-outcome-text h4 {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .process-outcome-text p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.8);
    }
    .process-outcome-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      background: var(--white);
      color: var(--primary);
      border-radius: var(--radius-sm);
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.2s;
      flex-shrink: 0;
    }
    .process-outcome-cta:hover {
      background: rgba(255,255,255,0.9);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .process-outcome-cta svg { width: 16px; height: 16px; }

    /* ===================================================
       RESPONSIVE
    =================================================== */
    @media (max-width: 1024px) {
      .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
      }
      .process-steps::before { display: none; }
      .process-outcome { grid-template-columns: 1fr; gap: 20px; text-align: center; }
      .process-outcome-cta { align-self: center; }
    }

    @media (max-width: 768px) {
      section { padding: 56px 0; }
      .container { padding: 0 18px; }
      .section-header { margin-bottom: 36px; }

      .clients-strip { padding: 40px 0; }
      .logos-track-wrap::before,
      .logos-track-wrap::after { width: 60px; }
      .logo-item { padding: 0 28px; }

      .process-steps { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
      .step-num { width: 60px; height: 60px; }
      .step-num .step-inner { width: 44px; height: 44px; }
      .process-step h4 { font-size: 0.97rem; }
      .process-outcome { padding: 28px 24px; }
      .process-outcome-text h4 { font-size: 1.1rem; }
    }

    @media (max-width: 480px) {
      .container { padding: 0 14px; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
      .process-step { padding: 0 8px; }
      .process-outcome-cta { width: 100%; justify-content: center; }
    }