body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.about-section {
  background-color: #ffffff;
  padding: 120px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.container {
  max-width: 1200px;
}

.sub-heading {
  color: #d4a840;
  font-weight: 700;
  letter-spacing: 2px;
  border-bottom: 2px solid #d4a840;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
}

.main-heading {
  font-size: 47px;
  color: #000000;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.highlight {
  color: #d4a840;
}

.content-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.feature-item {
  padding: 20px;
}

.icon-box {
  margin-bottom: 15px;
}

.icon-box img {
  width: 50px;
  height: 50px;
}

.feature-item h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}



/* ==============================
   ABOUT US SECTION
============================== */

.about-section {
  padding: 80px 8%;
  background: #ffffff;
}

.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.about-content {
  flex: 1;
  min-width: 320px;
}

.section-tag {
  color: #e30613;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.about-content h2 {
  font-size: 42px;
  margin: 15px 0;
  line-height: 1.3;
  color: #111;
}

.about-content h2 span {
  color: #d4a840;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.signature {
  margin-top: 20px;
  font-size: 17px;
  color: #000;
}

/* IMAGE SECTION */
.about-image {
  position: relative;
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: #d4a840;
  color: #fff;
  padding: 18px 22px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

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

  .main-heading {
    font-size: 32px;
  }
  .about-section {
    padding: 80px 10px;
  }
}