* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.parent-navbar {
  margin: 1rem 0 !important;
}

.site-logo {
  height: 80px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.li-btn {
  border: none;
  margin-left: 20px;
}

/* Default Desktop View */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 300px;
}

.nav-ul {
  display: flex;
  gap: 3.5rem;
  list-style: none;
  align-items: center;
}

.nav-ul li {
  font-weight: 600;
  color: #222222;
  transition: all ease-in-out 0.3s;
}
.nav-ul li:hover {
  -webkit-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  transform: translate(0, -1px);
}

.nav-btn a {
  text-decoration: none;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  width: 28px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #18284a;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger .ham-middle {
  width: 75%;
}

/* ===== Mobile View ===== */
@media (max-width: 850px) {
  .site-logo {
    height: 70px;
  }

  .hamburger {
    display: flex;
  }

  .nav-ul {
    align-items: flex-start;
  }

  .li-btn {
    margin-left: 0;
    margin-top: 0.3rem;
  }

  /* Hide desktop nav initially */
  .nav-menu {
    position: absolute;
    top: 4.2rem;
    right: -120%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 20px 70px 20px;
    transition: right 0.4s ease;
    background: #f7f6efb0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
    z-index: 999;
    position: absolute;
    top: 4.2rem;
  }

  /* open state */
  .nav-menu.active {
    right: 0;
  }

  .nav-ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .nav-ul li {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 0;
  }

  .nav-btn {
    display: inline-block;
    text-align: center;
  }

  /* Hamburger animation */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }
}

/* hero section  */

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-right {
  max-width: 580px;
}

.hero-dash-component-img {
  opacity: 0.4;
  position: absolute;
  z-index: -9999;
}

.hero-round-bg {
  background-image: url("./images/hero-bg-round-border.svg");
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.hero-girl-img {
  height: 75vh;
}

.hero-img-comp-1,
.hero-img-comp-2,
.hero-img-comp-3 {
  opacity: 0.6;
}

.hero-img-comp-1 {
  position: relative;
  left: 0;
  top: 4rem;
}

.hero-img-comp-2 {
  position: relative;
  bottom: 8rem;
  left: 2rem;
}
.hero-img-comp-3 {
  position: relative;
  left: -3rem;
  bottom: 4rem;
}

.hero-title {
  font-size: 70px !important;
  line-height: 1.1;
  font-weight: 900;
  text-transform: capitalize;
  color: var(--heading);
  padding-top: 3.5rem;
}
.hero-short-para {
  font-size: 22px;
  line-height: 1.6;
  color: rgba(46, 46, 46, 0.82);
  margin-top: 1rem;
}

.hero-right-bottom {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
}
.hero-right-bottom:hover {
  cursor: pointer;
}

.play-btn-container {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.play-icon-wrapper {
  padding: 1.1rem;
  background-color: white;
  box-shadow: 0 3px 5px -2px rgba(251, 111, 78, 0.39);
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: all ease-in-out 0.3s;
}
.play-icon-wrapper:hover {
  box-shadow: 0 15px 30px -10px rgba(251, 111, 78, 0.4);
  transform: scale(1.1);
}

.play-icon-text {
  color: #18284a;
  font-weight: 600;
  display: block;
}

/* ===== VIDEO POPUP SYSTEM ===== */
.video-ctrl {
  display: none; /* hidden by default */
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 99999 !important;
  border-radius: 12px;

  width: 90%;
  max-width: 900px;
  height: 55vh;
  max-height: 500px;

  max-width: 85%;
}

/* Dark overlay behind video */
.video-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99998;
  backdrop-filter: blur(3px);
}

/* Close Button */
.video-close-btn {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 45px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 100000;
  transition: 0.2s;
}

.video-close-btn:hover {
  transform: scale(1.1);
}

/* Our Misison Section Starts Here  */
/* Our Misison Section Starts Here  */

.mission-section {
  padding: 6rem 0 !important;
}

.mission-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

/* LEFT SIDE */
.mission-left {
  width: 50%;
}

.mission-small-heading {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid #df7258;
  padding-bottom: 4px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--heading);
}

.mission-title {
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

.mission-text {
  max-width: 520px;
  margin-top: 1rem;
}

/* RIGHT SIDE IMAGE */
.mission-right {
  width: 50%;
}

.mission-img-box {
  border-radius: 20px;
  box-shadow: rgb(249, 219, 207) 9px 9px 0px 0px;
}

.mission-img-box img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Yoga Instructor Start Here  */
/* Yoga Instructor Start Here  */

.yoga-instructor-section {
  padding: 7rem 0;
  background: #ffffff;
}

.yoga-instructor-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.yoga-instructor-left {
  width: 50%;
}

.yoga-instructor-img-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 10px 10px 0px #f7d6c8;
}

