

/* ====== HERO SECTION ====== */
.about-hero-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-section .hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  z-index: 0;
}

.about-hero-section .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 90%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.about-hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.about-hero-section .hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  font-family: 'Poppins',sans-serif;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
}

.about-hero-section .hero-subheading {
  font-size: 18px;
  font-weight: 300;
  font-family: 'Robot',sans-serif;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

/* ====== ABOUT CONTENT SECTION ====== */
.about-content-section {
  background: #fff;
  padding: 100px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1F1709;
  font-family: 'Poppins',sans-serif;
  margin-bottom: 20px;
    position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;          /* underline ki width */
  height: 4px;           /* underline ki height */
  background: #B88F44;   /* underline ka color */
  margin-top: 8px;       /* heading se gap */
  border-radius: 10px;   /* thoda rounded */
}

.section-text {
  color: #555;
  font-size: 18px;
  font-family: 'Robot',sans-serif;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.about-btn {
  display: inline-block;
  background: #000;
  font-family: 'Robot',sans-serif;
  font-size: 16px;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(184, 143, 68, 0.4);
}

.about-btn:hover {
  background: #B88F44;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-hero-section {
    height: 50vh;
  }
  .about-hero-section .hero-content h1 {
    font-size: 36px;
  }
  .about-hero-section .hero-subheading {
    font-size: 16px;
  }
  .about-content-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

