/* hero section start  */
.about-hero-section {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url("/assets/images/home-slidder-3.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

/* Dark overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  opacity: 0.3;

}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 16px;
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  color: #ffffff;
}

.about-hero-title {
  font-size: clamp(4.2rem, 3vw, 3.5rem);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}

.about-hero-breadcrumb {
  margin: 0;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
}

.about-hero-link,
.about-hero-breadcrumb-text {
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.about-hero-link-home {
  color: #ffc933; /* Yellow Home */
  font-weight: 500;
}

.about-hero-link:hover {
  opacity: 0.8;
}

.about-hero-breadcrumb-separator {
  margin: 0 4px;
  color: #ffffff;
  opacity: 0.8;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
  .about-hero-section {
    min-height: 220px;
  }

  .about-hero-content {
    padding: 30px 16px;
  }
}

@media (min-width: 1200px) {
  .about-hero-section {
    min-height: 300px;
  }
}

/* about hero section end  */

/* about us section start  */
.our-aboutus-about-section {
  padding: 70px 6%;
  background: #ffffff;
}

.our-aboutus-about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* Left Images */
.our-aboutus-about-left {
  flex: 1 1 45%;
  position: relative;
  min-width: 280px;
}

.our-aboutus-about-img-main img {
  width: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: block;
}

.our-aboutus-about-img-secondary {
  position: absolute;
  right: -3%;
  bottom: -8%;
  width: 55%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.our-aboutus-about-img-secondary img {
  width: 100%;
  display: block;
}

/* Right Content */
.our-aboutus-about-right {
  flex: 1 1 45%;
  min-width: 280px;
  color: #222222;
}

.our-aboutus-about-eyebrow {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 6px;
}

.our-aboutus-about-eyebrow-line {
  display: inline-block;
  width: 80px;
  height: 2px;
  background: #ffb321;
  margin-top: 8px;
}

.our-aboutus-about-title {
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.15;
  font-weight: 600;
  margin: 18px 0 12px;
}

.our-aboutus-about-highlight {
  font-size: 1.1rem;
  color: #ffb321;
  font-style: italic;
  margin-bottom: 25px;
}

.our-aboutus-about-text {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #666666;
}

/* Bottom Row */
.our-aboutus-about-bottom-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 28px;
}

/* Play Button */
.our-aboutus-about-play-button {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}

/* Blinking Red Border */
.our-aboutus-about-play-button::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid #ff5b5b;
  animation: our-aboutus-play-ring 1.4s ease-out infinite;
}

@keyframes our-aboutus-play-ring {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.3);
    opacity: 0;
  }
}

.our-aboutus-about-play-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ff5b5b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-aboutus-about-play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
}

/* Signature */
.our-aboutus-about-sign-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222222;
}

.our-aboutus-about-sign-role {
  color: #666666;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Video Popup */
.our-aboutus-about-video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9999;
  padding: 25px;
}

.our-aboutus-video-overlay-visible {
  opacity: 1;
  pointer-events: auto;
}

.our-aboutus-about-video-dialog {
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.our-aboutus-about-video-wrapper {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.our-aboutus-about-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.our-aboutus-about-video-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ff5b5b;
  font-size: 20px;
  color: #ff5b5b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
  .our-aboutus-about-container {
    flex-direction: column;
  }
  .our-aboutus-about-img-secondary {
    right: 0;
    bottom: -16%;
    width: 60%;
  }
}

@media (max-width: 576px) {
  .our-aboutus-about-img-secondary {
    position: static;
    width: 80%;
    margin-top: 18px;
  }
}

/* about us section end  */
/* form section start  */
.our-form-section {
  padding: 60px 5%;
  background: #ffffff;
  box-sizing: border-box;
}

.our-form-section-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

/* ===== LEFT TEXT COLUMN ===== */

.our-form-section-left {
  flex: 0 0 25%;
  min-width: 250px;
}

.our-form-section-left-title-top {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 4px;
}

.our-form-section-left-title-main {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 16px 0 8px;
  line-height: 1.1;
}

/* .our-form-section-left-title-main span {
  display: block;
} */

.our-form-section-left-divider {
  margin-top: 10px;
  width: 120px;
  height: 2px;
  background: #ffb321;
}

.our-form-section-left-text {
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
}

.our-form-section-left-subtitle {
  margin-top: 32px;
  font-size: 1.2rem;
  font-weight: 600;
}

.our-form-section-left-info {
  margin-top: 18px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #333333;
}

.our-form-section-left-info strong {
  display: block;
  margin-bottom: 4px;
}

/* ===== MIDDLE FORM COLUMN ===== */

.our-form-section-middle {
  flex: 0 0 45%;
  min-width: 280px;
  position: relative;
}

.our-form-section-form-bg {
  position: relative;
  padding: 32px 28px 36px;

  /* 🔥 FINAL WORKING IMAGE + YELLOW OVERLAY */
  background: linear-gradient(rgba(255, 193, 7, 0.75), rgba(255, 193, 7, 0.75)),
    url("/assets/images/contact-form-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.our-form-section-form-inner {
  position: relative;
  z-index: 2;
}

.our-form-section-form-heading {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #000000;
}

.our-form-section-form-row-double {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.our-form-section-field-wrapper {
  margin-bottom: 14px;
  width: 100%;
}

.our-form-section-field-label {
  display: none; /* figma me labels nahin dikh rahe, sirf placeholders */
}

.our-form-section-input,
.our-form-section-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 0;
  border: 1px solid #dddddd;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: #ffffff;
}

.our-form-section-input:focus,
.our-form-section-textarea:focus {
  border-color: #333333;
}

.our-form-section-textarea {
  resize: vertical;
  min-height: 140px;
}

.our-form-section-error-text {
  font-size: 0.78rem;
  margin-top: 4px;
  color: #d20000;
  display: none;
}

.our-form-section-input-error {
  border-color: #d20000 !important;
}

.our-form-section-error-text-active {
  display: block;
}

.our-form-section-submit-btn {
  margin-top: 24px;
  width: 100%;
  border: none;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
}

.our-form-section-submit-btn:hover {
  background: #333333;
}

/* ===== RIGHT MAP COLUMN ===== */

.our-form-section-right {
  flex: 0 0 30%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.our-form-section-map-wrapper {
  width: 100%;
  height: 320px;
  border: 1px solid #e0e0e0;
}

.our-form-section-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.our-form-section-follow-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.our-form-section-social-list {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.our-form-section-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffc800;
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.our-form-section-social-icon:hover {
  filter: brightness(0.9);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .our-form-section-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .our-form-section-left,
  .our-form-section-middle,
  .our-form-section-right {
    flex: 1 1 100%;
  }

  .our-form-section-map-wrapper {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .our-form-section {
    padding: 40px 4%;
  }

  .our-form-section-left-title-main {
    font-size: 2.1rem;
  }

  .our-form-section-form-bg {
    padding: 24px 20px 28px;
  }

  .our-form-section-form-heading {
    font-size: 1.4rem;
  }

  .our-form-section-map-wrapper {
    height: 220px;
  }
}

/* form section end  */
.our-form-section-social-icon img{
  width: 35px;
}
.about-hero-content{
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 0px;
  text-align: left;
}
.about-hero-content .about-hero-title {
    font-size: 32px;
    margin: 0 0 0px;
    letter-spacing: 0.03em;
}
.about-hero-breadcrumb {
    margin: 0;
    font-size: 13px;
}
.seo-content{
  display: none !important;
}