.yoga-instructor-img-box img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* RIGHT CONTENT */
.yoga-instructor-right {
  width: 50%;
}

.yoga-instructor-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #18284a;
  margin-bottom: 1.3rem;
  text-transform: capitalize;
}

.yoga-instructor-text {
  color: rgba(46, 46, 46, 0.82);
  font-size: 18px;
  line-height: 1.6rem;
  margin-bottom: 1.2rem;
}

.yoga-instructor-author {
  text-align: right;
  font-weight: 700;
  margin-top: 2rem;
  color: #18284a;
}

/* Classes Seciton Starts Here  */
/* Classes Seciton Starts Here  */

/* media queries  */
@media (min-width: 1px) and (max-width: 500px) {
  .hero-wrapper {
    flex-direction: column;
  }
  .hero-title {
    font-size: 46px !important;
  }
  .hero-short-para {
    font-size: 18px;
  }
  .hero-girl-img {
    height: 50vh;
  }
  .hero-img-comp-1 {
    position: relative;
    margin-top: -3rem;
    margin-left: -2.5rem;
    height: 40px;
  }

  .hero-img-comp-2,
  .hero-img-comp-3 {
    height: 40px;
  }

  .play-icon-text {
    display: none;
  }
  .hero-bottom-btn {
    font-size: 15px !important;
  }
  .hero-right-bottom {
    margin-top: 2.5rem;
    gap: 2.2rem;
  }
  .play-icon-wrapper {
    padding: 0.8rem !important;
  }

  .hero-left {
    margin-top: 3rem !important;
  }
  .hero-img-comp-3 {
    right: -3rem;
  }
  .hero-img-comp-2 {
    left: 1.2rem;
  }

  /* About Section Starts here  */
  /* About Section Starts here  */

  .about-parent-section {
    padding: 4rem 0 !important;
  }
  .about-wrapper {
    flex-direction: column-reverse !important;
  }
  .about-img {
    height: 350px !important;
  }
  .about-left {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-learn-more {
    padding-left: 2px;
  }

  .primary-btn {
    width: fit-content;
  }

  /* Mission Section Starts Here  */
  /* Mission Section Starts Here  */

  .mission-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .mission-left,
  .mission-right {
    width: 100%;
  }

  .mission-title {
    font-size: 32px !important;
    line-height: 1.3;
  }

  .mission-text {
    max-width: 100%;
  }

  .mission-img-box {
    padding: 0.7rem;
    border-radius: 18px;
  }

  .mission-section {
    padding: 0 0 5rem 0 !important;
  }

  /* Yoga Instructor Section Start  */
  /* Yoga Instructor Section Start  */

  .yoga-instructor-wrapper {
    flex-direction: column-reverse;
  }

  .yoga-instructor-left,
  .yoga-instructor-right {
    width: 100%;
  }

  .yoga-instructor-title {
    font-size: 34px;
  }

  .yoga-instructor-img-box {
    padding: 0.7rem;
    border-radius: 16px;
  }

  .yoga-instructor-author {
    text-align: left;
    margin-top: 1rem;
  }
  .yoga-instructor-text {
    font-size: 16px !important;
  }

  .yoga-instructor-section {
    padding: 5rem 0 !important;
  }
}

@media (min-width: 501px) and (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
  }
  .hero-title {
    font-size: 50px !important;
  }
  .hero-right {
    position: relative;
    /* left: -4rem; */
  }
  .hero-left {
    margin-top: 4rem !important;
  }
  .hero-girl-img {
    height: 70vh;
  }

  /* Mission Section Starts here  */
  /* Mission Section Starts here  */

  .mission-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .mission-left,
  .mission-right {
    width: 100%;
  }

  .mission-title {
    font-size: 36px !important;
  }

  .mission-img-box {
    padding: 0.8rem;
  }

  /* Yoga Instructor Section Start  */
  /* Yoga Instructor Section Start  */

  .yoga-instructor-wrapper {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .yoga-instructor-left,
  .yoga-instructor-right {
    width: 100%;
  }

  .yoga-instructor-title {
    font-size: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 60px !important;
  }
  .hero-short-para {
    font-size: 20px !important;
  }
  .hero-girl-img {
    height: 65vh;
  }
  .hero-img-comp-2 {
    display: none;
  }

  /* Mission Section Starts Here  */
  /* Mission Section Starts Here  */

  .mission-wrapper {
    gap: 2.5rem;
  }

  .mission-left,
  .mission-right {
    width: 50%;
  }

  .mission-title {
    font-size: 42px !important;
  }

  /* Yoga Instructor Section Start  */
  /* Yoga Instructor Section Start  */
  .yoga-instructor-wrapper {
    gap: 2rem;
  }

  .yoga-instructor-title {
    font-size: 44px;
  }
}

/* about section starts here  */
/* =============================
   ABOUT SECTION
============================= */

.about-parent-section {
  padding: 6rem 0 !important;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

/* LEFT IMAGES GRID */
.about-left {
  width: 50%;
  /* display: grid; */
  /* grid-template-columns: repeat(2, 1fr); */
  /* grid-template-rows: auto auto; */
  gap: 1.8rem;
  position: relative;
}

.about-img {
  background-image: url("./images/mission-img.jpg");
  height: 580px;
  width: auto;
  background-repeat: no-repeat;
  background-size: contain;
}

/* RIGHT SIDE CONTENT */
.about-right {
  width: 50%;
}

.about-small-heading {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid #df7258;
  padding-bottom: 4px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--heading);
}

.about-title {
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

.about-text {
  margin-top: 1rem;
  max-width: 530px;
}

/* BUTTONS */
.about-btns {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.about-learn-more {
  font-size: 16px;
  font-weight: 600;
  color: #fb6f4e;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: 0.2s;
}

.about-learn-more:hover {
  opacity: 0.7;
}

/* About section Sepcial Query  */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-text {
    max-width: 100%;
  }
}

.yoga-classes-parent {
  /* height: 100vh; */
  padding: 3rem 0 !important;
}


/* ===============================
   PROGRAMS SECTION
================================ */

.programs-section {
  padding: 6rem 0 !important;
  text-align: center;
}

.programs-small-heading {
  font-size: 16 px;
  font-weight: 700;
  border-bottom: 2px solid #fb6f4e;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 27px;
  color: #18284a;
}

.programs-main-title {
  font-size: 44px;
  font-weight: 800;
  color: #18284a;
  margin-bottom: 1rem;
}

.programs-desc {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(46, 46, 46, 0.82);
  font-size: 17px;
  line-height: 1.7rem;
  margin-bottom: 3.5rem;
}










/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Mobile: max 500px */
@media (max-width: 500px) {
  .programs-main-title {
    font-size: 32px;
  }

  .programs-wrapper {
    grid-template-columns: 1fr;
  }

  .program-card {
    padding: 1.6rem;
  }
  .programs-desc {
    text-align: left !important;
  }
  .programs-section {
    text-align: left;
    padding: 6rem 0.5rem !important;
  }
}

/* Tablet Small: 501px – 768px */
@media (min-width: 501px) and (max-width: 768px) {
  .programs-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-card {
    padding: 1.8rem;
  }
}















/* Program Sections Ends Here  */
/* Program Sections Ends Here  */


/* /* FAQs Sections Starts Here  */
.faq-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-tag {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #334;
  font-weight: 600;
  border-bottom: 2px solid #ff8e72;
  padding-bottom: 4px;
  margin-bottom: 10px;
  display: inline-block;
}
.faq-head {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}
.faq-head img {
  height: 40px;
}

.faq-title {
  font-size: 36px;
  margin: 10px 0;
  color: #1e2945;
}

.faq-subtitle a {
  color: #ff8e72;
  text-decoration: none;
}

/* Responsive Font Tweak */
@media (max-width: 600px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-head {
    gap: 0.5rem !important;
  }
  .faq-head img {
    height: 35px;
  }

  .faq-title {
    font-size: 36px;
    margin: 10px 0;
    color: #1e2945;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}

/* ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 7px 7px 0 0 #ffe8df;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  /* width: 80%; */
}

.faq-item.active {
  border-color: #22c55e;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  cursor: pointer;
  color: #1e2945;
  font-weight: 600;
  letter-spacing: 1px;
}

.faq-icon-left {
  margin-right: 10px;
  font-size: 22px;
}

.faq-arrow {
  font-size: 20px;
  color: #f3765c;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px 20px;
}

.faq-answer p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 28px;
    line-height: 1.05;
  }

  .faq-question {
    font-size: 16px;
  }
}

.faq-parent-container {
  background-image:
    linear-gradient(#f7e9df 1px, transparent 1px),
    linear-gradient(to right, #f7ece2 1px, transparent 1px);
  background-size: 50px 50px;
  padding: 6rem 0;
}

/* Faq Section Ends Here  */

/* Testimonials Section Starts Here */
/* Testimonials Section Starts Here */

.testimonial-parent-wrapper {
  margin: 6rem 0;
}

.testimonials-section {
  padding: 40px 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* max-width: 1350px; 
  margin: 0 auto;  */
}

.testimonials-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Both rows share same style */
.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* ROW 1 → moves right → left */
.row-1 {
  animation: slide-left 60s linear infinite;
}

/* ROW 2 → moves left → right */
.row-2 {
  animation: slide-right 60s linear infinite;
}

/* Pause animation on hover */
.testimonials-track:hover {
  animation-play-state: paused;
}

/* CARD STYLE */
.testimonial-card {
  /* min-width: 240px; */
  /* max-width: 240px; */
  /* background: #ffffff; */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #18284a75;
}

/* IMAGE */
.testimonial-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* KEYFRAMES */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .testimonial-card {
    /* min-width: 180px; */
    max-width: 180px;
  }

  .testimonial-img {
    height: 180px;
  }
}

.testimonial-desc {
  max-width: 700px;
  /* margin: 0 auto; */
  color: rgba(46, 46, 46, 0.82);
  font-size: 17px;
  line-height: 1.7rem;
  margin-bottom: 1.5rem;
}
/* 
.testi{
  margin: 0 auto;
  text-align: center;
} */

.testimonial-main-title {
  font-size: 44px;
  font-weight: 800;
  color: #18284a;
  margin-bottom: 1rem;
}
@media (max-width: 500px) {
  .testimonial-main-title {
    font-size: 32px;
    line-height: 1.1;
  }
}

.testimonial-small-heading {
  font-size: 16 px;
  font-weight: 700;
  border-bottom: 2px solid #fb6f4e;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 27px;
  color: #18284a;
}

/* Testimonial Section Ends Here  */

/* Contact Section Starts Here  */
/* Contact Section Starts Here  */

.parent-contact-wrapper {
  /* backdrop-filter: 1px; */
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.parent-contact-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  background-image: url("./images/hero-dash-component.svg");
  /* background-repeat: repeat; */
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -9999;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

/* LEFT TEXT AREA */
.contact-tag {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid #fb6f4e;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 27px;
  color: #18284a;
}

.contact-title {
  font-size: 36px;
  font-weight: 800 !important;
  color: #1e2945;
  margin: 10px 0 20px;
}

.contact-desc {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
}

.contact-info {
  margin-top: 25px;
}

.contact-line {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* RIGHT FORM AREA */
.contact-right {
  background: #fff;
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid #ffe3dd;
  box-shadow: 7px 7px 0 0 #ffe8df;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #ffccba;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #ffccba;
  font-size: 16px;
  outline: none;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Primary Button */
.primary-btn {
  background: linear-gradient(135deg, #ff8e72, #ff6f56);
  color: #fff;
  border: none;
  padding: 14px 25px;
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.25s ease;
}

.primary-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.contact-note {
  margin-top: 10px;
  color: #444;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-left {
    order: 1;
  }

  .contact-right {
    order: 2;
  }

  .contact-desc {
    margin: 0 !important;
  }

  .contact-info {
    display: inline-block;
    text-align: left;
  }
  .parent-contact-wrapper {
    padding: 1rem 0 !important;
  }
}

@media (max-width: 500px) {
  .parent-contact-wrapper {
    padding: 2rem 0 !important;
  }
  .contact-title {
    font-size: 32px !important;
    line-height: 1.1;
    font-weight: 800;
    color: #18284a;
    margin-bottom: 1rem;
  }
  .contact-desc {
    max-width: 700px;
    /* margin: 0 auto; */
    color: rgba(46, 46, 46, 0.82);
    font-size: 17px;
    line-height: 1.7rem;
    margin-bottom: 1.5rem;
  }
  .contact-section {
    text-align: left;
  }
}

/* Contact Section Ends Here  */
/* Contact Section Ends Here  */

/* Testimonisal Section Starts Here  */
/* Testimonisal Section Starts Here  */

.testimonials-section {
  padding: 40px 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* SLIDER WRAPPER */
.testimonials-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* SCROLLING TRACK */
.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Row 1: moves right → left */
.row-1 {
  animation: slide-left 60s linear infinite;
}

/* Pause when hovered */
.testimonials-track:hover {
  animation-play-state: paused;
}
.testimonial-card:hover {
  transform: scale(1.2);
  z-index: 999;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
/* Universal card styling */
.testimonial-card {
  /* min-width: 240px; */
  max-width: 240px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  /* background: #000; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Image */
.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animations */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweak */
@media (max-width: 600px) {
  .testimonial-card {
    /* min-width: 180px; */
    max-width: 180px;
    height: 180px;
  }
}

/* Testimonial Section Ends Here  */
/* Testimonial Section Ends Here  */

/* Footer Section Starts Here  */
/* Footer Section Starts Here  */

.footer-parent-wrapper {
  background: white;
  padding: 6rem 0 2.5rem 0;
}

.fdc-link {
  padding: 3px;
  box-shadow: 3px 3px 0 0 #fde1d6;
  transition: all ease-in-out 0.2s;
  font-weight: 600;
}

.fdc-link:hover {
  box-shadow: 3px 3px 0 0 #fb6e4e98;
}

/* FOOTER MAIN WRAPPER */
.footer {
  padding: 40px 20px 20px;
  /* border-top: 1px solid #eee; */
  margin-top: 60px;
}

/* FLEX CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* LOGO */
.footer-logo h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #1d1d1d;
}



/* NAV LINKS */
.footer-nav {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  transition: 0.3s ease;
}

.footer-nav a:hover {
  color: #5f8f72;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a img {
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 6px;
  /* background: #d9e6dd; */
  transition: 0.3s ease;
  box-shadow: 3px 3px 0 0 #ffe8df;
}

.footer-social a img:hover {
  /* background: #bcd1c2; */
  transform: scale(1.2);
}

/* BOTTOM TEXT */
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  padding-top: 10px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #f7ddcf;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    text-align: left;
    font-size: 16px !important;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-parent-wrapper {
    padding: 4rem 0 3.5rem 0;
  }
}

/* ======================== FIT TO FAT PRODUCT SECTION STARTS ========================*/
/* ======================== FIT TO FAT PRODUCT SECTION STARTS ========================*/
/* ======================== FIT TO FAT PRODUCT SECTION STARTS ========================*/
/* ======================== FIT TO FAT PRODUCT SECTION STARTS ========================*/

.fit-to-fat-product-container {
  padding: 5rem 0;
}
.production-childer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
} /* ========================= PRODUCT IMAGE ========================= */
.f2f-product-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.product-image-card {
  background: #fffaf6;
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 520px;
}
.product-image-card img {
  width: 100%;
  display: block;
  object-fit: contain;
} /* ========================= PRODUCT CONTENT ========================= */
.f2f-product-content {
  flex: 1;
}
.f2f-product-content p {
  max-width: 550px;
  margin-bottom: 2rem;
} /* ========================= FEATURES ========================= */
.f2f-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.feature-box {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.feature-icon {
  min-width: 45px;
  min-height: 45px;
  border-radius: 50%;
  background: linear-gradient(118deg, var(--accent-from), var(--accent-to));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
.feature-box span {
  font-weight: 600;
  color: var(--heading);
  font-size: 15px;
} /* ========================= PRICE BOX ========================= */
.f2f-price-box {
  background: #fff;
  border-radius: 20px;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.f2f-price-box h3 {
  margin: 0;
  font-size: 42px;
  color: var(--heading);
  line-height: 1;
}
.f2f-price-box span {
  color: #666;
  font-size: 15px;
} /* ====================================== RESPONSIVE ====================================== */ /* TABLET */
@media (max-width: 991px) {
  .production-childer {
    flex-direction: column;
    gap: 3rem;
  }
  .f2f-product-content {
    width: 100%;
  }
  .product-image-card {
    max-width: 480px;
  }
} /* MOBILE */
@media (max-width: 767px) {
  .fit-to-fat-product-container {
    padding: 4rem 0;
  }
  .production-childer {
    gap: 2rem;
  }
  .product-image-card {
    padding: 1.2rem;
    border-radius: 20px;
  }
  .f2f-features {
    grid-template-columns: 1fr;
  }
  .feature-box {
    padding: 0.9rem;
  }
  .f2f-price-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
  }
  .f2f-price-box h3 {
    font-size: 34px;
  }
  .f2f-price-box .primary-btn {
    width: 100%;
    text-align: center;
  }
}



.f2f-benefits {
	margin-bottom: 2rem;
}

.f2f-benefits h4 {
	font-size: 20px;
	color: var(--heading);
	margin-bottom: 1rem;
}

.benefit-items {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.benefit-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.benefit-pill i {
	color: var(--accent-from);
	font-size: 18px;
}

.benefit-pill span {
	font-size: 15px;
	font-weight: 600;
	color: var(--heading);
}

/* MOBILE */
@media(max-width:767px) {
	.benefit-items {
		gap: 10px;
	}

	.benefit-pill {
		width: 100%;
		justify-content: flex-start;
	}
}




/* ======================================
   ORDER MODAL
====================================== */

.order-modal-overlay {
	position: fixed;
	inset: 0;

	width: 100%;
	height: 100%;

	background: rgba(0, 0, 0, 0.6);

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 1rem;

	z-index: 9999;

	opacity: 0;
	visibility: hidden;

	transition: 0.3s ease;
}

.order-modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* MODAL BOX */

.order-modal-container {
	width: 100%;
	max-width: 760px;

	background: white;

	border-radius: 28px;

	padding: 2.5rem;

	position: relative;

	overflow-y: auto;

	max-height: 95vh;

	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

/* CLOSE BUTTON */

.close-order-modal {
	position: absolute;

	top: 18px;
	right: 18px;

	width: 46px;
	height: 46px;

	border: none;

	border-radius: 50%;

	background: #f3f3f3;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 22px;

	cursor: pointer;
}

/* FORM */

.order-form {
	margin-top: 2rem;

	display: grid;
	grid-template-columns: repeat(2, 1fr);

	gap: 1.2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 8px;

	font-size: 15px;
	font-weight: 600;

	color: var(--heading);
}

.form-group input,
.form-group textarea,
.form-group select {

	width: 100%;

	padding: 1rem;

	border-radius: 14px;

	border: 1px solid rgba(0, 0, 0, 0.08);

	background: #fafafa;

	outline: none;

	font-size: 15px;

	font-family: inherit;

	box-sizing: border-box;
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.full-width {
	grid-column: span 2;
}

.submit-order-btn {
	width: 100%;
	grid-column: span 2;
}

/* ======================================
   SUCCESS MESSAGE
====================================== */

.order-success-message {
	position: fixed;
	inset: 0;

	width: 100%;
	height: 100%;

	background: rgba(0, 0, 0, 0.55);

	display: flex;
	align-items: center;
	justify-content: center;

	z-index: 10000;

	opacity: 0;
	visibility: hidden;

	transition: 0.3s ease;
}

.order-success-message.active {
	opacity: 1;
	visibility: visible;
}

.success-box {
	width: 90%;
	max-width: 420px;

	background: white;

	border-radius: 24px;

	padding: 2.5rem 2rem;

	text-align: center;
}

.success-box i {
	font-size: 70px;
	color: #27c267;

	margin-bottom: 1rem;
}

.success-box h3 {
	margin-bottom: 10px;
	color: var(--heading);
}

.success-btns {
	display: flex;
	gap: 14px;

	justify-content: center;

	margin-top: 2rem;

	flex-wrap: wrap;
}

.success-btns .primary-btn,
.success-btns .secondary-btn {
	min-width: 140px;
	text-align: center;
}

/* MOBILE */

@media(max-width:768px) {

	.order-modal-container {
		padding: 1.4rem;
	}

	.order-form {
		grid-template-columns: 1fr;
	}

	.full-width,
	.submit-order-btn {
		grid-column: span 1;
	}

	.success-btns {
		flex-direction: column;
	}

	.success-btns .primary-btn,
	.success-btns .secondary-btn {
		width: 100%;
	}

}










/* ======================================
   TEXT LOGO
====================================== */
/* ======================================
   MINIMAL TEXT LOGO
====================================== */
/* ======================================
   MINIMAL AESTHETIC LOGO
====================================== */
/* ======================================
   MINIMAL AESTHETIC LOGO
====================================== */

.text-logo{
    text-decoration: none;

    display: inline-flex;
    align-items: center;
}

.logo-name{
    font-size: 30px;
    font-weight: 800;

    font-family: var(--heading-font);

    color: var(--heading);

    letter-spacing: -1px;

    line-height: 1.1;

    position: relative;
}

/* ACCENT UNDERLINE */

.logo-name::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 48%;

    height: 4px;

    border-radius: 50px;

    background: linear-gradient(
        118deg,
        var(--accent-from),
        var(--accent-to)
    );
}

/* MOBILE */

@media(max-width:767px){

    .logo-name{
        font-size: 24px;
    }

}
















/* Render Card + Data */
