/* @import url("https://fonts.googleapis.com/css2?family=Aclonica&family=Afacad+Flux:wght@100..1000&family=Libertinus Sans:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"); */

/* UNIVERSAL CLASSES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

section.secondary-bg {
  background-color: #fdfbf9;
}

section {
  padding: 30px 0px;
}

h1 {
  font-family: "Libertinus Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 800;
  font-size: 2.2rem;
  color: #1c1c1c;
}

h2 {
  font-family: "Libertinus Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 2rem;
  font-weight: 900;
}

h3 {
  font-family: "Libertinus Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
   font-size: 1.5rem;
  /* text-transform: uppercase; */
  font-weight: 900;
}

h4 {
  font-family: "Libertinus Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.3rem;
  /* text-transform: uppercase; */
  font-weight: 900;
}

h5 {
  font-family: "Libertinus Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.5rem;
  /* text-transform: uppercase; */
  font-weight: 900;
}

h6 {
  font-family: "Libertinus Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.3rem;
  /* text-transform: uppercase; */
  font-weight: 700;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c1c1c;
  line-height: 1.7rem;
  /* margin-top: 14px; */
}

a {
  font-size: 16px;
}

li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* HEADER AND NAVBAR  */
/* Header Styles */
/* Header Styles */
.top-header {
  background-color: #1f2937;
  color: white;
  padding: 10px 100px;
  /* Increased left and right padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.top-header .contact-info {
  display: flex;
  flex-wrap: wrap;
  /* Allows wrapping for mobile view */
}

.top-header .contact-info a {
  margin-right: 25px;
  /* Adds space between items */
  color: #fff;
  list-style: none;
  text-decoration: none;
  font-size: 14px;
}

.top-header .contact-info .separator {
  margin: 0 10px;
  /* Adjust separator spacing */
}

.top-header .social-icons a {
  color: white;
  margin-left: 15px;
  /* Space between social icons */
  text-decoration: none;
}

/* Navbar Styles */
.navbar {
  background-color: #d97706;
  /* height: 100px; */
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
  --bs-navbar-padding-y: 0rem !important;
}

.container {
  padding: 0px;
}

.navbar.sticky {
  background-color: #d97706;
  margin-top: 0px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  /* margin: 0px 10px; */
  font-size: 18px;
  font-family: "Montserrat";
  /* border-bottom: 1px dashed #000; */
}

.navbar-nav .nav-link {
  padding: 20px 15px !important;
}

/* .navbar-nav{
        margin-left: 100px !important;
        margin-right: 100px !important;
      } */
.navbar-nav .nav-link:hover {
  color: #fff !important;
}

.nav-item {
  margin-bottom: 0px;
}

/* Dropdown on Hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  background-color: #1f2937;
  border-top: 3px solid white;
  border-radius: 0px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item {
  color: #fff;
  font-size: 17px;
  transition: all 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f5f0e3;
  color: black;
  padding-left: 25px;
}

/* Navbar Center Logo for Desktop View */
.navbar-logo img {
  height: 50px;
}

/* Mobile Toggler Animation */
.navbar-collapse {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 90%;
  background-color: #1f2937;
  transition: right 0.3s ease-in-out;
}

.navbar-collapse.show {
  right: 0;
}

.close-btn {
  color: white;
  font-size: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.enquiry {
  background-color: #1f2937;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  color: #fff;
  padding: 12px 28px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Shine sweep */
.enquiry::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.5s ease;
}

.enquiry:hover::before {
  left: 100%;
}

.enquiry:hover {
  border: 2px solid #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  color: #fff;
  /* letter-spacing: 1px; */
}

/* Mobile Logo Styles */
.navbar-logo-mobile {
  display: none;
}

.mobile-logo {
  height: 40px;
}

/* BANNER SECTION  */
/* Home Banner Styles */
.home_banner {
  padding: 0px !important;
  position: relative;
  width: 100%;
  height: 90vh;
  /* Adjust height as needed */
  overflow: hidden;
  /* Hide overflow to maintain clean edges */
}

.fade-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fade-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* Start with hidden images */
  transition: opacity 1s ease-in-out;
  /* Fade effect */
}

.fade-image.active {
  opacity: 1;
  /* Show active image */
}

.site-heading {
  text-align: center;
}

.site-title-tagline {
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d97706;
  font-family: "Montserrat";
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.site-title {
  margin-top: 10px;
}

.line-img {
  margin-bottom: 20px;
  /* max-width: 500px; */
}

.line-img img {
  max-width: 300px;
}

.img-all img {
  box-shadow: 0 0 3px 0 #8b8b8b;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  padding: 5px;
  border: 2px solid #d97706;
}

.aboutAllIimages .img-all img {
  height: 700px;
}

.aboutus_section .btn {
  /* margin-left: 20px; */
  padding: 7px 35px;
  background-color: #1f2937;
  border-radius: 0px;
  color: #fff;
  /* text-transform: uppercase; */
  font-family: "Libertinus Sans";
  /* font-weight: 600; */
  font-size: 18px;
  /* Padding for content */
}

.aboutus_section .btn:hover {
  background-color: #d97706;
  color: #000;
}

.yoga_courses .tab-bg {
  background-color: #d97706;
  margin: 0px !important;
}

.yoga_courses .tab-bg .col {
  padding: 10px !important;
}

.yoga_courses .content {
  display: none;
}

.yoga_courses .active {
  display: block;
}

.yoga_courses .active-button {
  background-color: white !important;
  color: #000 !important;
}

.yoga_courses .btn_courses {
  background-color: #d97706;
  /* color: #fff; */
  width: 100%;
  border-radius: 5px;
  border: 1px dashed #000;
  text-transform: uppercase;
  font-family: "Aclonica";
}

.yoga_courses .right_content {
  padding-left: 20px;
  /* margin-top: 20px; */
}

.yoga_courses .level_description {
  background-color: #d97706;
  /* color: white; */
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 1.2rem;
  font-weight: 600;
  /* text-transform: uppercase; */
  font-family: "Libertinus Sans";
}

.yoga_courses ul {
  list-style: none;
}

.yoga_courses i {
  padding: 5px;
}

.yoga_courses .fees_section p {
  color: #d97706;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 5px;
}

.yoga_courses .fees_section span {
  /* margin-top: -10px !important; */
  font-weight: 600;
  font-size: 17px;
}

.book_detail_button .btn-one {
  background-color: #1f2937;
  color: white;
  padding: 8px 20px;
  margin-right: 30px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px !important;
  border: none;
  font-family: "Libertinus Sans";
}

/* Hover Effect */
.book_detail_button .btn-one:hover {
  background-color: #d97706;
  color: #000;
}

.book_detail_button .btn-two {
  background-color: #d97706;
  color: #fff;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px !important;
  border: none;
  font-family: "Libertinus Sans";
}

/* Hover Effect */
.book_detail_button .btn-two:hover {
  background-color: #1f2937;
  color: #fff;
}

/* Keyframes for gradient animation */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.yoga_courses .yoga_card {
  position: relative;
  height: 670px;
  box-shadow: 0 0 3px 0 #8b8b8b;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.fade-image-two {
  position: absolute;
  display: none;
  /* Hide all images by default */
  transition: opacity 1s;
  -moz-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
}

.fade-image-two.active {
  display: block;
  /* Show the active image */
}

.yoga-school-rishikesh .img-all {
  width: 100%;
  /* height: 470px; */
  margin: auto;
  position: relative;
  overflow: hidden;
  /* border-radius: 50% 0 50% 0; */
}

.yoga-school-rishikesh img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* animation: moveZoom 12s infinite alternate ease-in-out; */
  /* Add animation */
}

/* YOGA COURSE SECTION  */

/* BEST YTTC RISHIKESH */

/* Section with a curved background */
.best_yttc_rishikesh {
  /* padding: 0; */
  position: relative;
  overflow: hidden;
}

.best_yttc_rishikesh .img-all img {
  width: 100%;
  height: 80vh;
  display: block;
  transition: transform 0.5s ease;
}

.best_yttc_rishikesh .btn-one {
  background-color: #1f2937;
  color: white;
  padding: 8px 20px;
  border-radius: 0px !important;
  margin-right: 20px;
  font-family: "Libertinus Sans";
  font-size: 18px;
}

.best_yttc_rishikesh .btn-one:hover {
  background-color: #d97706;
  color: #000;
  padding: 8px 20px;
}

