.about-hero {
  position: relative;
  width: 100%;
  height: 420px;

  /* 🔥 IMPORTANT */
  background-image: url("../images/About\ Us\ BG.png"); /* apni image ka correct path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.breadcrumb span {
  margin: 0 6px;
  opacity: 0.8;
}

.about-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin: 0;
  font-family: "Georgia", serif;
}
.about-section {
  padding: 100px 0;
  background: #fff;
}

/* MAIN WRAPPER */
.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* LEFT */
.about-left {
  width: 50%;
}

.about-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.decor-line {
  width: 25px;
  height: 1px;
  background: #d2a679;
}

.about-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #d2a679;
}

.about-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: #3d3d4f;
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-left p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #7a7a7a;
  max-width: 520px;
  margin-bottom: 40px;
}

/* PROGRESS */
.progress-item {
  margin-bottom: 30px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #3d3d4f;
  margin-bottom: 8px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #eee;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0; 
  background: linear-gradient(90deg, #caa56a, #e3c48b);
  transition: width 1.5s ease-in-out;
}

/* BOTTOM */
.about-bottom {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-top: 45px;
}

.call-box span {
  font-size: 14px;
  color: #7a7a7a;
  white-space: nowrap;
}

.call-box strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #3d3d4f;
}

/* OWNER */
.owner-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.owner-img {
  width: 72px;
  height: 72px;
  padding: 4px;
  border-radius: 50%;
  border: 2px dashed #d2a679;
}

.owner-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.owner-name {
  font-family: 'Allura', cursive;
  font-size: 36px;
  color: #d2a679;
  margin: 0;
}

/* RIGHT IMAGE */
.about-right {
  width: 50%;
  display: flex;
  align-items: stretch;
  gap: 25px;
}

.golden-divider {
  width: 3px;
  background: #d2a679;
}

.about-right img {
  width: 420px;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-right {
    flex-direction: column;
    align-items: center;
  }

  .golden-divider {
    width: 60px;
    height: 3px;
  }

  .about-right img {
    width: 100%;
  }
}
.owner-name {
  font-family: 'Allura', cursive;
  font-size: 40px;
  font-weight: 400;
  color: #d2a679;
  line-height: 1;
  white-space: nowrap;
}
.about-image {
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.about-image img {
  width: 420px;
  display: block;
}

/* GLASS OVERLAY */
.glass-overlay {
  position: absolute;
  top: -50%;
  left: -75%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(20deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

/* HOVER EFFECT */
.hover-glass:hover .glass-overlay {
  left: 130%;
}
/* INITIAL STATE */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 0.15s;
}

/* WHEN VISIBLE */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-step {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.8s ease;
}

.fade-step.show {
  opacity: 1;
  transform: translateY(0);
}

/* Progress bars start empty */
.progress-fill {
  width: 0;
  transition: width 1.4s ease;
}
.testimonials-section {
  position: relative;
  padding: 120px 0 100px;
  background: #fff; 
  overflow: hidden;
}
/* TOP HALF BACKGROUND */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%; /* 👈 top color height */
  background: #faf6f1; /* exact cream tone */
  z-index: 0;
}
.testimonials-section > * {
  position: relative;
  z-index: 1;
}
.testimonials-header {
  text-align: center;
  max-width: 700px;   
  margin: 0 auto 70px;
}

.decor-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.decor-title span {
  width: 25px;
  height: 1px;
  background: #d2a679;
}

.decor-title p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #d2a679;
  margin: 0;
}

.testimonials-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;       
  color: #3d3d4f;
  margin-top: 15px;
  line-height: 1.2;
}

/* SLIDER */
.testimonial-slider {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 40px;
  transition: transform 0.8s ease;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 50px 40px;
  width: 360px;
  flex-shrink: 0;
  text-align: left;
  border: 1px solid #eee;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 30px;
}

.testimonial-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.9;
  margin-bottom: 25px;
}

.testimonial-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #3d3d4f;
  margin-bottom: 5px;
}

.testimonial-card span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #d2a679;
}

/* ACTIVE CARD LINE */
.testimonial-card.active {
  border-bottom: 4px solid #d2a679;
}
.testimonial-track {
  display: flex;
  gap: 40px;
  transition: transform 0.8s ease;
  will-change: transform;
}
.video-section {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* VIDEO BACKGROUND */
.video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* DARK OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(48, 48, 65, 0.75);
  z-index: 1;
}

/* TEXT */
.video-section h2 {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #fff;
  line-height: 1.3;
  max-width: 800px;
  margin: 0;
}
