/* ===== DATA DRIVEN GLOBAL - Premium Corporate Style ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap'); 

/* ----- CSS Variables ----- */
:root {
  --primary: #003c98;
  --primary-dark: #00153f;
  --gray: #787878;
  --white: #ffffff;
  --light-bg: #f4f7fc;
  --font-primary: 'DM Sans', 'Segoe UI', Arial, sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 60, 152, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 21, 63, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 21, 63, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
}


.logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px; /* ⬆ 17 → 18 */
}

body {
  font-family: var(--font-primary);
  color: #333;
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 60, 152, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 21, 63, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
}

/* ----- Section Titles ----- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ----- Scroll Reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ----- Navbar ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 60, 152, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 21, 63, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}

.nav-logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;    /* links ek hi line mein rahein */
}

.nav-links a {
  padding: 8px 12px;    /* side padding thora kam — space ke liye */
  font-size: 19px; /* ⬆ 18 → 19 */
  font-weight: 500;
  color: #555;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;  /* text andar wrap nahi hoga */
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(0, 60, 152, 0.06);
}

.nav-links a.active {
  font-weight: 600;
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--primary-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- Hero ----- */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero h1 span {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 12px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ----- Stats / Counters ----- */
.stats-section {
  background: var(--light-bg);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

/* ----- About Preview / About Page ----- */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
}

.about-features li i {
  color: var(--primary);
  font-size: 1rem;
  width: 22px;
}

/* ----- Vision Mission ----- */
.vm-section {
  background: var(--light-bg);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.vm-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 60, 152, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--primary);
}

.vm-card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.vm-card p {
  color: var(--gray);
  line-height: 1.8;
}

/* ----- Services Cards ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 60, 152, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card .icon {
  width: 55px;
  height: 55px;
  background: rgba(0, 60, 152, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ----- Coverage / Map Section ----- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.region-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 60, 152, 0.05);
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.region-card .icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.region-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.region-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ----- Industry Cards ----- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 60, 152, 0.05);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.industry-card .icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.industry-card h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ----- Process Cards (QC) ----- */
.process-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.process-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-card h3 i {
  color: var(--primary);
}

.process-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ----- Methodology Timeline ----- */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 60, 152, 0.15);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding: 25px 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 30px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(0, 60, 152, 0.2);
}

.timeline-item h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ----- Founder Section ----- */
.founder-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.founder-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  display: flex;
  max-width: 900px;
  margin: 0 auto;
}

/* LEFT IMAGE */
.founder-avatar {
  width: 45%;
  min-height: 320px;
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT TEXT */
.founder-info {
  width: 55%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-info h3 {
  font-size: 1.8rem;
  color: #0F3D2E;
  margin-bottom: 8px;
}

.founder-info .title {
  color: #C9A14A;
  font-weight: 600;
  margin-bottom: 15px;
}

.founder-info p {
  color: #555;
  line-height: 1.7;
}



@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
  }

  .founder-avatar {
    width: 100%;
    height: 250px;
  }

  .founder-info {
    width: 100%;
    padding: 25px;
  }
}



@media (max-width: 768px) {
  .founder-avatar {
    width: 100%;
    height: auto;
  }

  .founder-avatar img {
    height: auto;
    object-fit: contain;
  }
}


.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----- CTA Section ----- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Contact Form ----- */
.contact-section {
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  background: var(--white);
  padding: 22px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.contact-info-item .icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 60, 152, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 3px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.98rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  padding: 40px 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8ecf1;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: #fafbfc;
  color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 60, 152, 0.08);
}

.form-group textarea {
  height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ----- Footer ----- */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-about .footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-about .footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.footer-about .footer-logo span {
  color: var(--primary);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ----- WhatsApp Floating Button ----- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

/* ----- Methodology Page Specific ----- */
.methodology-section {
  background: var(--white);
}

.methodology-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border: 1px solid rgba(0, 60, 152, 0.05);
  transition: var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.methodology-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.methodology-card .m-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 60, 152, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.methodology-card h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.methodology-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ----- Page Hero / Inner Banner ----- */
.page-hero {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ----- Country Cards ----- */
.country-card {
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  border: 1px solid rgba(0, 60, 152, 0.05);
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.country-card .flag {
  font-size: 1.8rem;
}

.country-card h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html { font-size: 17px; } /* ⬆ 16 → 17 */

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    box-shadow: 0 10px 40px rgba(0, 21, 63, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    border-bottom: 2px solid rgba(0, 60, 152, 0.06);
    
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 0.95rem;
  
    width: 100%;
    border-radius: 8px;
  }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero h1 span { font-size: 1.15rem; }
  .hero p { font-size: 1rem; }

  .section-title { font-size: 1.8rem; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image { min-height: 250px; }
  .about-features { grid-template-columns: 1fr; }

  .vm-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .founder-card { flex-direction: column; }
  .founder-avatar { width: 100%; min-height: 180px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-hero h1 { font-size: 2rem; }

  .coverage-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero h1 span { font-size: 1rem; }
  .section-title { font-size: 1.5rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 2rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}