.best_yttc_rishikesh .btn-two {
  border: 1px solid #1f2937;
  color: #000;
  padding: 8px 20px;
  border-radius: 0px !important;
  font-family: "Libertinus Sans";
  font-size: 18px;
}

.best_yttc_rishikesh .btn-two:hover {
  border: 1px solid #d97706;
  background-color: #d97706;
  color: #000;
}

/* Water Ripple Effect */
.water-ripple {
  position: absolute;
  top: 50%;
  left: 76%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: ripple-wave 2s infinite ease-out;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

.yoga_ttc_box {
  background-color: #d97706;
  color: black;
  border-left: 6px solid #d97706;
  margin-top: 30px;
}

.yoga_ttc_box h5 {
  padding: 20px 15px;
  margin-bottom: 0px;
  font-size: 18px;
}

/* Ripple Animation */
@keyframes ripple-wave {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* Text Content Styling */

/* Ripple Button Effect */
.button-ripple-effect {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.button-ripple-effect:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 200%;
  height: 200%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease, opacity 0.8s ease;
  opacity: 0;
}

.button-ripple-effect:hover:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.retreat-card {
  border-radius: 5px;
  padding: 10px;
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  border: 1px solid #ddd;
  position: relative;
}

.retreat-card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.title-retreat {
  text-align: center;
  /* background-color: rgba(255, 255, 255, 0.7); */
  padding: 10px;
}

.title-retreat h4 {
  padding: 10px;
  border-radius: 50px;
}

.retreat-content {
  padding: 10px;
}

.retreat-content ul {
  padding-left: 0px !important;
}

.retreat-content ul li {
  list-style: none;
  font-size: 16px;
}

.retreat-content .fees_section p {
  color: #d97706;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0px;
}

.retreat-content .fees_section span {
  font-weight: 600;
  font-size: 17px;
}

.certified {
  background-image: url(./images/pattern-bg.webp);
  background-size: 10%;
  position: relative;
  padding: 60px 0px 60px;
}

.certified-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
}

.certified-img img {
  /* width: 100%; */
  height: 120px;
  object-fit: contain;
}

.classes-card-1 {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.classes-card-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.classes-card-img-1 {
  padding-left: 0;
}

.classes-card-img-2 {
  padding-right: 0;
  /* margin-top: 30px; */
}

.yoga-card-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
  height: 450px;
}

.yoga-card {
  padding: 10px;
}

/* WHY TTC AND RETREAT  */
/* Section Styling */
.why_ttc_retreat {
  position: relative;
  overflow: hidden;
  /* To contain moving background */
}

/* Moving Background Image */
.background-image {
  position: relative;
  background-image: url("././images/webp-images/why-ttc.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 100px 50px;
}

.background-image::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background-color: #000;
  opacity: 0.7;
}

/* Keyframes for background animation */
@keyframes move-background {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Moves the background from left to right */
  }
}

.background-image .site-heading {
  z-index: 1;
  position: relative;
}

.background-image .site-heading .site-title {
  color: #fff;
  z-index: 1;
  margin-bottom: 30px;
}

/* Text Overlay */
.text-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  /* Text color */
  padding: 0px 20px;
  /* Padding for text */
  z-index: 1;
  /* Ensure text is above background */
}

/* Responsive Text */
.text-overlay p {
  /* font-size: 1.2rem; */
  line-height: 1.5;
  margin: 0;
  color: #fff;
}

/* COUSTOM CARD SECTION  */
.introduction .custom-card {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.introduction .why-card .outer-div {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  padding: 20px;
  border-radius: 5px;
  /* background-image: url('./images/teachers/yog.png'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #e8b882;
  height: 340px;
  margin-bottom: 20px;
}
.introduction .why-card .outer-div-card {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  padding: 20px;
  border-radius: 5px;
  /* background-image: url('./images/teachers/yog.png'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #e8b882;
  height: 200px;
  margin-bottom: 20px;
}

.introduction .why-card .inner-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: #e4a55d;
  padding: 35px 10px;
  border: 4px dashed #d97706;
  height: 300px;
}
.introduction .why-card .inner-div-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: #e4a55d;
  padding: 35px 10px;
  border: 4px dashed #d97706;
  height: 160px;
}

.introduction .why-card .inner-div p {
  text-align: center;
  margin-bottom: 0px;
}

.why-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 5px;
  margin-bottom: 20px;
  height: 340px;
}
.why-card-img-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 5px;
  margin-bottom: 20px;
  height: 200px;
}
.why-card-img img {
  width: 100% ;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.why-card-img-card img{
    width: 100% ;
  object-fit: cover;
}

.introduction .custom-card:hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #d97706;
}

.introduction .image-container {
  position: relative;
  display: inline-block;
}

.introduction .card-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Ripple effect when card is hove#D97706 */
.introduction .custom-card:hover .card-image {
  animation: ripple 1.2s infinite;
}

/* Ripple Animation */
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(202, 182, 151, 0.6);
    /* Darker beige */
  }

  70% {
    box-shadow: 0 0 30px 30px rgba(202, 182, 151, 0);
    /* Expand and fade */
  }

  100% {
    box-shadow: 0 0 0 0 rgba(202, 182, 151, 0);
    /* End with no shadow */
  }
}

.introduction .card-title {
  font-weight: bold;
  color: #343a40;
}

.introduction .card-text {
  color: #6c757d;
}

.introduction .custom-card:hover .card-title {
  color: #fff;
}

.introduction .custom-card:hover .card-text {
  color: #fff;
}

/* YOGA COURSE SECTION  */
.yoga_course_section .yoga-card {
  /* width: 300px; */
  height: 410px;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; */
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-bottom: 4px solid #d97706;
}

.yoga_course_section .yoga-card:hover {
  /* transform: scale(1.05); */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.yoga_course_section .yoga-icon {
  margin-bottom: 15px;
  transition: transform 0.5s;
  /* background: #fff; */
  /* white background */
  border-radius: 50%;
  /* make it circular */
  padding: 15px;
  /* space around icon */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #d97706;

  /* 3D shadow effect */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.08); */
}

.yoga_course_section .yoga-card img {
  width: 70px;
}

.yoga_course_section .yoga-card:hover .yoga-icon {
  transform: rotateY(180deg);
}

