@import url("https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: poppins, sans-serif;
}

h1,
h2,
h3,
h4 {
  color: var(--heading-color);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-weight: 500;
  font-size: 16px;
  color: var(--paragraph-color);
  line-height: 27px;
}

section {
  padding: 60px 40px;
}

button {
  cursor: pointer;
  background: 0px 0px;
  border: none;
}

.custom-btn {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 20px;
  font-size: 16px;
}

img {
  width: 100%;
}

:root {
  --body-color: #3d422f;
  --heading-color: #3d422f;
  --paragraph-color: #555;
  --primary-bg-color: #f2e9e3;
  --gray-bg-color: #fffdf9;
  --primary-color: #ff5e14;
  --secondary-bg-color: #f3f7ec;
  --off-white-bg-color: #fffef6;
  --white: white;
}

:root {
  --banner-main-heading: 65px;
  --sec-bold-heading: 52px;
  --sec-card-heading: 35px;
  --sec-regular-heading: 18px;
}

.home-hero-section {
  position: relative;
  display: flex;
  gap: 30px;
  background-color: var(--primary-bg-color);
}

.hero-left-side {
  flex: 1 1 0%;
}

.hero-img-wrapper img {
  border-radius: 296.5px 296.5px 296.5px 12px;
}

.hero-right-side {
  flex: 1 1 0%;
  padding: 20px;
}

.hero-main-content h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.hero-main-content h1 {
  font-size: var(--banner-main-heading);
  font-weight: 600;
  color: var(--heading-color);
  line-height: 70px;
  margin-bottom: 20px;
}

.hero-main-content p {
  font-size: 18px;
  font-family: var(--source-serif-pro);
  font-weight: 500;
  color: var(--paragraph-color);
  line-height: 36px;
  margin-bottom: 30px;
}

.hero-main-content .hero-btn {
  font-size: 18px;
  padding: 10px 20px;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 15px;
  margin-bottom: 20px;
}

.hero-trainer {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.trainer-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.section-main-heading {
  max-width: 600px;
  margin: 0px auto;
  text-align: center;
}

.section-main-heading h4 {
  font-size: var(--sec-regular-heading);
  font-weight: 500;
}

.section-main-heading h1 {
  font-size: var(--sec-bold-heading);
  margin-bottom: 60px;
}

.card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background-color: rgb(249, 241, 236);
  border-radius: 10px;
  padding: 60px 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
}

.card-header img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
}

.card-header img:hover {
  transform: rotateY(180deg);
}

.card-header img {
  transform-origin: center center;
}

.card-header h2 {
  font-size: 70px;
  color: rgb(125, 125, 125);
}

.card-content h3 {
  font-size: 24px;
  color: rgb(70, 70, 70);
  margin-bottom: 10px;
}

.card-content p {
  color: rgb(111, 111, 111);
  margin-bottom: 20px;
}

.card-content a {
  color: rgb(82, 82, 82);
  text-decoration: none;
  font-weight: bold;
}

.card-content a:hover {
  text-decoration: underline;
}

.who-we-are-section {
  display: flex;
  gap: 30px;
}

.who-we-are-text {
  flex: 1 1 0%;
  padding: 30px 10px;
}

.who-we-are-text-img {
  display: flex;
  flex: 2 1 0%;
  gap: 30px;
}

.who-we-are-text h2 {
  font-size: var(--sec-regular-heading);
  margin-bottom: 15px;
}

.who-we-are-text h1,
.who-we-are-text-right h1 {
  font-size: var(--sec-card-heading);
  line-height: 47px;
  margin-bottom: 30px;
}

.who-we-are-text button {
  margin-top: 40px;
}

.who-we-are-image img {
  border-radius: 212px 198px 212px 212px;
}

.rating {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  color: rgb(77, 77, 61);
  padding: 10px;
  border-radius: 5px;
  margin-top: 30px;
}

.rating-value {
  font-size: 36px;
  color: rgb(77, 77, 61);
  margin-right: 10px;
}

