:root {
  --primary: #0EA5E9;
  --secondary: #F8FAFC;
  --accent: #0F172A;
  --hero-overlay: rgba(15,23,42,0.9);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--accent);
  line-height: 1.7;
}

/* ===== HERO ===== */
.about-hero {
  min-height: 100vh;
  background: url("about-hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#0F172A 0%,rgba(15,23,42,0.8) 60%,rgba(15,23,42,0.3));
}

.hero-content {
  position: relative;
  max-width: 600px;
  margin-left: 80px;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.hero-content p {
  opacity: 0.9;
}

.badge {
  display: inline-block;
  background: rgba(14,165,233,0.2);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* ===== MISSION SECTION ONLY ===== */
.mission-only {
  background: url("mission.png") center/cover no-repeat; /* Background scrolls with text */
  padding: 140px 20px;
  color: #0F172A; /* Default text color */
}

.mission-only .mv-row {
  max-width: 900px;
  margin: auto;
  display: block; /* Only text, no grid needed */
}

.mission-only .mv-text {
  max-width: 500px;
  text-align: left; /* Force left alignment */
}

.mission-only .mv-text .small-title {
  color: var(--primary); /* Blue */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.mission-only .mv-text h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent); /* Black/Dark */
}

.mission-only .mv-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #0F172A; /* Paragraph text dark */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .mission-only .mv-text {
    text-align: left; /* Keep left aligned on tablets */
  }
}

@media (max-width: 576px) {
  .mission-only .mv-text h3 {
    font-size: 28px;
  }

  .mission-only .mv-text p {
    font-size: 15px;
  }
}




/* ===== WHY CHOOSE US ===== */
.why-us-section {
  position: relative;
  padding: 120px 20px;
  background: url("services bg.png") center/cover no-repeat;
  overflow: hidden;
}

.why-us-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.85);
  z-index: 1;
}

.why-us-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

.why-us-section .section-header {
  text-align: center;
  margin-bottom: 70px;
  color: #fff;
}

.why-us-section .section-header .small-title {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.why-us-section .section-header h2 {
  font-size: 36px;
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

.why-us-section .section-header p {
  max-width: 650px;
  margin: auto;
  color: #e0e7ff;
  line-height: 1.7;
}

/* GRID */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.why-us-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px 40px;
  text-align: center;
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 65px rgba(0,0,0,0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,165,233,0.15);
  border-radius: 12px;
  color: var(--primary);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.why-us-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.why-us-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== LEADERSHIP ===== */
.leadership-section {
  padding: 120px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 36px;
  font-family: var(--font-heading);
}

.leader-row {
  max-width: 1100px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.leader-row.reverse {
  grid-template-columns: 1.2fr 1fr;
}


/* ===== LEADER IMAGE WRAPPER ===== */
.leader-image {
  width: 100%;
  height: 420px;              /* 🔥 fixed professional height */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* IMAGE ITSELF */
.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 🔥 image fill karegi without distortion */
  object-position: center;
}
@media (max-width: 900px) {
  .leader-image {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .leader-image {
    height: 300px;
  }
}


.leader-text h3 {
  font-family: var(--font-heading);
  font-size: 24px;
}

.leader-text span {
  color: #64748b;
  display: block;
  margin-bottom: 16px;
}

.leader-text p {
  color: #475569;
  margin-bottom: 14px;
}

/* ===== MOBILE ORDER FIX ===== */
@media (max-width: 900px) {

  .leader-row,
  .leader-row.reverse {
    display: flex;
    flex-direction: column;
  }

  /* TEXT FIRST */
  .leader-text {
    order: 1;
  }

  /* IMAGE AFTER TEXT */
  .leader-image {
    order: 2;
    margin-top: 24px;
  }
}


/* ===== CTA ===== */
.about-cta {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: #fff;

  background:
    linear-gradient(
      rgba(15,23,42,0.85),
      rgba(15,23,42,0.85)
    ),
    url("services bg.png");   /* <-- apni image yahan */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* CTA TEXT FIX */
.about-cta h2,
.about-cta p {
  position: relative;
  z-index: 2;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(14,165,233,0.45);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    margin: 0;
    padding: 0 20px;
    text-align: center;
  }

  .mv-container {
    grid-template-columns: 1fr;
  }

  .leader-row,
  .leader-row.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }
}