.yoga_course_section .visible {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.our_teachers .teacher-card {
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease;
  /* background-color: grey; */
}

.our_teachers .teacher-card:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.our_teachers .teacher-card img {
  width: 100%;
  height: 250px;
  border-bottom-left-radius: 70px !important;
  border-bottom-right-radius: 70px !important;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.our_teachers .social-icons {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: right 0.3s ease;
}

.our_teachers .teacher-card:hover .social-icons {
  right: 10px;
}

.our_teachers .social-icons a {
  background-color: #dc3545;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
}

.asso-img-box {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  margin-bottom: 20px;
}

.asso-img-box a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.asso-img-box a h5 {
  margin-bottom: 0px !important;
  margin-left: 5px;
  border-bottom: 4px solid #d97706;
  padding: 0px 0px 5px;
}

.asso-img-box img {
  width: 60px;
  height: 60px;
}

.associated-card {
  position: relative;
}

.associated-card h5 {
  margin-bottom: 30px;
}

.associated-card h5::before {
  content: "";
  position: absolute;
  bottom: 65px;
  left: 0;
  height: 2px;
  width: 150px;
  background-color: #d97706;
}

.associated-card .social-icons a {
  color: #000 !important;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 48px;
  background-color: #f2e9d2;
  color: var(--white-color);
  font-size: 16px;
  text-align: center;
  margin-right: 5px;
  border-radius: 50% !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.associated-card .social-icons a:hover {
  background-color: #d97706;
  rotate: 360deg;
  color: #fff;
}

.associated-card-img img {
  width: 100%;
  height: 100vh;
}

/* ============================ ABOUT PAGE  ================================*/

.main_about_us .big-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 5px;
}

.main_about_us ul {
  padding-left: 0px;
}

.main_about_us ul li {
  list-style: none;
}

.about-qoute {
  background-color: #f2e9d2;
  padding: 20px;
  border-left: 5px solid #d97706;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
}

.qoute .hindi {
  background-color: #f2e9d2;
  padding: 20px;
  border-left: 5px solid #d97706;
  margin-bottom: 30px;
}

.qoute .english {
  background-color: #f2e9d2;
  padding: 20px;
  border-left: 5px solid #d97706;
  margin-bottom: 30px;
}

.qoute .hindi p,
.qoute .english p {
  margin-bottom: 0px;
  font-weight: 600;
}

.about-background-image {
  position: relative;
  background-image: url("./images/banner1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 100px;
}

.about-background-image::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background-color: #000;
  opacity: 0.7;
}

.about-background-image .site-title {
  position: relative;
  color: #fff;
  z-index: 9;
}

.mission-row {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  /* Pure white background */
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.aim-row {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  /* Pure white background */
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.mission-row .mission-col,
.aim-row .mission-col {
  padding: 0;
}

.mission-img {
  width: 100%;
  height: 330px;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.about-why-choose .choose-card {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}

/* Gradient border always visible */
.about-why-choose .choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 4px;
  /* thickness of border */
  background: linear-gradient(90deg, #2d3748, #ff7e5f);
  /* gradient colors */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  /* don’t block clicks */
}

/* Image styling */
.choose-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: none;
  position: relative;
  z-index: 1;
}

/* Text */
.choose-card h5,
.choose-card p {
  text-align: center;
  position: relative;
  z-index: 1;
}

.choose-card h5 {
  margin-top: 20px;
  font-weight: 600;
  color: #2d3748;
}

.yoga-certified p {
  text-align: center;
}

.yoga-certified-card {
  margin-top: 30px;
  text-align: center;
  border: 1px dashed #000;
  padding: 20px;
  border-radius: 10px;
}

.yoga-certified-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.yoga-certified-card h6 {
  font-size: 20px;
}

.yoga-hour-card {
  text-align: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  padding: 10px;
  border-radius: 5px;
}

.yoga-hour-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.core-value-card {
  display: flex;
  align-items: center;
  justify-content: start;
  border: 1px solid #ddd;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 100%;
  margin-bottom: 20px;
  margin-top: 12px;
  padding: 20px;
  border-bottom: 4px solid #1f2937;
}

.core-value-card .core-img {
  height: 100px;
  border-radius: 50%;
  border: 1px dashed #d97706;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.core-value-card .core-img img {
  width: 50px;
  height: 50px;
}

.custom-section {
  background-color: #fff;
  border-radius: 100px 0 100px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  overflow: hidden;
  /* Ensure content stays inside the rounded box */
}

/* Styling the title span */
.custom-section .small-title {
  display: block;
  font-size: 14px;
  color: #6a5d79;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Custom button style */
.custom-section .btn-custom {
  background-color: #6a5d79;
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
  border: none;
  transition: background-color 0.3s ease;
}

.custom-section .btn-custom:hover {
  background-color: #543f5d;
}

/* Image wrapper to control image styling */
.custom-section .image-wrapper-2 {
  border-radius: 100px 0 100px 0 !important;
  overflow: hidden;
  margin-left: -11px;
}

.custom-section .rounded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Styling the section container */
.custom-section {
  background-color: #fff;
  border-radius: 100px 0 100px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  overflow: hidden;
  /* Ensure content stays inside the rounded box */
}

/* Styling the title span */
.small-title {
  display: block;
  font-size: 14px;
  color: #6a5d79;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Custom button style */
.btn-custom {
  background-color: #6a5d79;
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #543f5d;
}

/* Image wrapper to control image styling */

.rounded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-diagonal-section {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Diagonal effect using pseudo-elements */
.custom-diagonal-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6a5d79;
  /* Color behind the diagonal */
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
  z-index: 1;
}

/* Content side styling */
.custom-diagonal-section .content-side {
  position: relative;
  z-index: 2;
  /* To ensure content stays above the diagonal background */
  color: white;
  display: flex;
  align-items: center;
}

.custom-diagonal-section .content-wrapper {
  z-index: 2;
}

/* Custom button style */
.custom-diagonal-section .btn-custom {
  background-color: #fff;
  color: #6a5d79;
  border-radius: 20px;
  padding: 10px 20px;
  border: none;
  transition: background-color 0.3s ease;
}

.custom-diagonal-section .btn-custom:hover {
  background-color: #f2f2f2;
}

/* Image side styling */
.custom-diagonal-section .image-side {
  position: relative;
  z-index: 2;
}

.custom-diagonal-section .image-wrapper {
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  height: 100%;
}

.custom-diagonal-section .rounded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .custom-diagonal-section::before {
    clip-path: none;
  }

  .custom-diagonal-section .image-wrapper {
    clip-path: none;
  }
}

.testimonial-slider {
  position: relative;
  width: 100%;
  /* max-width: 992px; */
  margin: auto;
  overflow: hidden;
  text-align: center;
}

.testimonial {
  display: none;
  padding: 20px;
}

.testimonial img {
  width: 100px;
  border-radius: 50%;
  padding: 10px;
  border: 1px solid #d97706;
  margin-bottom: 20px;
}

.testimonial h5 {
  font-size: 16px !important;
}

.testimonial.active {
  display: block;
}

.controls {
  margin-top: 10px;
  display: none;
}

button {
  padding: 10px 20px;
  /* margin: 0 5px; */
}

.pagination {
  margin-top: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}

.accordion {
  /* max-width: 600px; */
  margin: 20px auto;
  /* border: 1px solid #f5f0e3; */
  border-radius: 5px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #f5f0e3;
  margin-bottom: 10px;
  /* border: 1px solid #D97706; */
}

.faq-subheading {
  font-size: 20px;
  text-align: center;
}

.accordion-header {
  background-color: #f5f0e3;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-top: 1px solid #d97706;
  border-right: 1px solid #d97706;
  border-left: 5px solid #d97706;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header span {
  font-size: 18px;
  font-weight: 500;
}

.accordion-header:hover {
  background-color: #f5f0e3;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  background-color: #f5f0e3;
  padding: 0 15px;
  border-left: 5px solid #d97706;
  border-right: 1px solid #d97706;
  border-bottom: 1px solid #d97706;
}

.accordion-content p {
  margin: 15px 0;
}

.icon {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.clients-review .card {
  border: none;
  border-radius: 15px;
  border: 1px solid #ddd;
  text-align: center;
  padding: 20px;
  margin: 12px;
  min-height: 300px;
}

.clients-review .card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.clients-review .card .stars {
  color: #ffca08;
  margin-bottom: 15px;
}

footer {
  background-image: url("./images/pattern-bg.webp");
  background-size: 10%;
  position: relative;
  padding: 60px 0px 20px;
  /* border-top: 1px solid #000; */
}

footer a {
  text-decoration: none;
  color: #000;
  transition: transform 0.3s;
}

footer a:hover {
  text-decoration: none;
  color: #000;
}

.contact-footer a:hover {
  transform: translateX(3px);
}

footer .list_icon i {
  font-size: 34px;
}

.footer-link {
  transition: transform 0.3s;
  /* Smooth transition */
  /* padding: 4px 0px; */
}

.footer-link:hover {
  transform: translateX(5px);
  /* Move 5px to the right on hover */
}

.footer-links {
  border-top: 1px solid #000;
}

.footer-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px !important;
  margin-bottom: 0px;
}

.footer-links ul li {
  list-style: none;
  margin: 5px;
}

.footer-links ul li a {
  color: #000;
  font-size: 16px;
  /* background-color: #7c7f38; */
  padding: 2px 15px;
  border-radius: 50px;
  border: 1px solid #000;
  transition: all 0.5s ease;
}

.footer-links ul li a:hover {
  background-color: #f2e9d2;
}

/* 100 Hour TTC PAGE  */
/* Banner Section */
.banner_100yttc {
  background: url("./images/banner/home-banner2.webp") no-repeat center
    center/cover;
  height: 40vh;
  position: relative;
  color: white;
}

/* Semi-transparent overlay */
.banner_100yttc .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 50% black overlay */
  z-index: 1;
}

/* Text section styles */
.banner_100yttc .text-section {
  position: relative;
  z-index: 2;
  /* Ensure the text appears above the overlay */
}

.banner_100yttc .text-section h1 {
  font-family: "Libertinus Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 34px;
  font-weight: 700;
  font-size: 2.2rem;
  color: white;
  text-align: center;
}

.banner_100yttc .text-section p {
  font-family: "Libertinus Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7rem;
  margin-top: 14px;
  color: white;
  text-align: center;
}

.banner_100yttc .text-section p > a {
  font-family: "Libertinus Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7rem;
  margin-top: 14px;
  color: #d97706;
  text-decoration: none;
}

.course-overview {
  background-color: #d97706;
  padding: 20px;
  position: sticky;
  top: 85px;
  border-radius: 5px;
  color: white;
}

.course-overview h5 {
  text-align: center;
}

.course-overview ul {
  padding-left: 0px;
}

.course-overview ul li {
  list-style: none;
  border: 0px;
  border-bottom: 1px dashed white;
  padding: 5px;
  margin-bottom: 0px;
}

.course-overview ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s ease-in-out;
}

.course-overview ul li a:hover {
  margin-left: 5px;
}

.course-overview .btn {
  width: 100%;
  background-color: #1f2937;
  color: #fff;
  font-size: 20px;
  border-radius: 25px;
  font-family: "Libertinus Sans";
  transition: all 0.3s ease;
}

.course-overview .btn:hover {
  background-color: #1f2937;
  color: #fff;
  border: 1px solid #1f2937;
  border-radius: 0px;
}

.section-second .right .carousel-control-next,
.section-second .right .carousel-control-prev {
  width: 10%;
  opacity: 1;
}

.prev-icon,
.next-icon {
  background-color: #d97706;
  border-radius: 0px;
  color: #000;
  padding: 5px 10px;
  opacity: 1;
  border-radius: 2px;
}

.right-content h3 {
  text-align: center;
  /* padding-top: 30px; */
}

.right-content td {
  /* font-size: 14px; */
  /* padding: 3px; */
}

.right-content {
  margin-top: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 5px;
}

#section2 th {
  background-color: #d97706;
  text-align: center;
  font-size: 18px;
}

#section2 td,
#section2 td,
#section3 td {
  text-align: center;
  font-size: 14px;
  padding: 3px;
}

.date-header {
  background-color: #d97706;
  text-align: center;
  margin: 0 0 20px;
  padding: 10px;
  border-radius: 5px;
}

#section2 .btn-date {
  border: 1px dashed #000;
  background-color: #d97706;
  width: 100%;
  font-weight: 600;
}