.divider {
  width: 1px;
  height: 40px;
  background-color: var(--paragraph-color);
  margin-right: 15px;
}

.rating-stars-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stars i {
  color: var(--primary-color);
  font-size: 18px;
  margin-right: 2px;
}

.review-text {
  color: var(--paragraph-color);
  font-size: 16px;
  margin-top: 5px;
}

.yoga-class-card {
  display: flex;
  background-color: rgb(245, 235, 229);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  overflow: hidden;
  padding: 32px 40px;
  margin: 20px 0px;
}

.image-section img {
  border-radius: 10px;
}

.yoga-content-section-wrapper {
  display: flex;
  justify-content: space-between;
  flex: 1 1 0%;
}

.content-section {
  padding: 30px;
}

.days {
  font-size: var(--sec-card-heading);
}

.content-section h2 {
  font-size: var(--sec-card-heading);
  margin: 10px 0px;
}

.instructor {
  display: flex;
  align-items: center;
  margin: 10px 0px;
}

.instructor-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.details {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.detail-item {
  display: flex;
  align-items: center;
  color: rgb(90, 90, 90);
  font-size: 16px;
  background-color: white;
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 200px;
}

.detail-item i {
  margin-right: 5px;
}

.button-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  background-color: rgb(255, 106, 61);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background-color: rgb(255, 61, 26);
}

.yoga-button-wrapper {
  text-align: center;
  padding: 30px;
}

.view-all-class {
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 20px;
  border: 1px solid rgb(0, 0, 0);
  margin: 0px auto;
}

.yoga-benifit-banner {
  position: relative;
  background-image: url("../images/intro-video-img.png");
  height: 500px;
}

.yoga-benifit-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.5);
}

.yoga-benifit-text {
  display: flex;
  gap: 30px;
  padding: 50px 0px;
}

.yoga-benifit-text .text-1,
.yoga-benifit-text .text-2 {
  flex: 1 1 0%;
  display: flex;
  gap: 30px;
}

.text-1 .wrapper h2 {
  font-size: var(--sec-card-heading);
  margin-bottom: 20px;
}

.icon-div {
  display: block;
}

.icon-div i {
  color: var(--white);
  background-color: var(--primary-color);
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

.testimonial-section {
  background-color: var(--secondary-bg-color);
  overflow: hidden;
  padding: 100px 40px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s;
}

.testimonial-card {
  display: flex;
  gap: 30px;
  flex: 0 0 48%;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 30px 20px;
  margin: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
  position: relative;
  transition: 0.5s;
}

.testimonial-image {
  position: relative;
}

.user-img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-top: 30px;
}

.quote-icon {
  background-color: rgb(246, 106, 33);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-size: 24px;
  position: absolute;
  top: 188px;
  right: 33px;
}

.rating i {
  color: rgb(246, 106, 33);
  font-size: 20px;
}

.testimonial-text {
  margin: 20px 0px;
  font-size: 16px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
}

.testimonial-text h4 {
  margin: 10px 0px;
  font-size: 18px;
  color: rgb(51, 51, 51);
}

.location {
  font-size: 14px;
  color: rgb(153, 153, 153);
}

.dots {
  text-align: center;
  margin-top: 40px;
}

.dot {
  height: 15px;
  width: 15px;
  background-color: rgb(187, 187, 187);
  border-radius: 50%;
  display: inline-block;
  margin: 0px 5px;
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-color);
}

