.about-section {
  padding: 100px 20px;
  background: #f6f8fb;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.about-card {
  display: flex;
  align-items: center;
  position: relative;
}

/* IMAGE */
.about-img {
  flex: 1;
  z-index: 2;
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CONTENT */
.about-text {
  flex: 1;
  background: #fff;
  padding: 60px;
  border-radius: 16px;
 z-index:3;

  /* 🔥 OVERLAP EFFECT */
  margin-left: -80px;

  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

/* HEADING */
.about-text h2 {
  font-size: 30px;
  font-weight: 400;
  color: #1a2b4c;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

/* TEXT */
.about-text p {
  font-size: 14px;
  color: #5a6a85;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* SUBTLE HOVER (optional but premium) */
.about-card:hover .about-img img {
  transform: scale(1.01);
  transition: 0.3s ease;
}

.about-card:hover .about-text {
  transform: translateY(-2px);
  transition: 0.3s ease;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .about-card {
    flex-direction: column;
  }

  .about-text {
    margin-left: 0;
    margin-top: -60px; /* overlap for mobile */
    padding: 30px;
  }

  .about-img img {
    height: 300px;
  }
}

@media (max-width: 600px) {

  .about-section {
    padding: 85px 15px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 13px;
  }
}


/* mission & vission */
/* SECTION */
.mv-section {
  padding: 40px 20px;
  background: linear-gradient(180deg, #f8f9fb, #eef2f7);
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* WRAPPER */
.mv-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.mv-left {
  flex: 1;
}

.mv-left h2 {
  font-size: 30px;
  font-weight: 400;
  color: #1a2b4c;
  margin-bottom: 15px;
 font-family: 'Playfair Display', serif;
}

.mv-sub {
  font-size: 14px;
  color: #6b7a90;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* TABS */
.mv-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dfe3eb;
  background: #fff;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 30px;
  color: #1a2b4c;
  transition: 0.3s;
}

.tab-btn svg {
  width: 18px;
  height: 18px;
  stroke: #1a2b4c;
  fill: none;
  stroke-width: 2;
}

.tab-btn.active {
  background: #1a2b4c;
  color: #fff;
}

.tab-btn.active svg {
  stroke: #fff;
}

/* CONTENT */
.mv-content {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  list-style: none;
}

.tab-content li {
  font-size: 14px;
  color: #5a6a85;
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 22px;
}

/* custom bullet */
.tab-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #1a2b4c;
  border-radius: 50%;
}

/* RIGHT IMAGE */
.mv-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box {
  width: 100%;
  max-width: 420px;
  height: 300px; /* 🔥 fixed height */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

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

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .mv-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .image-box {
    height: 260px;
  }
}

@media (max-width: 600px) {

  .mv-section {
    padding: 70px 15px;
  }

  .mv-left h2 {
    font-size: 24px;
    text-align: center;
  }

  .mv-sub {
    text-align: center;
  }

  .mv-tabs {
    justify-content: center;
    flex-wrap: wrap; /* 🔥 important */
  }

  .tab-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .mv-content {
    padding: 20px;
  }

}

/* SECTION */
.values-modern {
  padding: 100px 20px;
  background: #f8f9fb;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
}

/* WRAPPER */
.values-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.values-image {
  flex: 1;
}

.values-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* CONTENT */
.values-content {
  flex: 1;
}

.values-content h2 {
  font-size: 30px;
  font-weight: 400;
  color: #1a2b4c;
  margin-bottom: 15px;
 font-family: 'Playfair Display', serif;
}

.sub-text {
  font-size: 14px;
  color: #6b7a90;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* LIST */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ITEM */
.value-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* DOT STYLE (MODERN BULLET) */
.dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #1a2b4c;
  flex-shrink: 0;
}

/* TEXT */
.value-item h4 {
  font-size: 16px;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14px;
  color: #6b7a90;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .values-wrapper {
    flex-direction: column;
  }

  .values-image img {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .values-modern {
    padding: 70px 15px;
  }

  .values-content h2 {
    text-align: center;
  }

  .sub-text {
    text-align: center;
  }
}

/* Stats-SECTION */
.stats-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a2b4c, #0f1c2e);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
 font-family: 'Playfair Display', serif;
}

.section-head p {
  font-size: 14px;
  color: #c7d2e2;
}

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

/* CARD */
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;

  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);

  box-shadow: 0 20px 40px rgba(0,0,0,0.25);

  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* LIGHT GLOW */
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.stat-card:hover::before {
  opacity: 1;
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 15px;

  border-radius: 50%;
  background: rgba(255,255,255,0.12);

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* TEXT */
.stat-card h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 14px;
  color: #c7d2e2;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 30px 20px;
  }
}

/* cta */
/* SECTION */
.cta-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a2b4c, #243a66);
  margin-bottom:20px;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
}

/* BOX */
.cta-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 60px 40px;
  text-align: center;

  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* CONTENT */
.cta-content h2 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
 font-family: 'Playfair Display', serif;
}

.cta-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* BUTTON GROUP */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON BASE */
.btn {
  padding: 12px 26px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  display: inline-block;
}

/* PRIMARY */
.btn.primary {
  background: #fff;
  color: #1a2b4c;
}

.btn.primary:hover {
  background: #e6e9f0;
}

/* SECONDARY */
.btn.secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

  .cta-section {
    padding: 70px 15px;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

}