#section2 .btn-date.active-button {
  background-color: #fff;
}

#section2 .table .btn {
  width: 100%;
  background-color: #1f2937;
  color: #fff;
  padding: 5px;
  font-size: 14px;
  border-radius: 0px;
}

.right-content {
  padding: 20px;
}

.right-content ul li {
  font-size: 16px;
}

.inclusions {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
  height: 190px;
  margin-bottom: 20px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-bottom: 3px solid #d97706;
  transition: 0.2s ease-in-out;
}

.inclusions:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.inclusions h3 {
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
}

.right-content .img {
  width: 80px;
  height: 80px;
  text-align: center;
  border: 2px dashed #d97706;
  padding: 20px;
  border-radius: 50%;
}

.right-content .img img {
  width: 100%;
  height: 100%;
}

.certificate-slider .item {
  /* padding: 10px; */
  overflow: hidden;
  border-radius: 10px;
}

.certificate-slider .item img {
  width: 100%;
  height: 100%;
  scale: 1;
  border-radius: 10px;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
}

.certificate-slider .item img:hover {
  scale: 1.1;
}

.evaluation li {
  list-style: none;
}

.syllabus {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  margin-bottom: 30px;
  height: 150px;
  border-radius: 5px;
}

.syllabus p {
  text-align: center;
}

#section6 th {
  background-color: #d97706;
}

#excursions .inclusions {
  height: 230px;
}

#excursions h5 {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}

#excursions p {
  text-align: center;
}

.teacher-section .accommodation-slider .item {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  margin: 10px 5px;
  border-radius: 5px;
  padding: 10px;
  overflow: visible !important;
  background-color: #fff;
}
.teacher-section .accommodation-slider .item img {
  width: 100%;
  border-radius: 5px;
  border: none !important;
  padding: 0px;
  box-shadow: none;
}

.teacher-section .accommodation-slider .item .teacher-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 2px dashed #d97706;
  padding: 5px;
}

.teacher-section .accommodation-slider .item .teacher-card .text {
  margin-bottom: 5px;
}

.teacher-section .accommodation-slider .item .teacher-card img {
  height: 130px;
  width: 130px;
  border-radius: 50%;
  border: 2px dashed #d97706;
  padding: 5px;
  margin-top: 10px;
}

/* =================retreat page============== */

.retreat_banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.retreat_banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: zoomInAnimation 16s infinite;
  transition: transform 1s ease;
}

.retreat_banner img:nth-child(1) {
  animation-delay: 0s;
}

.retreat_banner img:nth-child(2) {
  animation-delay: 4s;
}

.retreat_banner img:nth-child(3) {
  animation-delay: 8s;
}

.retreat_banner img:nth-child(4) {
  animation-delay: 12s;
}

@keyframes zoomInAnimation {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  10% {
    opacity: 1;
    transform: scale(1.1);
  }

  40% {
    opacity: 1;
    transform: scale(1.1);
  }

  50% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* Container padding and row setup */
.detail {
  padding: 30px 0;
}

.detail ul {
  padding-left: 1rem;
}

.detail ul li {
  list-style: none;
  font-size: 16px;
}

/* Styling for sections on the left */
.detail section {
  padding: 10px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.detail h1 {
  margin-top: 10px;
}

.detail .right-content h4 {
  font-weight: bold;
}

/* Optional smooth scrolling for aesthetics */
html {
  scroll-behavior: smooth;
}

.detail #section1 img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.detail .table-header {
  background-color: #63e6be;
  /* Teal shade */
  color: white;
}

.real-price {
  font-size: 20px;
}

.left-content {
  margin-top: 50px;
}

.left-content .img {
  width: 80px;
  height: 80px;
  text-align: center;
  border: 2px dashed #d97706;
  padding: 20px;
  border-radius: 50%;
}

.left-content .img img {
  width: 100%;
  height: 100%;
}

#retreat-section4 th {
  background-color: #d97706;
}