.hero-text-banner-section {
  position: relative;
  height: 400px;
  padding: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url("../images/banner-all.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-text-banner-section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-banner-section h1 {
  font-size: var(--banner-main-heading);
  color: var(--white);
  margin-bottom: 30px;
}

.hero-text-banner-section .line {
  height: 1px;
  background-color: var(--white);
  width: 100%;
  margin-bottom: 30px;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  max-width: 1200px;
  margin: 0px auto;
}

.about-us-section {
  background-color: rgb(254, 249, 243);
  padding: 60px 0px;
}

.about-us-content {
  flex: 1 1 0%;
  max-width: 600px;
}

.about-us-label {
  color: rgb(240, 90, 38);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}

.about-us-heading {
  font-size: 38px;
  color: rgb(53, 58, 34);
  margin: 10px 0px;
}

.about-us-description {
  font-size: 18px;
  color: rgb(123, 115, 105);
  margin-bottom: 30px;
}

.about-us-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-us-stat-item {
  background-color: rgb(255, 236, 227);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  flex: 1 1 0%;
  min-width: 150px;
}

.about-us-stat-number {
  color: rgb(53, 58, 34);
  font-size: 32px;
  margin-bottom: 5px;
}

.about-us-stat-description {
  color: rgb(123, 115, 105);
  font-size: 16px;
}

.about-us-image-container {
  flex: 1 1 0%;
  text-align: center;
  max-width: 600px;
}

.about-us-image {
  width: 100%;
  border-radius: 50%;
  max-width: 400px;
}

.why-choose-us {
  background-image: linear-gradient(rgb(39, 39, 39) 59%, rgb(255, 253, 249) 41%);
  color: rgb(255, 255, 255);
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us-main-content {
  max-width: 600px;
  margin: 0px auto;
}

.why-choose-us-main-content h2 {
  font-size: var(--sec-bold-heading);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.why-choose-us-main-content .sub-heading {
  font-size: 18px;
  color: rgb(255, 94, 22);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  /* flex-wrap: wrap; */
}

.why-choose-us .card {
  background-color: rgb(248, 245, 238);
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  text-align: left;
  flex: 1 1 300px;
  max-width: 300px;
}

.why-choose-us .card img {
  max-width: 80px;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}

.why-choose-us .card h3 {
  font-size: 27px;
  color: rgb(43, 43, 40);
  margin-bottom: 10px;
  font-weight: 600;
}

.why-choose-us .card p {
  color: rgb(138, 138, 137);
  font-size: 0.95rem;
}

.features-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.features-list span {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 400;
}

.features-list img {
  max-width: 22px;
  margin-right: 8px;
}

.workout-planning-section {
  background-color: rgb(249, 249, 243);
}

.workout-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.workout-image-wrapper {
  display: flex;
  gap: 25px;
  flex: 1.5;
  text-align: center;
  padding-left: 20px;
}

.workout-image {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.workout-image-top {
  height: 450px;
  width: 260px;
}

.workout-image-bottom {
  height: 350px;
  width: 260px;
}

.workout-content {
  flex: 1 1 50%;
  padding-left: 40px;
}

.workout-subtitle {
  color: rgb(245, 99, 32);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.workout-title {
  font-size: 2.5rem;
  color: rgb(62, 63, 53);
  margin-bottom: 20px;
}

.workout-description {
  color: rgb(108, 117, 125);
  line-height: 1.7;
  margin-bottom: 20px;
}

.workout-benefits {
  list-style: none;
  padding-left: 0px;
}

.workout-benefits li {
  position: relative;
  padding-left: 30px;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: rgb(62, 63, 53);
}

.workout-benefits li span img {
  width: 20px;
  font-weight: 500;
}

.contact-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  flex-wrap: wrap;
}

.contact-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  flex: 1;
  max-width: 300px;
}

.icon {
  background-color: #f9f9f9;
  border-radius: 50%;
  padding: 15px;
  margin-right: 15px;
  font-size: 24px;
  color: #ff5722;
}

.contact-info h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.contact-info p {
  font-size: 14px;
  color: #666;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #f4f4f4;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
}

.contact-image-side {
  flex: 1;
  padding: 20px;
}

.contact-image-side img {
  width: 100%;
  height: auto;
  border-radius: 5px 0 0 5px;
}

.contact-form-side {
  flex: 1;
  padding: 40px;
}

.contact-form-side h2 {
  margin-bottom: 20px;
  color: #333;
}

.contact-form-side form {
  display: flex;
  flex-direction: column;
}

.contact-form-side input,
.contact-form-side textarea {
  margin-bottom: 15px;
  padding: 14px 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form-side input:focus,
.contact-form-side textarea:focus {
  outline: none;
  border-color: #777;
}

.contact-form-side button {
  padding: 10px;
  font-size: 16px;
  background-color: #f96c00;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  max-width: 100px;
  margin: 0 auto;
}

.contact-form-side button:hover {
  background-color: #e55b00;
}

.contact-success-message {
  display: none;
  color: green;
  font-weight: bold;
  margin-top: 15px;
}

/*======== Privacy policy and Term and condition page css  Start =======*/

.privicy_content_section,
.term_condition_section {
  padding: 70px 50px;
}

.privicy_content_section p,
.term_condition_section p {
  margin: 5px 0px;
}

.privicy_content_section ul,
.term_condition_section ul {
  margin-left: 30px;
  list-style: disc;
}

/* ======  Privacy policy and Term and condition page css  End =========*/







/* ================================================================================================================ */
/* 
==================================================================
===========RESPONSIV MEDIA QUERY ================================= */



@media screen and (max-width: 1257px) {
  :root {
    --banner-main-heading: 50px;
    --sec-bold-heading: 52px;
    --sec-card-heading: 35px;
    --sec-regular-heading: 18px;
  }

  .hero-main-content h1 {
    font-size: var(--banner-main-heading);
    font-weight: 600;
    line-height: 60px;
  }

  .yoga-content-section-wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --banner-main-heading: 40px;
    --sec-bold-heading: 40px;
    --sec-card-heading: 35px;
    --sec-regular-heading: 18px;
  }

  .hero-main-content h1 {
    font-size: var(--banner-main-heading);
    font-weight: 600;
    line-height: 60px;
  }

  .who-we-are-section {
    flex-direction: column;
  }

  .yoga-class-card {
    flex-direction: column;
    align-items: center;
  }

  .button-section {
    justify-content: flex-start;
  }

  .content-section {
    padding: 30px 0px;
  }

  .yoga-benifit-text {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-slider {
    justify-content: space-between;
  }

  .workout-row {
    flex-direction: column;
  }

  .workout-title {
    font-size: 2rem;
  }

  .workout-image-wrapper {
    flex-direction: row;
  }

  .workout-content {
    margin-top: 60px;
  }

  .workout-image {
    width: 48%;
  }

  .workout-benefits li {
    font-size: 1rem;
    display: flex;
    gap: 20px;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --banner-main-heading: 32px;
    --sec-bold-heading: 32px;
    --sec-card-heading: 35px;
    --sec-regular-heading: 18px;
  }

  .home-hero-section {
    flex-direction: column-reverse;
  }

  .hero-main-content h1 {
    font-size: var(--banner-main-heading);
    font-weight: 600;
    line-height: 60px;
  }

  .card-section {
    grid-template-columns: 1fr;
  }

  .who-we-are-text-img {
    flex-direction: column;
  }

  .who-we-are-image {
    text-align: center;
  }

  .who-we-are-image img {
    max-width: 400px;
  }

  .details {
    flex-direction: column;
  }

  .why-choose-us h2 {
    font-size: 2rem;
  }

  .cards-container {
    flex-direction: column;
  }

  .card {
    flex: 1 1 100%;
    min-width: 100%;
    text-align: left;
  }

  .user-img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-top: 30px;
  }

  .quote-icon {

    top: 146px;
    right: 21px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-box {
    max-width: 100%;
    text-align: center;
  }

  .icon {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .about-us-container {
    flex-direction: column;
    padding: 20px;
  }

  .about-us-heading {
    font-size: 32px;
  }

  .about-us-image {
    max-width: 350px;
    margin-top: 50px;
  }

  .about-us-stat-item {
    min-width: 100px;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-image-side img {
    border-radius: 5px 5px 0 0;
  }

  .contact-form-side {
    padding: 20px;
  }
}

@media screen and (max-width: 576px) {
  section {
    padding: 50px 10px;
  }

  .testimonial-card {
    flex-direction: column;
  }

  .quote-icon {

    top: 102px;
    left: 44px;
  }

  .user-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-top: 30px;
  }
}