/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f5f7fb;
  color: #222;
}

p {
  line-height: 1.8;
}

/* =========================
   ABOUT TOP SECTION
========================= */
.about-top {
  padding: 50px 8%;
  background: linear-gradient(180deg, #f5f7fb, #ffffff);
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: flex-start;
  margin-top: 30px;;
}

/* =========================
   VMG LEFT CARDS
========================= */
.vmg-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vmg-card {
  background: linear-gradient(135deg, #f9a825, #f57f17);
  padding: 30px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 20px 45px rgba(245, 127, 23, 0.35);
  transition: all 0.4s ease;
}

.vmg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(245, 127, 23, 0.45);
}

.vmg-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 600;
}

.vmg-card p {
  font-size: 15px;
  opacity: 0.95;
}

/* =========================
   ABOUT RIGHT TEXT
========================= */
.about-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: #102347;
  margin-bottom: 25px;
  position: relative;
}

.about-text h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #f9a825;
  position: absolute;
  left: 0;
  bottom: -12px;
  border-radius: 3px;
}

.about-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}
/* ===== ABOUT IMAGE FIGURE ===== */
.about-figure{
  margin:20px 0;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
  background:#fff;
}

/* IMAGE AREA ONLY */
.about-image-wrap{
  aspect-ratio:16 / 9;
  overflow:hidden;
}

.about-image-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:#f5f7fb;
}

/* CAPTION */
.about-figure figcaption{
  padding:16px 18px;
  text-align:center;
}

.about-figure figcaption strong{
  display:block;
  font-size:16px;
  color:#102347;
  margin-bottom:4px;
}

.about-figure figcaption span{
  font-size:14px;
  color:#666;
}

/* MOBILE */
@media(max-width:600px){
  .about-image-wrap{
    aspect-ratio:4 / 3;
  }
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  padding: 100px 8%;
  background: #ffffff;
  margin-top: 30px;
}

.services-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  align-items: flex-start;
}

/* Services Text */
.services-text h2 {
  font-size: 36px;
  color: #102347;
  margin-bottom: 20px;
  font-weight: 600;
}

.services-text p {
  font-size: 16px;
  color: #555;
}

/* =========================
   SERVICES CARDS GRID
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #f9a825;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #102347;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #555;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-text h2,
  .services-text h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .about-top,
  .services-section {
    padding: 60px 5%;
  }

  .vmg-card {
    padding: 24px;
  }

  .about-text h2,
  .services-text h2 {
    font-size: 26px;
    text-align: center;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-text p,
  .services-text p,
  .service-card p {
    font-size: 14.5px;
  }

  .service-card {
    padding: 24px;
  }
}
@media(max-width:600px){
  .about-image img{
    height:220px;
  }
}