.retreat-sticky-box .sticky-box {
  background-color: #d97706;
  padding: 10px;
  position: sticky;
  top: 85px;
  border-radius: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.retreat-sticky-box .sticky-box h3 {
  text-align: center;
}

.retreat-sticky-box .sticky-box ul {
  padding-left: 0px;
}

.retreat-sticky-box .sticky-box .card-body p {
  text-align: center;
}

.retreat-sticky-box .sticky-box ul li {
  list-style: none;
  border: 0px;
  border-bottom: 1px dashed #000;
  padding: 8px 3px;
  font-size: 18px;
  margin-bottom: 0px;
}

.retreat-sticky-box .book-button {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.retreat-sticky-box .sticky-box .btn {
  /* width: 100%; */
  background-color: #1f2937;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 0px;
}

.activities-in-rishikesh .activity-card {
  border: none;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  height: 600px;
  padding: 10px;
  border-radius: 5px;
}

.activities-in-rishikesh .activity-card:hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.activities-in-rishikesh .img-container {
  overflow: hidden;
  height: 220px;
}

.img-container .card-img-top {
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activities-in-rishikesh .card {
  height: 580px;
}

.activities-in-rishikesh .activity-card:hover .card-img-top {
  transform: scale(1.1);
}

.activities-in-rishikesh .card-body h5 {
  margin: 5px 0px 10px;
}

.paragraph_note {
  background-color: #d97706;
  padding: 10px 20px;
  margin-top: 40px;
  border-left: 5px solid #1f2937;
  /* border-radius: 12px; */
}

.paragraph_note p {
  color: #000;
  margin-bottom: 0px;
}

/* Section Styling */
.food_Section .collage-section {
  display: flex;
  align-items: center;
}

/* Collage Image Styling */
.food_Section .collage-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.food_Section ul {
  padding-left: 0px;
}

.food_Section ul li {
  font-size: 16px;
  list-style: none;
}

/* Add a hover effect to the images */
.food_Section .collage-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .food_Section .collage-section {
    flex-direction: column;
    /* Stack on mobile */
  }

  .food_Section .content {
    padding-left: 0;
    padding-top: 20px;
  }
}

/* Section Styling */
.accomodation_section .collage-section {
  display: flex;
  align-items: center;
}

.accomodation_section ul {
  padding-left: 0px;
}

.accomodation_section ul li {
  font-size: 16px;
  list-style: none;
}

/* Collage Image Styling */
.accomodation_section .collage-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Add a hover effect to the images */
.accomodation_section .collage-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .accomodation_section .collage-section {
    flex-direction: column;
    /* Stack on mobile */
  }

  .accomodation_section .content {
    padding-left: 0;
    padding-top: 20px;
  }
}

.our_popular_courses .book-button .btn {
  background-color: #1f2937;
  width: 100%;
  text-align: center;
  border-radius: 0px;
  color: #fff;
  font-size: 20px;
}

.teacher-section .card {
  border: none;
  border-radius: 10px;
  background: #fff;
  transition: all 0.4s ease;
  border: 1px solid #ddd;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
  margin: 15px;
  overflow: hidden;
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  /* ✅ ensures stacking */
}

.teacher-section .card-body {
  text-align: center;
  padding: 10px 0px 0px 0px;
  flex-grow: 1;
  /* ✅ lets text area adjust */
  transition: padding-bottom 0.4s ease;
}

.teacher-section .card-title a {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.3s ease;
}

.teacher-section .card-title a:hover {
  color: #d97706;
}

.teacher-section .card-text {
  font-size: 15px;
  color: #6b7280;
  margin-top: 8px;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Social icons (start hidden below card) */
/* Social icons (hidden, no space initially) */
.teacher-section .social-icons {
  background: #d97706;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  /* ⬅ removed initial padding */
  border-radius: 0 0 12px 12px;
  max-height: 0;
  /* ⬅ fully collapsed */
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

/* On hover → expand smoothly with padding */
.teacher-section .card:hover .social-icons {
  max-height: 70px;
  padding: 14px;
  /* ⬅ padding comes in only on hover */
  opacity: 1;
}

/* Icon animations */
.teacher-section .social-icons a {
  font-size: 22px;
  color: #fff;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.teacher-section .card:hover .social-icons a {
  opacity: 1;
  transform: translateY(0);
}

.teacher-section .social-icons a:nth-child(1) {
  transition-delay: 0.1s;
}

.teacher-section .social-icons a:nth-child(2) {
  transition-delay: 0.2s;
}

.teacher-section .social-icons a:nth-child(3) {
  transition-delay: 0.3s;
}

.teacher-section .social-icons a:nth-child(4) {
  transition-delay: 0.4s;
}

.owl-nav {
  display: none !important;
}

.owl-dots {
  display: none !important;
}

/* Section styling */
.fixed-background-section {
  position: relative;
  background-image: url("./images/webp-images/7-day-yoga-retreat.webp");
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Keeps background fixed when scrolling */
  height: 50vh;
  /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-background-section::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background-color: #000;
  opacity: 0.5;
}

/* Overlay text styling */
.overlay-text {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  z-index: 1;
}

.overlay-text h3 {
  /* font-size: 3rem; */
  margin-bottom: 10px;
  color: white;
  z-index: 1;
}

.overlay-text p {
  /* font-size: 1.5rem; */
  color: white;
  z-index: 1;
}

.book-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.book-item {
  background: #fff;
  border-radius: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  width: 350px;
  margin: 20px;
}

.book-item img {
  width: 100%;
  height: 400px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 10px;
  object-fit: cover;
}

.book-item h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

.book-item .book-button .btn {
  /* background-color: #1F2937; */
  border: 1px dashed #000;
  /* width: 100%; */
  color: #000;
  border-radius: 0px;
  padding: 5px 30px;
  border-radius: 25px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.book-item .book-button .btn:hover {
  background-color: #1f2937;
  border: 1px dashed #1f2937;
  color: #fff;
}

.our_popular_courses {
  padding: 20px;
}

.our_popular_courses .card {
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.our_popular_courses .card-img-top {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our_popular_courses .card:hover .card-img-top {
  transform: scale(1.1);
}

.our_popular_courses .card-body h5 {
  /* border-bottom: 2px solid teal; */
  padding-bottom: 5px;
  font-weight: bold;
}

/* =========================Food And Accomndations========================== */

.food-and-accomodation-banner-section .slideshow {
  position: relative;
  width: 100%;
}

.food-and-accomodation-banner-section .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slideAnimation 6s infinite;
}

.food-and-accomodation-banner-section .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures images cover the area */
}

/* Specific animation timing for each slide */
.food-and-accomodation-banner-section .slide:nth-child(1) {
  animation-delay: 0s;
}

.food-and-accomodation-banner-section .slide:nth-child(2) {
  animation-delay: 2s;
}

.food-and-accomodation-banner-section .slide:nth-child(3) {
  animation-delay: 4s;
}

.food-and-accomodation-banner-section .slide:nth-child(4) {
  animation-delay: 6s;
}

@keyframes slideAnimation {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  43% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.accommodation-slider .item img {
  width: 100%;
  /* height: 400px; */
  border-radius: 8px;
  border: 2px solid #1f2937;
  padding: 12px;
  background: #ffffff;
  /* or your desired background */
  box-shadow: inset 2px 2px 5px #ccc, inset -2px -2px 5px #fff,
    3px 3px 8px rgba(0, 0, 0, 0.3);
}

.accomodation ul {
  padding-left: 0px;
}

.accomodation ul li {
  list-style: none;
}

.accomodation .english {
  font-size: 20px;
  font-weight: 600;
  background-color: #f2e9d2;
  padding: 20px;
  border-left: 5px solid #d97706;
  margin: 15px 0px;
}

.food-back {
  position: relative;
  background-image: url("./images/banner2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 100px 50px;
}

.food-back::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background-color: #000;
  opacity: 0.7;
}

.food-back .site-title {
  position: relative;
  z-index: 9;
  color: #fff;
}

.food-back .btn {
  position: relative;
  z-index: 9;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  background-color: #d97706;
  padding: 10px 20px;
  border-radius: 0px;
}

.sound-healing .big-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 5px;
}

.sound-healing .site-heading {
  text-align: start;
}

.healing-qoute {
  background-color: #f2e9d2;
  padding: 20px;
  border-left: 5px solid #d97706;
  border-right: 5px solid #d97706;
  /* margin-bottom: 20px; */
  font-weight: 600;
  font-size: 18px;
}

.learn-sound-healing-card {
  text-align: center;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 20px 10px;
  border-radius: 5px;
  transition: 0.4s ease-in-out;
  /* height: 900px; */
}

.learn-sound-healing-card:hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.learn-img {
  height: 100px;
  width: 100px;
  overflow: hidden;
  padding: 10px;
  border: 1px dashed #dc3545;
  border-radius: 50%;
  margin-bottom: 20px;
  background-color: #f5f5f5;
}

.learn-sound-healing-card:hover .learn-img {
  background-color: #dc3545;
}

.learn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(34%) sepia(30%) saturate(2373%) hue-rotate(110deg)
    brightness(98%) contrast(99%);
}

.learn-sound-healing-card:hover .learn-img img {
  filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(0deg)
    brightness(100%) contrast(100%);
}

.learn-text p {
  font-size: 20px;
  font-weight: 600;
  color: #dc3545;
}

.learn-text ul {
  padding-left: 0px;
}

.learn-text ul li {
  border-bottom: 1px dashed #000;
  list-style: none;
  margin-bottom: 0px;
  padding: 5px;
}

.learn-text h5 > span {
  text-decoration: line-through;
  font-size: 14px;
}

.learn-text .btn {
  background-color: #1f2937;
  color: #fff;
  width: 100%;
  margin-top: 10px;
  border-radius: 0px;
}

.why-sound-healing-text .site-heading {
  text-align: start;
}

.why-sound-healing-text ul {
  padding-left: 0px;
}

.why-sound-healing-text ul li {
  list-style: none;
}

.why-sound-healing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.benefit-card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: 0.2s ease-in-out;
}

.benefit-card:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.benefit-card h2 {
  font-size: 1.25rem;
  margin-top: 15px;
  font-weight: bold;
}

.daily-schedule-sound-healing .table thead tr th {
  background-color: #d97706;
}

.right-side-content {
  width: 100%;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 5px;
}

.right-side-content span {
  color: #dc3545;
  font-size: 20px;
}

.right-side-content .btn {
  background-color: #1f2937;
  color: #fff;
  border-radius: 0px;
  width: 50%;
  margin: 20px 0px;
}

.sound-inclusion {
  padding: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  background-color: #f2e9d2;
  border-radius: 5px;
  min-height: 400px;
}

.sound-exclusive {
  padding: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 5px;
  min-height: 400px;
}

.sound-inclusion ul,
.sound-exclusive ul {
  padding-left: 0px;
}

.sound-inclusion ul li,
.sound-exclusive ul li {
  list-style: none;
}

.healing-teacher-card {
  text-align: center;
  margin-bottom: 20px;
  padding: 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 5px;
  min-height: 230px;
  transition: 0.2s ease-in-out;
}

.healing-teacher-card h5 {
  background-color: #d97706;
  padding: 10px 0px;
  border-radius: 5px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  transition: 0.2s ease-in-out;
  border-bottom: 2px dashed #000;
  /* border-radius: 20px; */
  /* border: 1px solid #000; */
}

.healing-teacher-card:hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.healing-teacher-card:hover h5 {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.healing-teacher-card p {
  padding: 30px;
}

.daily-schedule .table thead tr th {
  background-color: #d97706;
}

.faq-sound-healing .accordion {
  max-width: 100%;
}

/* Circle Image Styling */
.circle-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 50%;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================Reiki Course in Rishikesh */

.reiki-healing .site-heading {
  text-align: start;
}

.reiki-healing img {
  box-shadow: 0 0 3px 0 #8b8b8b;
  height: 90vh;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  padding: 5px;
  border: 2px solid #d97706;
}

.reiki-price-card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  position: relative;
  transition: 0.2s ease-in-out;
}

.reiki-price-card .btn {
  background-color: #1f2937;
  border-radius: 0px;
  color: #fff;
  font-size: 18px;
}

.reiki-level .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reiki-level .reiki-row {
  margin: 50px 0px;
}

.reiki-level .reiki-row .col-md-5 {
  padding-left: 0px;
}

.reiki-level ul {
  padding-left: 0px;
}

.reiki-level ul li {
  list-style: none;
}

.reiki-level img {
  border-radius: 5px;
  width: 100%;
}

.benefit-reiki-card {
  margin-top: 30px;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 5px;
  border-bottom: 5px solid #dc3545;
}

.benefit-reiki-card ul {
  padding-left: 0px;
}

.benefit-reiki-card ul li {
  list-style: none;
}

.reiki-healing-mirecle ul {
  padding-left: 0px;
}

.reiki-healing-mirecle ul li {
  list-style: none;
}

/* ======================About Teachers========================= */
.our-teachers .row {
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 20px;
  /* little more padding for breathing space */
  background: #ffffff;
  /* pure white background */
  border-radius: 12px;
  /* smooth corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.teacher-left-side {
  float: left;
  padding: 0;
  width: 100%;
  border-radius: 10px;
}

.teacher-left-side img {
  width: 100%;
  border-radius: 0 0 166px;
}

.teacher-left-side-2 {
  float: left;
  padding: 0;
  width: 100%;
  border-radius: 10px;
}

.teacher-left-side-2 img {
  width: 100%;
  border-radius: 0 0 0 166px;
}

.teacher-right-side {
  padding: 20px;
  width: 100%;
}

.teacher-right-side span {
  background-color: #d97706;
  color: white;
  padding: 5px 10px;
  margin-right: 10px;
  border-radius: 5px;
}

/* =====================gallery========================= */

.gallery-section .button-section {
  background-color: #d97706;
  padding: 10px;
}

.gallery-btn {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.gallery-section .btn-filter {
  color: #000;
  margin-left: 16px;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px dashed #000;
  font-family: "Aclonica";
}

.gallery-section .btn-filter.active {
  background-color: #fff;
}

.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
  /* padding: 12px; */
  margin-top: 12px;
}

.gallery-section .gallery-item:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.gallery-section .gallery-img {
  width: 100%;
  height: auto;
  transition: none;
  border-radius: 5px;
}

.gallery-section .gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-section .filter {
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: scale(0.7);
  display: none;
}

.gallery-section .filter.show {
  opacity: 1;
  transform: scale(1);
  display: block;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
}

.modal-image {
  width: 100%;
  border-radius: 12px;
  /* max-height: 500px; */
  width: 100%;
}

.modal-close,
.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ab6a49;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}

.modal-close {
  top: 10px;
  right: 10px;
  transform: none;
  font-size: 1.2rem;
  border-radius: 50%;
  padding: 5px 14px;
}

.modal-prev {
  left: 0;
}

.modal-next {
  right: 0;
}

/* ======================contact page===================== */

/* Contact Info section */
.contact-page .contact-info {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  /* padding: 20px; */
}

.contact-card {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
  background-color: #f2e9d2;
}

.contact-card i {
  font-size: 30px;
  color: #d97706;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background: #fff;
  border-radius: 50px;
}

.contact-card a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  margin: 10px 0px;
}

.get-in-touch {
  padding: 0px 0px 50px;
}

/* Page header styling */
.contact-header {
  text-align: center;
  padding: 40px 0;
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  animation: fadeInDown 1s ease;
}

.social-item h5 {
  font-size: 18px;
  color: #000;
}

.contact-page .contact-info div {
  flex: 1;
  padding: 15px;
  text-align: center;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  animation: fadeInUp 0.5s ease;
}

.contact-form h3 {
  font-size: 1.8rem;

  margin-bottom: 20px;
  text-align: center;
}

/* Map container */
.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  animation: fadeIn 0.7s ease;
}

