/* 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: 38px;
  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;
  }
  .about-hero-title {
    font-size: 38px;
  }
}

@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;
  height: 500px;
}

.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: 32px;
  line-height: 1.15;
  font-weight: 600;
  margin: 18px 0 12px;
}

.our-aboutus-about-highlight {
  font-size: 1.1rem;
  color: #c58b1c;
  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%;
  }
  .our-aboutus-about-left {
    display: none;
  }
}

@media (max-width: 576px) {
  .our-aboutus-about-img-secondary {
    position: static;
    width: 80%;
    margin-top: 18px;
  }
  .our-aboutus-about-left {
    display: none;
  }
}

/* about us section end  */

/* our career section start  */
.our-career-explore-section {
  position: relative;
  padding: 30px 7% 0px;
  min-height: 160px;
  background-image: url("/assets/images/fixed-chef-section.jpeg");
  /* <- BG IMAGE PATH */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: visible; /* taaki image upar aa sake */
  background-attachment: fixed;
  margin-top: 50px;
}

.our-career-explore-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ---------- LEFT GIRL PHOTO ---------- */

.our-career-explore-photo {
  position: absolute;
  left: 5%;
  bottom: 0;
  z-index: 2;
}

.our-career-explore-photo img {
  height: 480px; /* girl image thoda bada rakha */
  width: auto;
  display: block;
}

/* ---------- RIGHT TEXT CONTENT ---------- */

.our-career-explore-text-box {
  max-width: 620px;
  margin-left: auto;
  padding-bottom: 20px; /* text right side */
}

.our-career-explore-kicker {
  font-size: 2.1rem;
  font-weight: 500;
  margin: 0 0 6px;
}

.our-career-explore-kicker-line {
  display: inline-block;
  width: 80px;
  height: 3px;
  background-color: #ffc933;
  margin-top: 8px;
}

.our-career-explore-heading {
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  line-height: 1.15;
  font-weight: 600;
  margin: 26px 0 18px;
  color: #ffc933;
}

.our-career-explore-text {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 550px;
}

/* ---------- BUTTON ---------- */

.our-career-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 2px;
  background-color: #ffc41f;
  color: #222222;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.our-career-explore-btn:hover {
  background-color: #ffb800;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* ================== RESPONSIVE ================== */

@media (max-width: 992px) {
  .our-career-explore-section {
    padding: 10px 6% 0px;
    min-height: 360px;
  }

  .our-career-explore-photo img {
    height: 380px;
  }

  .our-career-explore-text-box {
    max-width: 540px;
  }
}

@media (max-width: 768px) {
  .our-career-explore-section {
    padding: 10px 6% 0px;
  }

  /* Mobile pe photo ko normal flow me laa dete hain */
  .our-career-explore-photo {
    position: static;
    margin: 0 auto 24px;
    text-align: center;
  }

  .our-career-explore-photo img {
    height: auto;
    max-height: 340px;
    max-width: 70%;
  }

  .our-career-explore-text-box {
    margin-left: 0;
    text-align: center;
  }

  .our-career-explore-text {
    margin-left: auto;
    margin-right: auto;
  }

  .our-career-explore-kicker-line {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .our-career-explore-section {
    padding: 10px 5% 0px;
  }

  .our-career-explore-photo img {
    max-width: 80%;
  }

  .our-career-explore-heading {
    font-size: 1.9rem;
  }

  .our-career-explore-btn {
    width: 100%;
    justify-content: center;
  }
}

/* our career section end  */
.our-aboutus-about-img-secondary {
    position: absolute;
    right: -5%;
    width: 58%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0);
}
.our-aboutus-about-img-main img {
    width: 100%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    display: block;
    height: auto;
}

.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;
}