.map-container iframe {
  width: 100%;
  height: 550px;
  border: 0;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ===========================Testimonial======================= */
.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
}

.testimonial-container .card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  /* White with subtle light gray */
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.15);
  /* Shadow using #1F2937 */
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  max-width: 360px;
  border: 1px solid rgba(31, 41, 55, 0.1);
  /* Subtle border with #1F2937 */
}

/* Card hover effect */
.testimonial-container .card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.25);
  /* Deeper shadow with #1F2937 */
}

/* Quote icon styling */
.quote-icon {
  position: absolute;
  top: -20px;
  left: 20px;
  background: linear-gradient(45deg, #d97706, #f59e0b);
  /* Amber gradient */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.2);
  /* Shadow with #1F2937 */
}

/* Quote icon hover effect */
.card:hover .quote-icon {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 16px rgba(31, 41, 55, 0.3);
}

.quote-icon::before {
  content: "“";
  font-size: 48px;
  color: #ffffff;
  /* White for contrast */
  font-family: "Georgia", serif;
  margin-top: 5px;
}

/* Profile image styling */
.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 20px auto 15px;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.1);
  transition: transform 0.3s ease;
}

.card:hover .profile-img {
  transform: scale(1.05);
}

.name {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-family: "Open Sans", sans-serif;
}

.text.expanded {
  max-height: 500px;
}

.see-more {
  color: #d97706;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(217, 119, 6, 0.1);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.see-more:hover {
  background: #d97706;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  padding: 10px;
}

.video-thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
}

#videoModal .modal-content {
  position: relative;
  width: 100%;
}

/* ===================faq's=========================== */

.faq-background .faq-item {
  margin-bottom: 10px;
  perspective: 1200px;
}

.faq-background .card {
  border: none;
  border-radius: 14px;
  background: white;
}

.faq-background .card-header {
  cursor: pointer;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, white, #f9fafb);
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-background .card-header i {
  transition: transform 0.4s ease, color 0.4s ease;
  color: #f59e0b;
  font-size: 1.25rem;
}

.faq-background .card-header:hover i {
  color: #1f2937;
}

.faq-background .card-body {
  background: white;
  padding: 22px;
  font-size: 16px;
  line-height: 1.65;
  color: #1f2937;
  border-top: 2px solid #f59e0b30;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.faq-background .faq-item.active .card-header div i {
  transform: rotate(0deg);
}

.faq-background .faq-item.active .card-header i {
  transform: rotate(180deg) scale(1.15);
}

.faq-background {
  padding: 80px 0;
  background: white;
  border-radius: 18px;
  box-shadow: inset 0 0 50px rgba(31, 41, 55, 0.1);
  position: relative;
  /* overflow: hidden; */
}

.faq-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at 25% 35%, rgba(245, 158, 11, 0.15), transparent 70%); */
  pointer-events: none;
}

.faq-background .faq-div {
  margin-bottom: 55px;
}

.faq-background .site-heading {
  text-align: center;
  margin-bottom: 35px;
}

.faq-background .site-title-tagline {
  font-size: 1.15rem;
  color: #f59e0b;
  text-transform: capitalize;
  letter-spacing: 1.8px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(31, 41, 55, 0.1);
}

.faq-background .site-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin-top: 10px;
  text-shadow: 0 2px 3px rgba(31, 41, 55, 0.1);
}

.line-img img {
  max-width: 350px;
  /* margin: 0 auto 35px; */
  filter: drop-shadow(0 2px 3px rgba(31, 41, 55, 0.2));
}

.faq-sticky-box .sticky-box {
  background-color: #d97706;
  padding: 20px;
  position: sticky !important;
  color: white;
  top: 85px;
  border-radius: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.faq-sticky-box .sticky-box h3 {
  text-align: center;
  color: white;
}

.faq-sticky-box .sticky-box ul {
  padding-left: 0px;
  color: white;
}

.faq-sticky-box .sticky-box p {
  text-align: center;
  color: white;
}

.faq-sticky-box .sticky-box ul li {
  list-style: none;
  border: 0px;
  border-bottom: 1px dashed white;
  padding: 8px 3px;
  font-size: 18px;
  margin-bottom: 0px;
}

.faq-sticky-box .sticky-box a {
  text-decoration: none;

  color: white;
}

.follow-us {
  margin-top: 30px;
}

.follow-us ul li {
  border-bottom: 0px dashed white !important;
}

.follow-us ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  padding: 0px 30px !important;
}

.follow-us ul li a i {
  font-size: 30px;
  transition: all 0.5s ease;
  color: white;
}

.follow-us ul li a i:hover {
  color: white;
  scale: 1.2;
}

/* Fade-in Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show mobile logo and hide the center one on small screens */
@media (max-width: 768px) {
  section {
    padding: 20px 0px;
  }
  .top-header {
    padding: 10px 10px;
    display: block;
  }

  .top-add {
    display: none;
  }

  .top-header .contact-info a {
    margin-right: 0px;
    font-size: 12px;
  }

  .top-header .contact-info {
    margin-bottom: 0px;
    gap: 10px;
    justify-content: center;
    /* width: 59%; */
  }
  .social-icons {
    display: none;
  }

  /* ===========home banner============ */
  section .container {
    padding: 0px 10px;
  }

  footer .container {
    padding: 0px 10px;
  }

  .top-header .contact-info span {
    margin-right: 10px;
    /* #D97706uce right margin for smaller screens */
  }

  .navbar-logo-mobile {
    display: block;
  }

  .navbar-logo {
    display: none;
  }

  .navbar-nav .nav-link {
    padding: 10px 15px !important;
    text-align: center;
    font-size: 20px;
  }

  .dropdown-menu .dropdown-item {
    text-align: center;
    font-size: 17px;
  }

  .navbar {
    justify-content: space-between;
    padding: 5px 10px;
  }

  .navbar-nav {
    flex-direction: column;
    margin-top: 50px;
  }

  .nav-item {
    margin-bottom: 10px;
  }

  /* Disable hover effect on small screens */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .home_banner {
    height: 25vh;
  }

  /* ===========home-about============ */
  .about-image-slider {
    margin-bottom: 20px;
  }

  .yoga_courses .yoga_card {
    height: 325px;
    margin-top: 20px;
  }

  .yoga_courses .right_content {
    padding-left: 12px;
  }

  .book_detail_button {
    display: flex;
  }

  .book_detail_button .btn-one {
    /* margin-bottom: 20px; */
  }

  .book_detail_button .btn-one,
  .book_detail_button .btn-two {
    width: 50%;
    padding: 10px 8px;
  }

  #animated-image-yoga {
    margin-bottom: 20px;
  }

  .retreat-card {
    margin-bottom: 20px;
  }

  .water-ripple {
    top: 70%;
    left: 50%;
  }

  .background-image {
    padding: 50px 10px;
  }

  .yoga-card {
    padding: 20px 0px;
  }

  .classes-card-img-1 {
    padding-left: 12px;
  }

  .classes-card-img-2 {
    padding-right: 12px;
  }

  /* =====home-certified========= */

  .certified-img {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links ul {
    display: block;
  }

  .banner_100yttc {
    height: 65vh;
  }

  .main_about_us .big-image {
    height: auto;
  }

  .about-background-image {
    padding: 30px 0px;
  }

  /* ===========gallery=============== */

  .gallery-btn {
    display: block;
  }

  .gallery-section .btn-filter {
    margin-left: 0px;
    margin-bottom: 10px;
  }

  /* ==========contact us================ */

  .contact-page .contact-info {
    display: block;
  }

  .contact-card {
    margin-bottom: 20px;
  }

  /* ======footer======= */
  .footer-links ul li a {
    font-size: 12px;
  }

  /* ======100hour ttc===== */
  .right {
    margin-top: 20px;
  }
  .right-content {
    padding: 10px;
    margin-top: 20px;
  }
}

.btn-pill {
  border-radius: 50rem !important;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .btn-pill {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }
}

.course-highlights {
  background-color: #d97706 !important;
  padding: 10px;
  /* position: sticky; */
  /* top: 85px; */
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 16px !important;
}

.btn-pill-2 {
  border-radius: 50rem;
  padding: 0.5rem 1.5rem;

  font-size: 18px;

  background-color: #1f2937 !important;
  color: white !important;
  padding: 8px 20px !important;
}

.price-box {
  /* font-size: 1.2rem; */
  padding: 12px;
  font-weight: 600;
  border-radius: 0.5rem;
  /* min-width: 220px; */
  /* text-align: center; */
}

@media (max-width: 767.98px) {
  .btn-pill-2 {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

.our-spiritual-guru {
  /* padding: 20px; */
  margin: 0 auto;
  overflow-x: hidden;
  /* Prevent horizontal scrollbar */
  background-color: #fdfbf9;
}

.swiper-container {
  width: 100%;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;

  /* Ensure no overflow from Swiper */
}

.guru-item {
  text-align: center;
}

.guru-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto;
}

.guru-item p {
  margin: 10px 0 0;
  font-size: 16px;
  color: #333;
}

.swiper-button-prev,
.swiper-button-next {
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 24px;
}

@media (max-width: 768px) {
  .guru-item img {
    width: 120px;
    height: 120px;
  }

  .guru-item p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .guru-item img {
    width: 100px;
    height: 100px;
  }

  .guru-item p {
    font-size: 12px;
  }
}

/* ======================new style==================== */

.feature-card {
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
  min-height: 200px;
  padding: 30px 20px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: block;
}

.feature-title {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.dotted-border-left {
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  border-left: 2px dotted #242b36;
  z-index: 1;
}

@media (max-width: 991px) {
  .dotted-border-left {
    display: none;
  }
}

@media (max-width: 768px) {
  .feature-title {
    font-size: 13px;
  }

  .feature-icon img {
    width: 60px;
    height: 60px;
  }

  .feature-card {
    min-height: 150px;
    padding: 20px 15px;
  }
}

.section-bg {
  background-color: #f9fafb;
  padding: 50px 20px;
}

.course-container {
  /* max-width: 900px; */
  background: #fff;
  border-radius: 5px;
  /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
  overflow: hidden;
  border: 1px solid #ddd;
}

.course-container .row-in {
  padding: 10px;
}

.course-img {
  position: relative;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discount-tag {
  position: absolute;
  top: 10px;
  left: 12px;
  background: #d97706;
  color: white;
  padding: 5px 12px;
  font-size: 14px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-weight: bold;
}

.course-content {
  padding: 15px;
}

.course-content span {
  font-family: "Libertinus Sans", sans-serif;
  color: #d97706 !important;
  font-size: 18px;
  font-weight: 700;
  padding-right: 12px;
  padding-left: 12px;
}

.course-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
  padding-right: 12px;
  padding-left: 12px;
}

.course-content p {
  line-height: 1.6;
  margin-bottom: 10px;
  color: #555;
  padding-right: 12px;
  padding-left: 12px;
}

.course-details {
  margin-bottom: 20px;
}

.course-details p {
  margin-bottom: 5px;
}

.course-details strong {
  color: #000;
}

.pricing {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #1f2937;
}

.price del {
  color: #888;
  margin-left: 8px;
  font-size: 16px;
}

.price h5 {
  margin-bottom: 0px;
}

.buttons {
  /* margin-top: 20px; */
  gap: 15px;
  padding-right: 12px;
  padding-left: 12px;
}

.btn-primary {
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  background: #1f2937;
  color: white;
  transition: 0.3s;
  border: 2px solid #1f2937;
}

.btn-primary:hover {
  background: transparent;
  border: 2px solid #d97706;
  color: #d97706;
}

.btn-outline {
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #1f2937;
  color: #1f2937;
  background: transparent;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #d97706;
  color: white;
  border: #d97706;
}

@media (max-width: 768px) {
  .course-img {
    height: 250px;
  }
}

.why_choose .feature-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.why_choose .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.why_choose .feature-item p {
  margin: 0;
  color: #333;
}

.why_choose .feature-item strong {
  color: #000;
}

.why_choose img:not(.feature-icon) {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  max-height: 900px;
  /* Adjust this value as needed */
  aspect-ratio: 3/3;
  /* Optional: Maintains a specific aspect ratio */
}

.schedule-table {
  margin: 20px 0;
}

.schedule-table th {
  background-color: #d97706;
  color: white;
  padding: 12px;
}

.schedule-table td {
  vertical-align: middle;
  text-align: center;
}

.schedule-table td div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule-table td span.number {
  color: #6c757d;
  font-weight: lighter;
  align-self: flex-start;
}

.schedule-table td span.text {
  text-align: center;
}

.day-off {
  background-color: #fee2c5 !important;
  /* Light orange background */
  color: #721c24 !important;
  border: 2px solid grey !important;
}

.note {
  background-color: #e9ecef;
  padding: 10px;
  border-left: 4px solid #dc3545;
}

@media (max-width: 768px) {
  .schedule-table th,
  .schedule-table td {
    font-size: 0.9em;
  }
}

@media (max-width: 576px) {
  .schedule-table th,
  .schedule-table td {
    font-size: 0.8em;
    padding: 5px;
  }
}

.yoga-certification-section {
  background-image: url("./images/webp-images/home-yoga-alliance.webp");
  /* Replace with your background image URL */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Black overlay with 60% opacity */
  z-index: 1;
}

.yoga-certification-section .container {
  position: relative;
  z-index: 2;
}

.yoga-certification-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.yoga-certification-section h4 {
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 2px solid white;
}

.yoga-certification-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
}

@media (max-width: 768px) {
  .yoga-certification-section h2 {
    font-size: 2rem;
  }

  .yoga-certification-section h4 {
    font-size: 1.25rem;
  }

  .yoga-certification-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .yoga-certification-section h2 {
    font-size: 1.75rem;
  }

  .yoga-certification-section h4 {
    font-size: 1.1rem;
  }

  .yoga-certification-section p {
    font-size: 0.9rem;
  }
}

.why-choose-wellness-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  padding: 20px;
  text-align: center;
  height: 100%; /* Ensures all cards in a row have the same height */
}

.card-icon {
  width: 60px; /* Adjust size as needed */
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain; /* Ensures the image scales properly without distortion */
}

.booking-section .yoga-card {
  background-color: white;
  border-radius: 15px;
  /* Rounded corners for the container */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
}

.booking-section .text-section {
  display: flex;
  align-items: center;
  padding: 20px;
  position: relative;
}

.booking-section .text-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  /* Width of the vertical line */
  height: 80%;
  /* Height of the vertical line */
  background-color: #d97706;
  /* Orange color */
  border-radius: 2px;
}

.booking-section .button-section {
  background-color: #d97706;
  /* Red background color */
  border-radius: 0 15px 15px 0;
  /* Rounded corners on the right side */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.booking-section .button-section a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
}

.wellness-retreat-highlights {
  background: #f7f7f7;
}

.wellness-retreat-highlights .highlights {
  margin-bottom: 15px;
  /* Space between highlights */
  gap: 10px;
  /* Space between icon and text */
}

.wellness-retreat-highlights .highlights img.feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  /* Prevents icon from shrinking */
}

.wellness-retreat-highlights .highlights li {
  margin: 0;
  /* Remove default list margins */
  margin-left: 0;
  /* No extra left margin since gap handles spacing */
  list-style: none;
  /* Ensure no bullets */
}

/* Optional: Ensure the ul doesn't add extra padding */
.wellness-retreat-highlights ul {
  padding-left: 0;
}

.schedule-header {
  background-color: #d97706;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 12px 8px;
  font-size: 16px;
}

.schedule-row {
  border-bottom: 1px solid #dee2e6;
}

.time-col {
  padding: 12px 15px;
  font-weight: 500;
  color: #333;
  vertical-align: middle;
}

.activity-col {
  padding: 12px 15px;
  color: #333;
  vertical-align: middle;
}

.schedule-table {
  border: none;
  margin-bottom: 0;
}

.schedule-table td {
  border: none;
  border-bottom: 1px solid #dee2e6;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.day-container {
  border: 1px solid #d97706;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .schedule-header {
    font-size: 14px;
    padding: 10px 5px;
  }

  .time-col,
  .activity-col {
    padding: 8px 10px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .schedule-header {
    font-size: 12px;
    padding: 8px 5px;
  }

  .time-col,
  .activity-col {
    padding: 6px 8px;
    font-size: 13px;
  }
}

.accommodation-section {
  padding: 50px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h3 {
  font-size: 1.25rem;
  /* Red color for the subtitle */
  font-weight: 500;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
}

.divider-img {
  margin: 20px auto;
  width: 150px;
  display: block;
}

.accommodation-content .text-block {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #555;
}

.accommodation-content .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.accommodation-content .feature-item i {
  font-size: 1.5rem;
  /* Red color for icons */
  margin-right: 15px;
  margin-top: 3px;
  /* Adjust icon alignment */
}

.accommodation-content .feature-item span {
  font-weight: bold;
  color: #333;
}

.accommodation-content .feature-item p {
  margin-bottom: 0;
  color: #666;
}

.image-gallery img {
  width: 100%;
  height: 200px;
  /* Fixed height for uniform images */
  object-fit: cover;
  /* Ensures images cover the area without distortion */
  border-radius: 8px;
  /* Slightly rounded corners for images */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .accommodation-content .feature-item i {
    font-size: 1.25rem;
  }

  .image-gallery img {
    height: 150px;
  }
}

.schedule-table-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background-color: white;
  border: 1px solid #e5e7eb;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.schedule-table thead th {
  background-color: #d97706;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 18px 16px;

  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-table thead th:last-child {
  border-right: none;
}

.schedule-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 16px;

  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  border-right: 1px solid #f3f4f6;
}

.schedule-table tbody td:last-child {
  border-right: none;
}

.schedule-table tbody tr:hover {
  background-color: #f9fafb;
}

.month-row {
  background-color: #f8f9fa !important;
}

.month-row td {
  color: #6b7280 !important;
  font-weight: 600;

  padding: 20px 16px !important;
  text-align: center;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e5e7eb !important;
}

.date-cell {
  font-weight: 500;
  color: #111827;
}

.duration-cell {
  color: #6b7280;
  font-weight: 500;
}

.price-cell {
  font-weight: 600;
  color: #059669;
}

@media (max-width: 768px) {
  .schedule-table-container {
    margin: 0 -10px;
    border-radius: 8px;
  }

  .schedule-table thead th,
  .schedule-table tbody td {
    padding: 12px 8px;
  }

  .btn-apply {
    padding: 8px 16px;
  }
}
.online-fees-box {
  background: #fff0e6;
  border: 2px solid #d97706;
  padding: 25px;
  border-radius: 12px;
  height: 100%;
}

.online-fees-box .price {
  font-size: 40px;
}

.online-fees-box a {
  text-decoration: none;
  color: #d97706;
  width: 60% !important;
}

.online-fees-box .price-btn {
  background: white;
  border: 2px solid #d97706;
  padding: 10px 25px;
  display: inline-block;
  font-weight: 600;
  color: #d97706;
  background-color: #fff;
  transition: all 0.5s ease-in;
  font-size: 15px;
}

.online-fees-box .price-btn:hover {
  background-color: #d97706;
  color: #fff;
}


.internal-courses {
  border-radius: 15px;
  padding: 30px !important;
}
.course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  padding: 10px !important;
}
.course-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.course-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.course-card a {
  text-decoration: none;
}

.course-details {
  /* color: #f4a261; */
  font-weight: bold;
}
.card-title a {
  color: Black;
  text-decoration: none;
  font-size: 25px;
}
.card-title a:hover {
  color: Black;
}

.testimonial-section .testimonial-slider .item-1 {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  margin: 15px 10px;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;
  align-items: stretch;
  height: 400px;
}

.testimonial-section .testimonial-slider .item-1:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.2);
}

.testimonial-section .testimonial-slider .item-1 img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #d97706;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-section .testimonial-slider .item-1 .testimonial-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  padding: 15px;
  height: 100% !important;
  /* Ensure card takes full height */
}

.testimonial-section .testimonial-slider .item-1 .testimonial-card .name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-section .testimonial-slider .item-1 .testimonial-card .text {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
  flex-grow: 1;
  /* Allows text to take available space */
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-section .testimonial-slider .item-1 .testimonial-card .rating {
  color: #d97706;
  font-size: 20px;
  letter-spacing: 2px;
}
