/* =========================
   ROOT VARIABLES
========================= */
@font-face {
  font-family: "Croogla";
  src:
    url("../fonts/Croogla4F.woff2") format("woff2"),
    url("../fonts/Croogla4F.woff") format("woff"),
    url("../fonts/Croogla4F.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Croogla", sans-serif;
}

:root {
  --primary-color: #f58634;
  --secondary-color: #244655;
  --white-color: #ffffff;
  --black-color: #000000;
  --heading-font: "Croogla", sans-serif;

  --paragraph-font: "Croogla", sans-serif;
}

/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--paragraph-font);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
  display: block;
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font);
  color: var(--secondary-color);
  font-weight: 700;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--heading-font);
}

/* ===================== ASHTANGA SECONDARY BUTTON ===================== */
/* ===================== ASHTANGA SECONDARY BUTTON ===================== */
/* ===================== ASHTANGA SECONDARY BUTTON ===================== */
.ashtanga-secondary-btn {
  --c1: white;
  --c2: #f58634;
  --size-letter: 17px;

  display: inline-block;
  /* Important for <a> tag */
  padding: 0.85em 1.8em;
  font-size: var(--size-letter);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  /* Link ke underline hatane ke liye */
  font-family: "Croogla", sans-serif;
  background-color: transparent;
  color: var(--c2);
  border: calc(var(--size-letter) / 5.5) solid var(--c2);
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: 350ms cubic-bezier(0.83, 0, 0.17, 1);
}

.ashtanga-secondary-btn .text {
  position: relative;
  z-index: 1;
  transition: color 700ms ease;
}

.ashtanga-secondary-btn::before,
.ashtanga-secondary-btn::after {
  content: "";
  width: 150%;
  aspect-ratio: 1/1;
  scale: 0;
  transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
  background-color: var(--c2);
  border-radius: 50%;
  position: absolute;
  translate: -50% -50%;
}

.ashtanga-secondary-btn::before {
  top: 0;
  left: 0;
}

.ashtanga-secondary-btn::after {
  top: 100%;
  left: 100%;
}

.ashtanga-secondary-btn:hover {
  color: var(--c1);
}

.ashtanga-secondary-btn:hover .text {
  color: var(--c1);
}

.ashtanga-secondary-btn:hover::before,
.ashtanga-secondary-btn:hover::after {
  scale: 1;
}

/* ===================== ASHTANGA PRIMARY BUTTON ===================== */
.ashtanga-primary-btn {
  --c1: #f58634;
  --c2: #244655;
  --size-letter: 17px;
  font-family: "Croogla", sans-serif;
  display: inline-block;
  padding: 0.85em 1.8em;
  font-size: var(--size-letter);
  font-weight: 700;
  /* text-transform: uppercase; */
  letter-spacing: 1.5px;
  text-decoration: none;

  background-color: var(--c2);
  color: white;
  border: calc(var(--size-letter) / 5.5) solid var(--c2);
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: 350ms cubic-bezier(0.83, 0, 0.17, 1);
}

.ashtanga-primary-btn .text {
  position: relative;
  z-index: 1;
  transition: color 700ms ease;
}

.ashtanga-primary-btn::before,
.ashtanga-primary-btn::after {
  content: "";
  width: 150%;
  aspect-ratio: 1/1;
  scale: 0;
  transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
  background-color: var(--c1);
  border-radius: 50%;
  position: absolute;
  translate: -50% -50%;
}

.ashtanga-primary-btn::before {
  top: 0;
  left: 0;
}

.ashtanga-primary-btn::after {
  top: 100%;
  left: 100%;
}

.ashtanga-primary-btn:hover {
  background-color: transparent;
  color: white;
  border-color: #f58634;
}

.ashtanga-primary-btn:hover .text {
  color: white;
}

.ashtanga-primary-btn:hover::before,
.ashtanga-primary-btn:hover::after {
  scale: 1.2;
}

.heading {
  color: #f58634;
}

/* =========================
   HEADER
========================= */
.main-header {
  background: var(--secondary-color);
  padding: 2px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  padding: 0;
}

/* LOGO */
.logo img {
  width: 230px;
  object-fit: contain;
}

/* NAV LINKS */
.navbar-nav {
  gap: 35px;
  align-items: center;
}

.nav-link {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color) !important;
  padding: 0 !important;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active,
.nav-link.show {
  color: var(--primary-color) !important;
}

/* DROPDOWN */
.dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 10px;
  padding-top: 15px;
  min-width: 340px;
  background: #f3f3f3;
  margin-top: 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 500;
  color: var(--secondary-color);
  padding: 16px 22px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  border-radius: 4px;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.dropdown-toggle::after {
  display: none !important;
}

/* HEADER BUTTON */
.header-btn {
  background: var(--primary-color);
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  width: 220px;
  height: 72px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s ease;
  border: none;
}

.header-btn .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-btn .icon-box i {
  color: var(--white-color);
  font-size: 18px;
}

.header-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* =========================
   DESKTOP — HOVER DROPDOWN
========================= */
@media (min-width: 992px) {
  .navbar .dropdown {
    position: relative;
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    pointer-events: none;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Desktop pe dd-icon hide karo */
  .dd-icon {
    display: none;
  }
}

/* =========================
   MOBILE NAVBAR — LEFT TO RIGHT SLIDE
========================= */
@media (max-width: 991px) {
  /* OVERLAY */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }

  .nav-overlay.active {
    display: block;
  }

  /* SIDEBAR */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 9999;
    padding: 80px 28px 40px;
    transition: left 0.4s ease;
    display: block !important;
    overflow-y: auto;
    border-radius: 0 20px 20px 0;
    margin-top: 0;
  }

  .navbar-collapse.show {
    left: 0;
  }

  /* NAV ITEMS */
  .navbar-nav {
    gap: 0;
    align-items: start;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link {
    padding: 16px 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* MOBILE DROPDOWN MENU */
  .dropdown-menu {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0 !important;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    padding: 12px 16px;
    margin-bottom: 0;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-color);
  }

  /* + / × ICON */
  .dd-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: white;
    transition:
      transform 0.3s ease,
      border-color 0.3s ease,
      color 0.3s ease;
    flex-shrink: 0;
  }

  .dropdown-toggle.open .dd-icon {
    transform: rotate(45deg);
    border-color: var(--primary-color);
    color: var(--primary-color);
  }

  /* BUTTON */
  .header-btn {
    margin-top: 28px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}

/* =========================
VIDEO HERO SECTION
========================= */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */

.hero-video {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: translate(-50%, -50%);
}

/* DARK OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.25);
}

/* MOBILE */

@media (max-width: 767px) {
  .hero-section {
    height: 70vh;
  }
}

/* =========================
   FOOTER
========================= */
.main-footer {
  background: var(--secondary-color);
  padding: 60px 0;
  text-align: center;
}

.footer-content h3 {
  color: var(--white-color);
  margin-bottom: 15px;
}

.footer-content p {
  color: #ddd;
}

/* =========================
   RESPONSIVE — TYPOGRAPHY
========================= */
@media (max-width: 991px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  .hero-section {
    height: auto;
    padding: 120px 0;
  }
}

/* =========================
ABOUT SECTION
========================= */

.about-section-main-page {
  padding: 50px 0px;
  overflow: hidden;
}

/* IMAGE GRID */

.about-section-main-page .image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* GRID ITEM */

.about-section-main-page .grid-item {
  border-radius: 14px;
  overflow: hidden;
  height: 270px;
}

.about-section-main-page .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LOGO BOX */

.about-section-main-page .logo-box {
  background: #244655;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;
}

.about-section-main-page .logo-box img {
  width: 75%;
  height: auto;
  object-fit: contain;
}

/* =========================
RESPONSIVE
========================= */

/* IMPORTANT:
Keeping SAME desktop layout in mobile
as requested
*/

@media (max-width: 991px) {
  .about-section-main-page {
    padding: 50px 20px;
  }

  .about-section-main-page .grid-item {
    height: 260px;
  }
}

.ashtanga-welcome {
  background: #f5f5f5;
    padding: 50px 0px;
margin-top: 80px;
}

.ashtanga-course-intro-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--white-color);
  min-height: 250px;
  border: 1.5px solid rgba(36, 70, 85, 0.55);
  transition: 0.45s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Hover Background */
.ashtanga-course-intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transition: 0.6s ease;
  z-index: 0;
}

.ashtanga-course-intro-card:hover::before {
  width: 100%;
}

.ashtanga-course-intro-content {
  position: relative;
  z-index: 2;
  padding: 12px 8px;
  width: 58%;
  transition: 0.4s;
}

.ashtanga-course-intro-content p {
  color: #5e5e5e;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 0;
  transition: 0.4s;
}

.ashtanga-course-intro-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px 24px 24px 80px;
}

.ashtanga-course-intro-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  z-index: 1;
}

.ashtanga-course-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

/* Glow Border */
.ashtanga-course-intro-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
  box-shadow: 0 0 15px var(--primary-color);
  z-index: 2;
}

/* Hover Effects */
.ashtanga-course-intro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(36, 70, 85, 0.18);
}

.ashtanga-course-intro-card:hover .ashtanga-course-intro-content h3,
.ashtanga-course-intro-card:hover .ashtanga-course-intro-content p {
  color: var(--white-color);
}

.ashtanga-course-intro-card:hover .ashtanga-course-intro-image img {
  transform: scale(1.12);
}

/* Floating Circle */
.ashtanga-course-intro-shape {
  position: absolute;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -70px;
  left: -50px;
  z-index: 1;
  transition: 0.5s;
}

.ashtanga-course-intro-card:hover .ashtanga-course-intro-shape {
  transform: scale(1.4);
}

/* Mobile */
@media (max-width: 991px) {
  .ashtanga-course-intro-card {
    min-height: 520px;
  }

  .ashtanga-course-intro-content {
    width: 100%;
    padding: 28px;
  }

  .ashtanga-course-intro-image {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 0 0 24px 24px;
    margin-top: 20px;
  }
}

.ashtanga-course-overview {
  padding: 50px 0;
}

/* ── Card shell ── */
.ashtanga-course-overview .course-card {
  background: var(--white-color);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.ashtanga-course-overview .course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
}

/* ── Image block ── */
.ashtanga-course-overview .card-image-wrap {
  position: relative;
  /* Extra bottom padding makes room for the orange arc that sticks out */
  padding-bottom: 28px;
  background: var(--white-color);
}

.ashtanga-course-overview .card-image-wrap img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  /* All four corners rounded — matches the design exactly */
  border-radius: 14px 14px 60% 60% / 14px 14px 38px 38px;
}

/* Orange curved bottom border — sits on top of the image's rounded bottom */
.ashtanga-course-overview .card-image-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 28px;
  border-bottom: 3.5px solid var(--primary-color);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

/* ── Badge ── */

/* ── Card body ── */
.ashtanga-course-overview .card-body-custom {
  padding: 8px 10px 24px;
}

.ashtanga-course-overview .duration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ashtanga-course-overview .course-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

/* Clock icon via CSS only — circle with hands */
.ashtanga-course-overview .clock-icon {
  width: 15px;
  height: 15px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.ashtanga-course-overview .clock-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 1.5px;
  background: var(--secondary-color);
  transform-origin: left center;
  transform: translateY(-50%) rotate(-45deg);
}

.ashtanga-course-overview .clock-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  width: 1.5px;
  height: 4px;
  background: var(--secondary-color);
  transform: translateX(-50%);
}

/* 3×3 dot grid */
.ashtanga-course-overview .dots-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ashtanga-course-overview .dots-row {
  display: flex;
  gap: 3px;
}

.ashtanga-course-overview .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.45;
}

.ashtanga-course-overview .course-title .highlight {
  color: var(--primary-color);
}

.ashtanga-course-overview .title-underline {
  width: 34px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ── Footer row ── */
.ashtanga-course-overview .card-footer-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ashtanga-course-overview .btn-details {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: 50px;
  padding: 10px 20px 10px 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: background 0.2s;
  cursor: pointer;
}

.ashtanga-course-overview .btn-details:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.ashtanga-course-overview .btn-details .btn-icon {
  background: var(--primary-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -3px;
  padding-right: 2px;
  transition: background 0.2s;
}

.ashtanga-course-overview .btn-details:hover .btn-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Lotus watermark — pure CSS, no SVG */
.ashtanga-course-overview .lotus-wrap {
  margin-left: auto;
  opacity: 0.13;
  font-size: 32px;
  line-height: 1;
  color: var(--primary-color);
  user-select: none;
  letter-spacing: -2px;
}

/* ===================================== */
/* WHAT MAKE BEST CHOICE SECTION */
/* ===================================== */

.what-make-best-choice {
  padding: 50px 0px;
  background: #f7f7f5;
  overflow: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.what-make-best-choice .wm-feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 16px 11px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  transition: 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.what-make-best-choice .wm-feature-card::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #ff7b22, #ff9f5a);
  left: 0;
  top: 0;
  transition: 0.4s ease;
  border-radius: 20px;
}

.what-make-best-choice .wm-feature-card:hover::before {
  height: 100%;
}

.what-make-best-choice .wm-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.what-make-best-choice .wm-icon {
  min-width: 72px;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 122, 34, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-make-best-choice .wm-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.what-make-best-choice .wm-content h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #103d37;
  font-weight: 700;
  margin-bottom: 12px;
}

.what-make-best-choice .wm-content h3 span {
  display: block;
  color: #ff7b22;
}

.what-make-best-choice .wm-content p {
  margin: 0;
  color: #5e5e5e;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
}

/* CENTER IMAGE */

.what-make-best-choice .wm-center-image {
  position: relative;
  z-index: 2;
}

.what-make-best-choice .circle-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  background: linear-gradient(
    180deg,
    rgba(255, 123, 34, 0.12),
    rgba(16, 61, 55, 0.08)
  );
  border-radius: 50%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseGlow 5s infinite linear;
}

.what-make-best-choice .wm-center-image img {
  max-height: 720px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.08));
}

/* CARD ALIGNMENTS */

/* ANIMATION */

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .what-make-best-choice .left-card,
  .what-make-best-choice .right-card {
    margin: 0;
  }

  .what-make-best-choice .wm-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .what-make-best-choice .row {
    gap: 30px;
  }

  .what-make-best-choice .wm-center-image img {
    max-height: 500px;
  }

  .what-make-best-choice .wm-feature-card {
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  .what-make-best-choice {
    padding: 70px 0;
  }

  .what-make-best-choice .wm-feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-radius: 22px;
  }

  .what-make-best-choice .wm-content h3 {
    font-size: 18px;
  }

  .what-make-best-choice .wm-content p {
    font-size: 16px;
  }

  .what-make-best-choice .wm-center-image img {
    max-height: 380px;
  }

  .what-make-best-choice .circle-glow {
    width: 300px;
    height: 300px;
  }
}

/* ========================================= */
/* WHY RISHIKESH DESIGN */
/* ========================================= */

.why-rishikesh-design {
  position: relative;
  overflow: hidden;
}

/* BACKGROUND SECTION */

.why-rishikesh-design .why-rishikesh-bg {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

/* IMAGE */

.why-rishikesh-design .why-rishikesh-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */

.why-rishikesh-design .why-rishikesh-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

/* CONTENT */

.why-rishikesh-design .why-rishikesh-content {
  position: relative;
  z-index: 5;
  color: #fff;
}

.why-rishikesh-design .why-rishikesh-content h2 {
  color: #fff;
}

/* SUBTITLE */

/* HEADING */

/* PARAGRAPH */

/* RESPONSIVE */

@media (max-width: 991px) {
  .why-rishikesh-design .why-rishikesh-bg {
    min-height: auto;
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .why-rishikesh-design .why-rishikesh-bg {
    padding: 70px 18px;
  }
}

/* ===================================== */
/* CURRICULAM HOME PAGE */
/* ===================================== */

.curriculam-home-page {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

/* SECTION TITLE */

/* CARD */

.curriculam-home-page .curriculam-card {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 40px 35px;
  text-align: center;
  height: 100%;
  overflow: hidden;
  transition: 0.45s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  z-index: 1;
}

/* GLOW EFFECT */

.curriculam-home-page .card-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(244, 132, 26, 0.12);
  border-radius: 50%;
  top: -70px;
  right: -70px;
  filter: blur(30px);
  z-index: -1;
  transition: 0.4s ease;
}

/* HOVER */

.curriculam-home-page .curriculam-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.curriculam-home-page .curriculam-card:hover .card-glow {
  transform: scale(1.3);
}

/* ICON */

.curriculam-home-page .curriculam-icon {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.08),
    inset 0 0 0 8px rgba(244, 132, 26, 0.06);
  position: relative;
}

.curriculam-home-page .curriculam-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(244, 132, 26, 0.3);
  animation: rotateCircle 15s linear infinite;
}

.curriculam-home-page .curriculam-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .curriculam-home-page {
    padding: 80px 0;
  }

  .curriculam-home-page .curriculam-card {
    padding: 35px 28px;
  }
}

@media (max-width: 767px) {
  .curriculam-home-page .section-heading {
    margin-bottom: 45px;
  }

  .curriculam-home-page .curriculam-icon {
    width: 100px;
    height: 100px;
  }

  .curriculam-home-page .curriculam-icon img {
    width: 48px;
    height: 48px;
  }
}

/* ========================================= */
/* ASHTANGA FOOD STAY */
/* ========================================= */

.ashtanga-food-stay {
  padding: 50px 0;
  background: #f8f6f3;
  overflow: hidden;
}

/* ========================================= */
/* IMAGE GALLERY */
/* ========================================= */

.ashtanga-food-stay .afs-gallery {
  display: flex;
  gap: 22px;
  align-items: stretch;
  height: 720px;
}

/* COLUMN */

.ashtanga-food-stay .afs-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* IMAGE BOX */

.ashtanga-food-stay .afs-image {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s ease;
}

/* LARGE IMAGE */

.ashtanga-food-stay .afs-image-large {
  flex: 1.4;
}

/* SMALL IMAGE */

.ashtanga-food-stay .afs-image-small {
  flex: 0.9;
}

/* IMAGE */

.ashtanga-food-stay .afs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

/* HOVER */

.ashtanga-food-stay .afs-image:hover img {
  transform: scale(1.08);
}

.ashtanga-food-stay .afs-image:hover {
  transform: translateY(-8px);
}

/* OVERLAY */

.ashtanga-food-stay .afs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.05));
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.ashtanga-food-stay .afs-overlay span {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.ashtanga-food-stay .afs-content {
  padding-left: 20px;
}

/* SUBTITLE */

/* HEADING */

/* DESCRIPTION */

/* FEATURE */

.ashtanga-food-stay .afs-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

/* DOT */

.ashtanga-food-stay .afs-dot {
  min-width: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f4841a;
  margin-top: 10px;
  box-shadow: 0 0 0 7px rgba(244, 132, 26, 0.15);
}

/* TEXT */

.ashtanga-food-stay .afs-text h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.ashtanga-food-stay .afs-text p {
  margin: 0;
  line-height: 1.8;
  font-size: 16px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 991px) {
  .ashtanga-food-stay {
    padding: 40px 0;
  }

  .ashtanga-food-stay .afs-gallery {
    height: 620px;
  }

  .ashtanga-food-stay .afs-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .ashtanga-food-stay .afs-gallery {
    flex-direction: column;
    height: auto;
  }

  .ashtanga-food-stay .afs-column {
    gap: 18px;
  }

  .ashtanga-food-stay .afs-image-large,
  .ashtanga-food-stay .afs-image-small {
    height: 260px;
    flex: unset;
  }
}

/* =========================
SPIRITUAL GURUS SECTION
========================= */

.spiritual-gurus-section {
  background: #f8f6f3;
  overflow: hidden;
  padding: 50px 0px;
}

.sg-small-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #17384a;
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.sg-main-title {
  font-size: 58px;
  font-weight: 500;
  color: #2d2d2d;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}

.sg-main-title span {
  color: #f28a2f;
  font-weight: 600;
}

/* Card */
.guru-card {
  transition: 0.4s ease;
}

.guru-card:hover {
  transform: translateY(-8px);
}

/* OVERALL IMAGE */
.guru-image {
  width: 210px;
  height: 210px;
  margin: auto;
  position: relative;
}

/* PERSON IMAGE */
.guru-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Name */
.guru-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #3f4b5b;
  line-height: 1.7;
  margin-top: 22px;
  font-family: "Poppins", sans-serif;
}

/* Responsive */

@media (max-width: 1399px) {
  .guru-image img {
    width: 104px;
    height: 104px;
  }

  .guru-card h4 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .sg-main-title {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .spiritual-gurus-section {
    padding: 70px 0;
  }

  .sg-main-title {
    font-size: 34px;
  }

  .guru-image img {
    width: 95px;
    height: 95px;
  }

  .guru-card h4 {
    font-size: 17px;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .guru-image {
    width: 150px;
    height: 150px;
  }

  .guru-image img {
    width: 88px;
    height: 88px;
  }

  .sg-main-title {
    font-size: 30px;
  }

  .sg-small-title {
    font-size: 13px;
  }
}

/* ===================================
OUR YOGA TEACHER ASHTANGA
CLEAN PREMIUM CARD DESIGN
=================================== */

.our-yoga-teacher-ashtanga {
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
  padding: 50px 0px;
}

/* SLIDER */

.oyaTeacherSlider {
  position: relative;
}

/* CARD */

.oya-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  transition: 0.45s ease;
  border: 1px solid #e9e9e9;
}

/* TOP BORDER EFFECT */

.oya-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #004c56, #f4841a);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.45s ease;
  z-index: 3;
}

.oya-card:hover::before {
  transform: scaleX(1);
}

/* HOVER */

.oya-card:hover {
  transform: translateY(-12px);
  border-color: rgba(244, 132, 26, 0.4);
}

/* IMAGE */

.oya-image {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 22px;
  margin: 14px;
}

.oya-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.9s ease;
}

.oya-card:hover .oya-image img {
  transform: scale(1.07);
}

/* OVERLAY */

.oya-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.05),
    transparent
  );
}

/* BADGE */

.oya-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 18px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.9);
  color: #004c56;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

/* CONTENT */

.oya-content {
  position: relative;
  padding: 15px 25px 35px;
  text-align: center;
}

/* SOCIAL */

.oya-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

/* SOCIAL ICON */

.oya-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  color: #004c56;
  border: 1px solid #e5e5e5;
  transition: 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* ICON HOVER */

.oya-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f4841a;
  transform: scale(0);
  border-radius: 50%;
  transition: 0.4s ease;
  z-index: -1;
}

.oya-social a:hover::before {
  transform: scale(1);
}

.oya-social a:hover {
  color: #fff;
  border-color: #f4841a;
  transform: translateY(-6px);
}

/* BOTTOM LINE */

.oya-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #004c56, #f4841a);
  transform: translateX(-50%);
  border-radius: 30px;
  transition: 0.4s ease;
}

.oya-card:hover .oya-content::after {
  width: 120px;
}

/* NAVIGATION */

.oya-button-next,
.oya-button-prev {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ececec;
  position: absolute;
  top: 43%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s ease;
}

.oya-button-next {
  right: -5px;
}

.oya-button-prev {
  left: -5px;
}

.oya-button-next:hover,
.oya-button-prev:hover {
  background: #f4841a;
  color: #fff;
  border-color: #f4841a;
}

/* PAGINATION */

.oya-pagination {
  margin-top: 40px;
  text-align: center;
}

.oya-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #004c56;
  opacity: 0.2;
  transition: 0.4s ease;
}

.oya-pagination .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 30px;
  background: #f4841a;
  opacity: 1;
}

/* ACTIVE SLIDE */

.swiper-slide-active .oya-card {
  border-color: rgba(244, 132, 26, 0.35);
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .oya-image {
    height: 300px;
  }
}

@media (max-width: 991px) {
  .oya-button-next,
  .oya-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .our-yoga-teacher-ashtanga {
    padding: 70px 0;
  }

  .oyaTeacherSlider {
    padding-bottom: 60px;
  }

  .oya-image {
    height: 270px;
  }

  .oya-content {
    padding: 15px 18px 30px;
  }

  .oya-social a {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 575px) {
  .oya-card {
    border-radius: 22px;
  }

  .oya-image {
    height: 240px;
    margin: 10px;
    border-radius: 18px;
  }
}

.testimonial-reviewSlider-section {
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
  padding: 50px 0px;
}

/* CARD */

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  border: 1px solid #ececec;
  transition: 0.45s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(244, 132, 26, 0.5);
}

/* TOP */

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 15px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f4841a;
}

.testimonial-user span {
  color: #777;
  font-size: 15px;
}

/* STARS */

.testimonial-stars {
  color: #f4841a;
  font-size: 18px;
  letter-spacing: 2px;
}

/* TEXT */

.testimonial-text {
  line-height: 1.9;
  color: #555;
  margin-bottom: 22px;
  min-height: 170px;
}

/* BUTTON */

.read-more-btn {
  border: none;
  background: transparent;
  color: #f4841a;
  font-weight: 600;
  padding: 0;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  color: #004c56;
}

/* QUOTE */

.testimonial-quote-icon {
  position: absolute;
  right: 25px;
  bottom: 20px;
  font-size: 70px;
  color: #004c56;
  opacity: 0.07;
}

/* NAVIGATION */

.testimonial-next,
.testimonial-prev {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 42%;
  z-index: 20;
  cursor: pointer;
  transition: 0.4s ease;
}

.testimonial-next {
  right: -5px;
}

.testimonial-prev {
  left: -5px;
}

.testimonial-next:hover,
.testimonial-prev:hover {
  background: #f4841a;
  color: #fff;
  border-color: #f4841a;
}

/* PAGINATION */

.testimonial-pagination {
  margin-top: 45px;
  text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #004c56;
  opacity: 0.2;
  transition: 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 30px;
  opacity: 1;
  background: #f4841a;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .testimonial-next,
  .testimonial-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 25px;
  }

  .testimonial-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-text {
    min-height: auto;
  }
}

/* ===================================
YOGA JOURNEY CTA SECTION
=================================== */

.yoga-journey-cta-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
}

/* BACKGROUND */

.yoga-journey-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.yoga-journey-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */

.yoga-journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15));
  z-index: 2;
}

/* WRAPPER */

.yoga-journey-wrapper {
  position: relative;
  z-index: 5;
  max-width: 950px;
  margin: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 90px 80px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* SHAPES */

.journey-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-one {
  width: 220px;
  height: 220px;
  background: rgba(244, 132, 26, 0.08);
  top: -90px;
  left: -90px;
}

.shape-two {
  width: 180px;
  height: 180px;
  background: rgba(0, 76, 86, 0.08);
  bottom: -80px;
  right: -70px;
}

/* CONTENT */

.yoga-journey-content {
  position: relative;
  z-index: 5;
}

/* SUBTITLE */

.journey-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(244, 132, 26, 0.1);
  color: #f4841a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.journey-subtitle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4841a;
}

/* HEADING */

.yoga-journey-content h2 {
  color: #0d3441;
  max-width: 750px;
  margin: auto auto 30px;
  line-height: 1.15;
}

.yoga-journey-content h2 span {
  color: #f4841a;
}

/* PARAGRAPH */

.yoga-journey-content p {
  max-width: 760px;
  margin: auto auto 45px;
  color: #444;
  line-height: 1.9;
}

/* BUTTONS */

.journey-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */

.journey-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #f4841a;
  color: #fff;
  text-decoration: none;
  padding: 10px 32px 10px 10px;
  border-radius: 60px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.journey-btn-primary:hover {
  transform: translateY(-5px);
  color: #fff;
}

/* ICON */

.btn-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0d3441;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.4s ease;
}

.journey-btn-primary:hover .btn-icon {
  transform: rotate(-45deg);
}

/* SECONDARY BUTTON */

.journey-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 60px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #0d3441;
  background: #fff;
  transition: 0.4s ease;
}

.journey-btn-secondary:hover {
  background: #0d3441;
  color: #fff;
  transform: translateY(-5px);
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .yoga-journey-wrapper {
    padding: 70px 45px;
  }
}

@media (max-width: 767px) {
  .yoga-journey-cta-section {
    padding: 80px 0;
  }

  .yoga-journey-wrapper {
    padding: 55px 25px;
    border-radius: 28px;
  }

  .journey-btns {
    flex-direction: column;
  }

  .journey-btn-primary,
  .journey-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .shape-one {
    width: 140px;
    height: 140px;
  }

  .shape-two {
    width: 120px;
    height: 120px;
  }
}

/* ===================================
ASHTANGA HOME BLOGS
=================================== */

.ashtanga-home-blogs {
  overflow: hidden;
  position: relative;
  padding: 50px 0px;
}

/* CARD */

.ahb-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: 0.45s ease;
  height: 100%;
  position: relative;
}

.ahb-card:hover {
  transform: translateY(-10px);
  border-color: rgba(244, 132, 26, 0.4);
}

/* IMAGE */

.ahb-image {
  position: relative;
  overflow: hidden;
}

.ahb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

.ahb-card:hover .ahb-image img {
  transform: scale(1.08);
}

/* OVERLAY */

.ahb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

/* LOGO */

.ahb-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

/* CONTENT */

.ahb-content {
  padding: 28px 22px 25px;
}

/* CATEGORY */

.ahb-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f4841a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ahb-category::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4841a;
}

/* TITLE */

/* BUTTON */

.ahb-btn {
  width: 100%;
  height: 58px;
  border: 2px solid #0d3441;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: #0d3441;
  transition: 0.4s ease;
  overflow: hidden;
  position: relative;
}

/* BUTTON BG EFFECT */

.ahb-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0d3441;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.45s ease;
  z-index: 1;
}

.ahb-btn span,
.ahb-btn i {
  position: relative;
  z-index: 2;
  transition: 0.4s ease;
}

.ahb-btn:hover::before {
  transform: scaleX(1);
}

.ahb-btn:hover {
  border-color: #0d3441;
  color: #fff;
}

.ahb-btn:hover i {
  transform: translateX(5px);
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .ahb-image {
    height: 230px;
  }
}

@media (max-width: 767px) {
  .ashtanga-home-blogs {
    padding: 70px 0;
  }

  .ahb-image {
    height: 220px;
  }

  .ahb-content {
    padding: 24px 18px 22px;
  }

  .ahb-btn {
    height: 54px;
  }
}

@media (max-width: 575px) {
  .ahb-image {
    height: 200px;
  }

  .ahb-logo img {
    width: 95px;
  }
}

/* ===================================
ASHTANGA REACH SECTION
=================================== */

.ashtanga-reach-section {
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
  padding: 50px 0px;
}

/* LEFT WRAPPER */

.ars-content-wrapper {
  position: relative;
  background: #fff;
  border-radius: 35px;
  padding: 20px 20px;
  overflow: hidden;
  border: 1px solid #ececec;
  height: 100%;
}

/* SHAPES */

.ars-shape {
  position: absolute;
  border-radius: 50%;
}

.ars-shape-one {
  width: 180px;
  height: 180px;
  background: rgba(244, 132, 26, 0.08);
  top: -80px;
  right: -80px;
}

.ars-shape-two {
  width: 120px;
  height: 120px;
  background: rgba(0, 76, 86, 0.06);
  bottom: -40px;
  left: -40px;
}

/* HEADING */

.ars-heading {
  position: relative;
  margin-bottom: 50px;
}

.ars-heading::after {
  content: "";
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #f4841a, #004c56);
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
}

.ars-heading span {
  color: #f4841a;
}

/* SUBTITLE */

.ars-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(244, 132, 26, 0.08);
  color: #f4841a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.ars-subtitle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4841a;
}

/* ITEM */

.ars-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 10px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #f0f0f0;
  margin-bottom: 24px;
  transition: 0.4s ease;
  position: relative;
  z-index: 5;
}

.ars-item:last-child {
  margin-bottom: 0;
}

.ars-item:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 132, 26, 0.3);
  background: #fcfcfc;
}

/* ICON */

.ars-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: linear-gradient(135deg, #004c56, #0c5e6b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.ars-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f4841a, #ffab5c);
  transform: scale(0);
  transition: 0.4s ease;
  border-radius: 22px;
}

.ars-item:hover .ars-icon::before {
  transform: scale(1);
}

.ars-icon i {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 28px;
}

/* MAP */

.ars-map-wrapper {
  position: relative;
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  min-height: 720px;
  border: 1px solid #ececec;
}

.ars-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FLOAT CARD */

.ars-map-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-width: 320px;
}

.ars-map-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4841a, #ffab5c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ars-map-card-icon i {
  color: #fff;
  font-size: 22px;
}

.ars-map-card span {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .ars-map-wrapper {
    min-height: 650px;
  }
}

@media (max-width: 991px) {
  .ars-content-wrapper {
    padding: 50px 35px;
  }

  .ars-map-wrapper {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .ashtanga-reach-section {
    padding: 70px 0;
  }

  .ars-content-wrapper {
    padding: 40px 22px;
    border-radius: 25px;
  }

  .ars-item {
    padding: 22px;
    gap: 16px;
  }

  .ars-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .ars-icon i {
    font-size: 22px;
  }

  .ars-map-wrapper {
    min-height: 420px;
    border-radius: 25px;
  }

  .ars-map-card {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: 100%;
    padding: 15px;
  }
}

/* ===================================
ASHTANGA FOOTER
=================================== */

.ashtanga-footer {
  position: relative;
  overflow: hidden;
}

/* TOP */

.ashtanga-footer-top {
  background: #123d4c;
  position: relative;
  padding: 90px 0 70px;
}

/* SHAPE */

.ashtanga-footer-top::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  top: -160px;
  right: -120px;
}

/* WIDGET */

.aft-widget {
  position: relative;
  z-index: 5;
}

/* LOGO */

.aft-logo {
  display: inline-block;
  margin-bottom: 28px;
}

.aft-logo img {
  width: 170px;
}

/* ABOUT */

.aft-about-text {
  color: rgba(255, 255, 255, 0.82);
  line-height: 2;
  margin-bottom: 30px;
}

/* SOCIAL */

.aft-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.aft-social a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.4s ease;
}

.aft-social a:hover {
  background: #f4841a;
  transform: translateY(-6px);
}

/* HEADING */

.aft-heading {
  margin-bottom: 32px;
  position: relative;
}

.aft-heading::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f4841a, #ffb067);
  position: absolute;
  left: 0;
  bottom: -12px;
  border-radius: 30px;
}

.aft-heading h4 {
  color: #fff;
  margin-bottom: 0;
}

/* CONTACT */

.aft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.aft-contact-item:last-child {
  margin-bottom: 0;
}

/* ICON */

.aft-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(244, 132, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aft-contact-icon i {
  color: #f4841a;
  font-size: 18px;
}

/* TEXT */

.aft-contact-text {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

/* LINKS */

.aft-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.aft-links li {
  margin-bottom: 18px;
}

.aft-links li:last-child {
  margin-bottom: 0;
}

.aft-links li a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  padding-left: 18px;
}

.aft-links li a::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f4841a;
  left: 0;
  top: 9px;
  transition: 0.3s ease;
}

.aft-links li a:hover {
  color: #f4841a;
  padding-left: 24px;
}

/* GALLERY */

.aft-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.aft-gallery a {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  display: block;
}

.aft-gallery img {
  width: 100%;
  height: 85px;
  object-fit: cover;
  transition: 0.7s ease;
}

.aft-gallery a:hover img {
  transform: scale(1.12);
}

/* BOTTOM */

.ashtanga-footer-bottom {
  background: #f4841a;
  padding: 22px 0;
  position: relative;
}

/* BOTTOM CONTENT */

.aft-bottom-content {
  text-align: center;
}

.aft-bottom-content p {
  margin-bottom: 0;
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .ashtanga-footer-top {
    padding: 70px 0 50px;
  }
}

@media (max-width: 767px) {
  .ashtanga-footer-top {
    padding: 60px 0 40px;
  }

  .aft-logo img {
    width: 145px;
  }

  .aft-gallery img {
    height: 90px;
  }
}

@media (max-width: 575px) {
  .aft-social {
    flex-wrap: wrap;
  }

  .aft-gallery {
    gap: 10px;
  }

  .aft-gallery img {
    height: 80px;
  }
}

/* ===================================
ASHTANGA BREADCRUMB
=================================== */

.ashtanga-breadcrumb-section {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
}

/* IMAGE */

.ashtanga-breadcrumb-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ashtanga-breadcrumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */

.ashtanga-breadcrumb-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

/* SHAPES */

.ashtanga-breadcrumb-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}

/* TOP RIGHT */

.shape-one {
  width: 340px;
  height: 340px;
  top: -140px;
  right: -120px;
  background: rgba(244, 132, 26, 0.12);
  filter: blur(10px);
}

/* BOTTOM LEFT */

.shape-two {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -120px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(8px);
}

/* CONTENT */

.ashtanga-breadcrumb-content {
  position: relative;
  z-index: 5;
  max-width: 650px;
}

/* SUBTITLE */

.ashtanga-breadcrumb-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

/* DOT */

.ashtanga-breadcrumb-subtitle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4841a;
}

/* TITLE */

.ashtanga-breadcrumb-content h1 {
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* BREADCRUMB */

.ashtanga-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

/* LI */

.ashtanga-breadcrumb-list li {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 500;
}

/* SEPARATOR */

.ashtanga-breadcrumb-list li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -11px;
  top: 0;
  color: rgba(255, 255, 255, 0.5);
}

/* LINK */

.ashtanga-breadcrumb-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.ashtanga-breadcrumb-list li a:hover {
  color: #f4841a;
}

/* ICON */

.ashtanga-breadcrumb-list li a i {
  color: #f4841a;
  font-size: 14px;
}

/* ACTIVE */

.ashtanga-breadcrumb-list li.active {
  color: #f4841a;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .ashtanga-breadcrumb-section {
    min-height: 400px;
    padding: 100px 0 80px;
  }
}

@media (max-width: 767px) {
  .ashtanga-breadcrumb-section {
    min-height: 340px;
    padding: 90px 0 70px;
  }

  .ashtanga-breadcrumb-content {
    max-width: 100%;
  }

  .ashtanga-breadcrumb-subtitle {
    padding: 9px 18px;
    font-size: 13px;
    margin-bottom: 20px;
  }

  .ashtanga-breadcrumb-content h1 {
    margin-bottom: 18px;
  }

  .ashtanga-breadcrumb-list {
    gap: 14px;
  }

  .ashtanga-breadcrumb-list li {
    font-size: 15px;
  }

  .shape-one {
    width: 220px;
    height: 220px;
  }

  .shape-two {
    width: 170px;
    height: 170px;
  }
}

/* =========================================
ABOUT ASHTANGA YOGA SECTION
========================================= */

.ashtanga-about-section {
  background: #f8f7f4;
  position: relative;
  overflow: hidden;
}

/* Decorative Background */

.ashtanga-about-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(244, 132, 26, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
}

.ashtanga-about-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 76, 86, 0.06);
  border-radius: 50%;
  bottom: -120px;
  left: -100px;
}

/* HEADING */

.aas-heading-wrapper {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.aas-main-title span {
  color: #f4841a;
}

/* Divider */

.aas-divider {
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #004c56, #f4841a);
  border-radius: 50px;
  margin: auto;
}

/* CONTENT */

.aas-content-box {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

/* IMAGE CARD */

.aas-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 480px;
  transition: 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.aas-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

/* Hover Effect */

.aas-image-card:hover img {
  transform: scale(1.08);
}

.aas-image-card:hover {
  transform: translateY(-10px);
}

/* Middle Card */

.active-card {
  margin-top: 40px;
}

/* Overlay */

.aas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.05));
  display: flex;
  align-items: end;
  padding: 30px;
}

.aas-overlay span {
  display: inline-block;
  font-size: 14px;
  color: #f4841a;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .aas-main-title {
    font-size: 38px;
  }

  .active-card {
    margin-top: 0;
  }

  .aas-image-card {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .aas-main-title {
    font-size: 30px;
  }

  .aas-content-box {
    padding: 28px;
  }

  .aas-content-box p {
    font-size: 15px;
    line-height: 1.8;
  }

  .aas-content-box h5 {
    font-size: 20px;
  }

  .aas-image-card {
    height: 380px;
    border-radius: 22px;
  }

  .aas-overlay h4 {
    font-size: 22px;
  }
}

/* =========================================
ASHTANGA EXPERIENCE SECTION
========================================= */

.ashtanga-experience-section {
  background: linear-gradient(to bottom, #f7f2e9, #fff);
  overflow: hidden;
  position: relative;
}

/* IMAGE AREA */

.aes-image-wrapper {
  position: relative;
  padding-right: 40px;
}

.aes-main-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.aes-main-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: 0.6s ease;
}

.aes-main-image:hover img {
  transform: scale(1.06);
}

/* Floating Experience Card */

.aes-floating-card {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: #fff;
  padding: 22px 28px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 5;
  max-width: 240px;
}

/* Decorative Circle */

.aes-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 18px solid rgba(244, 132, 26, 0.15);
  border-radius: 50%;
  top: -40px;
  left: -40px;
  z-index: 1;
}

/* CONTENT */

.aes-content {
  position: relative;
  z-index: 2;
}

/* FEATURE BOX */

/* RESPONSIVE */

@media (max-width: 991px) {
  .aes-image-wrapper {
    padding-right: 0;
  }

  .aes-main-image img {
    height: 520px;
  }

  .aes-floating-card {
    right: 20px;
  }
}

@media (max-width: 767px) {
  .aes-main-image img {
    height: 430px;
  }

  .aes-feature-box {
    padding: 20px;
  }
}

/* =========================================
ASHTANGA WHY CHOOSE US
========================================= */

.ashtanga-about-page-why-choose-us {
  background: linear-gradient(to bottom, #f9f7f2, #ffffff);
  position: relative;
  overflow: hidden;
}

/* Decorative Elements */

.ashtanga-about-page-why-choose-us::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(244, 132, 26, 0.08);
  top: -180px;
  right: -120px;
}

.ashtanga-about-page-why-choose-us::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(0, 76, 86, 0.06);
  bottom: -120px;
  left: -80px;
}

/* SECTION TITLE */

/* CARD */

.aapwcu-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #fff;
  padding: 35px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.45s ease;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

/* Hover Effect */

.aapwcu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Hover Background */

.aapwcu-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #004c56, #0c6570);
  transition: 0.5s ease;
  z-index: -1;
}

.aapwcu-card:hover::before {
  width: 100%;
}

.aapwcu-card:hover h4,
.aapwcu-card:hover p,
.aapwcu-card:hover span {
  color: #fff !important;
}

/* ACTIVE CARD */

.active-card {
  background: linear-gradient(135deg, #004c56, #0d6672);
}

.active-card h4,
.active-card p,
.active-card span {
  color: #fff !important;
}

/* ICON */

.aapwcu-icon {
  width: 110px;
  height: 110px;
  min-width: 110px;
  border-radius: 50%;
  background: #0b4d57;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.aapwcu-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(244, 132, 26, 0.4);
  border-radius: 50%;
  animation: rotate 12s linear infinite;
}

.aapwcu-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* CONTENT */

/* Animation */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .aapwcu-card {
    padding: 28px;
    gap: 20px;
  }

  .aapwcu-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
  }

  .aapwcu-icon img {
    width: 45px;
    height: 45px;
  }

  .aapwcu-content h4 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .aapwcu-title {
    font-size: 30px;
  }

  .aapwcu-description {
    font-size: 15px;
    line-height: 1.8;
  }

  .aapwcu-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 25px;
    border-radius: 22px;
  }

  .aapwcu-content h4 {
    font-size: 21px;
  }

  .aapwcu-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================
ABOUT PAGE TTC SLIDER
========================================= */

.about-page-ttc {
  background: linear-gradient(to bottom, #f8f2e6, #fff);
  overflow: hidden;
  position: relative;
}

/* Decorative Shape */

.about-page-ttc::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(244, 132, 26, 0.08);
  border-radius: 50%;
  top: -150px;
  right: -120px;
}

.about-page-ttc::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(0, 76, 86, 0.06);
  border-radius: 50%;
  bottom: -100px;
  left: -80px;
}

/* HEADING */

.apttc-title span {
  color: #f4841a;
}

/* CARD */

.apttc-card {
  background: #fff;
  border-radius: 30px;
  padding: 50px 35px;
  text-align: center;
  transition: 0.45s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

/* Hover Gradient */

.apttc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #004c56, #0d6672);
  opacity: 0;
  transition: 0.5s ease;
  z-index: -1;
}

.apttc-card:hover::before,
.apttc-card.active-card::before {
  opacity: 1;
}

.apttc-card:hover,
.apttc-card.active-card {
  transform: translateY(-10px);
}

/* ICON */

.apttc-icon {
  width: 110px;
  height: 110px;
  margin: auto auto 30px;
  border-radius: 50%;
  background: rgba(244, 132, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.apttc-card:hover .apttc-icon,
.apttc-card.active-card .apttc-icon {
  background: rgba(255, 255, 255, 0.12);
}

.apttc-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

/* Hover Text */

.apttc-card:hover h3,
.apttc-card:hover p,
.apttc-card.active-card h3,
.apttc-card.active-card p {
  color: #fff;
}

/* SWIPER */

.about-page-ttc-swiper {
  padding-bottom: 70px;
}

/* PAGINATION */

.about-page-ttc .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #f4841a;
  opacity: 0.4;
  transition: 0.4s ease;
}

.about-page-ttc .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 50px;
  opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .apttc-card {
    padding: 40px 28px;
  }
}

@media (max-width: 767px) {
  .apttc-card {
    border-radius: 24px;
    padding: 35px 24px;
  }

  .apttc-icon {
    width: 90px;
    height: 90px;
  }

  .apttc-icon img {
    width: 50px;
    height: 50px;
  }
}

/* =========================================
ASHTANGA FAQ SECTION
========================================= */

.ashtanga-faq-section {
  background: linear-gradient(to bottom, #f8f4ec, #ffffff);
  position: relative;
  overflow: hidden;
}

/* Background Shapes */

.ashtanga-faq-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(244, 132, 26, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -100px;
}

.ashtanga-faq-section::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(0, 76, 86, 0.06);
  border-radius: 50%;
  bottom: -120px;
  left: -60px;
}

/* IMAGE */

.afs-image-wrapper {
  position: relative;
  padding-right: 30px;
}

.afs-image {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.afs-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  transition: 0.6s ease;
}

.afs-image:hover img {
  transform: scale(1.05);
}

/* Floating Box */

.afs-floating-box {
  position: absolute;
  bottom: 35px;
  right: 0;
  background: #fff;
  padding: 24px 28px;
  border-radius: 22px;
  max-width: 240px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.afs-floating-box span {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #f4841a;
  margin-bottom: 10px;
}

/* CONTENT */

.afs-content {
  position: relative;
  z-index: 2;
}

/* ACCORDION */

.afs-accordion .accordion-item {
  border: 0;
  margin-bottom: 18px;
  border-radius: 22px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.afs-accordion .accordion-button {
  background: #fff;
  color: #111;
  font-size: 20px;
  font-weight: 600;
  padding: 28px 30px;
  box-shadow: none !important;
  border: 0;
  border-radius: 0 !important;
}

.afs-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #004c56, #0d6672);
  color: #fff;
}

.afs-accordion .accordion-button::after {
  filter: brightness(0);
}

.afs-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.afs-accordion .accordion-body {
  padding: 25px 30px 30px;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .afs-title {
    font-size: 42px;
  }

  .afs-image img {
    height: 620px;
  }
}

@media (max-width: 991px) {
  .afs-image-wrapper {
    padding-right: 0;
  }

  .afs-title {
    font-size: 36px;
  }

  .afs-image img {
    height: 500px;
  }

  .afs-floating-box {
    right: 20px;
  }
}

@media (max-width: 767px) {
  .afs-title {
    font-size: 30px;
  }

  .afs-image img {
    height: 400px;
  }

  .afs-floating-box {
    padding: 18px 22px;
    max-width: 200px;
  }

  .afs-floating-box span {
    font-size: 30px;
  }

  .afs-accordion .accordion-button {
    font-size: 17px;
    padding: 22px 20px;
  }

  .afs-accordion .accordion-body {
    padding: 20px;
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================
ASHTANGA TEACHERS V2
========================================= */

.ashtanga-teachers-v2 {
  background: #f7f4ef;
  overflow: hidden;
  position: relative;
}

/* CARD */

.atv2-card {
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  transition: 0.4s ease;
}

.atv2-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */

.atv2-image-box {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.atv2-image-box img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  transition: 0.6s ease;
}

.atv2-card:hover .atv2-image-box img {
  transform: scale(1.05);
}

/* SHAPE */

.atv2-shape {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(244, 132, 26, 0.18);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* CONTENT */

.atv2-content {
  padding: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TOP */

.atv2-top {
  margin-bottom: 30px;
}

.atv2-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: #004c56;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* INFO BOX */

.atv2-info-box {
  background: #f8f8f8;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 24px;
  transition: 0.4s ease;
  height: 100%;
}

.atv2-info-box:hover {
  background: #004c56;
  border-color: #004c56;
  transform: translateY(-5px);
}

.atv2-info-box:hover small,
.atv2-info-box:hover h6 {
  color: #fff;
}

.atv2-info-box small {
  display: block;
  color: #f4841a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* TEXT */

.atv2-text {
  position: relative;
  padding-left: 28px;
}

.atv2-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  border-radius: 50px;
  background: linear-gradient(to bottom, #f4841a, #004c56);
}

/* SECOND CARD */

.second-card {
  margin-top: 70px;
}

/* RESPONSIVE */

@media (max-width: 1399px) {
  .atv2-top h3 {
    font-size: 44px;
  }
}

@media (max-width: 1199px) {
  .atv2-content {
    padding: 45px;
  }

  .atv2-top h3 {
    font-size: 38px;
  }

  .atv2-image-box img {
    min-height: 580px;
  }
}

@media (max-width: 991px) {
  .atv2-image-box img {
    min-height: 500px;
  }

  .atv2-content {
    padding: 40px 30px;
  }

  .second-card {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .atv2-card {
    border-radius: 24px;
  }

  .atv2-image-box img {
    min-height: 360px;
    max-height: 360px;
  }

  .atv2-content {
    padding: 28px 22px;
  }

  .atv2-top {
    margin-bottom: 22px;
  }

  .atv2-tag {
    padding: 8px 16px;
    font-size: 11px;
    margin-bottom: 14px;
  }

  .atv2-top h3 {
    font-size: 28px;
    line-height: 1.3;
  }

  .atv2-info-box {
    padding: 18px;
    border-radius: 18px;
  }

  .atv2-info-box h6 {
    font-size: 16px;
  }

  .atv2-text {
    padding-left: 18px;
  }

  .atv2-text p {
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .atv2-shape {
    width: 140px;
    height: 140px;
    top: -50px;
    right: -50px;
  }
}

/* 100 Hour Page  */
.course-overview-main-page {
  padding: 50px 0;
  overflow: visible !important;
  position: relative;
}

.course-overview-main-page .course-overview-wrapper {
  background: var(--white-color);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  overflow: visible !important;
}

.course-overview-main-page .row {
  align-items: flex-start !important;
}

/* =========================================
  LEFT SIDE
  ========================================= */

.course-overview-main-page .course-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.course-overview-main-page .course-badge {
  background: #f8f8f8;
  border: 1px solid #e7e7e7;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-overview-main-page .course-badge i {
  color: var(--primary-color);
}

/* OFFER BOX */

.course-overview-main-page .course-offer-box {
  background: #fffaf5;
  border-left: 5px solid var(--primary-color);
  padding: 14px;
  border-radius: 20px;
  margin-bottom: 40px;
}

/* =========================================
  HIGHLIGHTS
  ========================================= */

.course-overview-main-page .highlight-title i {
  color: var(--primary-color);
}

.course-overview-main-page .course-feature-box {
  background: var(--white-color);
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.4s ease;
  height: 100%;
}

.course-overview-main-page .course-feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 25px rgba(245, 134, 52, 0.15);
}

.course-overview-main-page .course-feature-box i {
  width: 34px;
  height: 34px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.course-overview-main-page .course-feature-box h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}

/* =========================================
  RIGHT SIDE STICKY
  ========================================= */

.course-overview-main-page .course-form-column {
  align-self: flex-start !important;
  position: sticky !important; /* ← yeh yahan move kiya */
  top: 130px !important;
  height: fit-content; /* important */
  z-index: 10;
}

.course-overview-main-page .course-form-sticky {
  position: static !important; /* ← ab isko sticky mat rakh */
  width: 100%;
}

.course-overview-main-page .course-form-wrapper {
  background: var(--white-color);
  border: 3px solid var(--primary-color);
  border-radius: 28px;
  padding: 15px;
  position: relative;
  overflow: visible !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.course-overview-main-page .course-form-wrapper::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  background: rgba(245, 134, 52, 0.08);
  border-radius: 50%;
}

/* =========================================
  FORM
  ========================================= */

.course-overview-main-page .course-form-control {
  width: 100%;
  height: 60px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  padding: 6px 10px;
  font-size: 14px;
  outline: none;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.course-overview-main-page .course-form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(245, 134, 52, 0.12);
}

.course-overview-main-page .radio-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.course-overview-main-page .radio-wrap {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.course-overview-main-page .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.course-overview-main-page .course-submit-btn {
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 16px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  transition: 0.4s ease;
}

.course-overview-main-page .course-submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* =========================================
  MOBILE
  ========================================= */

@media (max-width: 991px) {
  .course-overview-main-page .course-overview-wrapper {
    padding: 25px;
  }

  .course-overview-main-page .course-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .course-overview-main-page .course-form-sticky {
    position: relative;
    top: 0;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .course-overview-main-page {
    padding: 40px 0;
  }
  .course-overview-main-page .course-form-wrapper::before {
    content: "";
    position: absolute;
    top: -15px;
    right: -32px;
    width: 100px;
    height: 100px;
    background: rgba(245, 134, 52, 0.08);
    border-radius: 50%;
  }

  .course-overview-main-page .course-overview-wrapper {
    padding: 20px;
    border-radius: 20px;
  }

  .course-overview-main-page .course-title {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .course-overview-main-page .highlight-title {
    font-size: 30px;
  }

  .course-overview-main-page .course-form-title {
    font-size: 34px;
  }

  .course-overview-main-page .course-form-wrapper {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .course-overview-main-page .course-feature-box {
    padding: 16px;
  }

  .course-overview-main-page .course-feature-box h5 {
    font-size: 16px;
  }

  .course-overview-main-page .course-offer-box p {
    font-size: 16px;
    line-height: 1.7;
  }

  .course-overview-main-page .special-offer {
    font-size: 22px;
  }
}

.course-overview-images {
  padding: 50px 0;
  overflow: hidden;
}

.course-overview-images .course-images-wrapper {
  position: relative;
}

/* COMMON IMAGE BOX */

.course-overview-images .course-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  height: 100%;
  transition: 0.5s ease;
  cursor: pointer;
}

.course-overview-images .course-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
  display: block;
}

/* DIFFERENT BORDERS */

.course-overview-images .border-primary-custom {
  border: 3px solid var(--primary-color);
}

.course-overview-images .border-secondary-custom {
  border: 3px solid var(--secondary-color);
}

/* HOVER EFFECT */

.course-overview-images .course-image-box:hover img {
  transform: scale(1.08);
}

.course-overview-images .course-image-box:hover {
  transform: translateY(-8px);
}

/* BIG LEFT IMAGE */

.course-overview-images .big-image {
  height: 600px;
}

/* SMALL IMAGES */

.course-overview-images .small-image {
  height: 290px;
}

/* GAP */

.course-overview-images .custom-gap {
  gap: 28px 0;
}

/* OVERLAY */

.course-overview-images .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 50%);
  opacity: 0;
  transition: 0.5s ease;
}

.course-overview-images .course-image-box:hover .image-overlay {
  opacity: 1;
}

/* MOBILE */

@media (max-width: 991px) {
  .course-overview-images .big-image {
    height: 500px;
  }

  .course-overview-images .small-image {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .course-overview-images {
    padding: 40px 0;
  }

  .course-overview-images .big-image {
    height: 350px;
    border-radius: 20px;
  }

  .course-overview-images .small-image {
    height: 220px;
    border-radius: 20px;
  }

  .course-overview-images .course-image-box {
    border-radius: 20px;
  }
}

/* =========================================
   SECOND SECTION - FORM LEFT + CONTENT RIGHT
   ========================================= */

.course-overview-page-2 {
  padding: 50px 0;
  overflow: visible !important;
  position: relative;
}

.course-overview-page-2 .course-overview-wrapper {
  border-radius: 28px;
  padding: 40px;
  overflow: visible !important;
}

.course-overview-page-2 .row {
  align-items: flex-start !important;
}

/* ================== STICKY FORM (LEFT) ================== */

.course-overview-page-2 .course-form-column {
  align-self: flex-start !important;
  position: sticky !important;
  top: 130px !important;
  height: fit-content;
  z-index: 10;
}

.course-overview-page-2 .course-form-wrapper {
  background: var(--white-color);
  border: 3px solid var(--primary-color);
  border-radius: 28px;
  padding: 25px;
  position: relative;
  overflow: visible !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Form Styles (same as before) */
.course-overview-page-2 .course-form-control {
  width: 100%;
  height: 60px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  padding: 6px 16px;
  font-size: 15px;
  outline: none;
  margin-bottom: 12px;
}

.course-overview-page-2 .course-form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(245, 134, 52, 0.12);
}

.course-overview-page-2 .course-submit-btn {
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 16px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 17px;
  font-weight: 700;
}

.course-overview-page-2 .course-submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* ================== RIGHT SIDE CONTENT ================== */

.course-overview-page-2 .course-content-column h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .course-overview-page-2 .course-form-column {
    position: relative !important;
    top: 0;
    margin-bottom: 40px;
  }
}
/* =========================================
   SECOND SECTION - FORM LEFT + CONTENT RIGHT
   ========================================= */

.course-overview-page-2 {
  padding: 40px 0;
  overflow: visible !important;
  position: relative;
}

.course-overview-page-2 .course-overview-wrapper {
  border-radius: 28px;
  padding: 25px 20px;
  overflow: visible !important;
}

/* Mobile First Responsive */
@media (max-width: 991px) {
  .course-overview-page-2 .course-form-column {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 35px;
    width: 100%;
  }

  .course-overview-page-2 .course-form-wrapper {
    padding: 25px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .course-overview-page-2 .course-form-control {
    height: 55px;
    font-size: 15px;
    padding: 0 18px;
    margin-bottom: 14px;
  }

  .course-overview-page-2 .course-submit-btn {
    height: 62px;
    font-size: 17px;
  }

  .course-overview-page-2 .course-content-column h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .course-overview-page-2 .course-content-column p {
    font-size: 15.5px;
    line-height: 1.7;
  }
}

/* Extra small mobile */
@media (max-width: 576px) {
  .course-overview-page-2 .course-overview-wrapper {
    padding: 20px 15px;
  }

  .course-overview-page-2 .course-form-wrapper {
    padding: 22px 18px;
  }
}

.ashtanga-shadow-bg {
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0 15px 35px -5px rgba(0, 0, 0, 0.1),
    /* subtle orange glow */ inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.why-choose-benifits {
  background: #fff;
}

.why-choose-benifits .benefit-card {
  background: #fff;
  padding: 30px 20px 20px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid #f58634;
  transition: 0.3s ease;
}

.why-choose-benifits .benefit-card:hover {
  transform: translateY(-8px);
}

.why-choose-benifits .benefit-card h3 {
  font-weight: 700;
  margin-top: 15px;
  font-size: 24px;
}

.why-choose-benifits .benefit-card p {
  color: #555;
  font-size: 15px;
}

/* Icon Circle */
.why-choose-benifits .icon-wrap {
  width: 70px;
  height: 70px;
  background: #244655;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -65px auto 10px;
  border: 4px solid #f58634;
}

.why-choose-benifits .icon-wrap img {
  width: 30px;
}

/* Accent Line */

/* Full width last card */
.why-choose-benifits .full-width {
  padding: 50px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .why-choose-benifits .icon-wrap {
    margin-top: -55px;
  }
}

.yoga-why-main {
  background: #fff;
}

.feature-3d-horizontal {
  background: #fff;
  padding: 10px;
  gap: 22px;
  border-radius: 14px;
  border: 2px solid #f58634;
  transition: 0.3s ease;
  box-shadow:
    0 10px 0 #244655,
    0 20px 35px rgb(0 0 0 / 0.08);
}
.feature-3d-horizontal:hover {
  transform: translateY(-5px);
  box-shadow:
    0 6px 0 #244655,
    0 25px 45px rgb(0 0 0 / 0.15);
}
@media (max-width: 768px) {
  .feature-3d-horizontal {
    padding: 22px;
    gap: 16px;
  }
  .icon-box {
    min-width: 55px;
    height: 55px;
    font-size: 24px;
  }
}

.custom-om-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-om-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
}
.custom-om-list .om-icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #f58634;
  font-weight: 700;
  font-size: 20px;
}
.custom-om-list-course {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-om-list-course li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.4;
}
.custom-om-list-course .om-icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #f58634;
  font-weight: 700;
  font-size: 16px;
}

.curriculum {
  background-color: #fff;
}
.curriculum-title {
  color: #333;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fdf1e7 0%, #fefaf6 100%);
  padding: 5px;
  border-bottom: 4px solid #244655;
}
.curriculum-border {
  height: 3px;
  background: #b57ab5;
  margin: 0 0 2rem 0;
}
.curriculum-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
.curriculum-section-title {
  color: #333;
  margin-bottom: 0.8rem;
}
.curriculum-description {
  color: #6c757d;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.curriculum-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e8d5e8;
  transition: all 0.3s ease;
}
.curriculum-icon {
  color: #f58634;
  font-size: 1rem;
  margin-right: 0.75rem;
  min-width: 20px;
}
.curriculum-text {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.3;
  text-decoration: none;
  margin-bottom: 0px;
}
.curriculum-text:hover {
  color: #8b4a8b;
  text-decoration: none;
}
.curriculum-highlight {
  color: #b57ab5;
}
@media (max-width: 768px) {
  .curriculum-section {
    padding: 0.5rem;
  }
  .curriculum-title {
    font-size: 1.5rem;
  }
  .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
@media (max-width: 576px) {
  .curriculum-title {
    font-size: 1.3rem;
  }
  .curriculum-section-title {
    font-size: 1.1rem;
  }
}

.what_will_learn {
  background: #fff;
}

/* Card */
.what_will_learn .benefit-card {
  background: #fff;
  padding: 50px 25px 30px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.what_will_learn .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* Icon Circle */
.what_will_learn .top-icon {
  width: 70px;
  height: 70px;
  background: #244655;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -70px auto 15px;
  border: 4px solid #fff;
}

.what_will_learn .top-icon img {
  width: 30px;
}

/* Title */
.what_will_learn .benefit-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #244655;
  margin-bottom: 10px;
}

/* Text */
.what_will_learn .benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Accent line */
.what_will_learn .benefit-card::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #f58634;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .what_will_learn .top-icon {
    margin-top: -60px;
  }
}

/* Card Style - DIFFERENT */
.benefit-alt {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 2px dotted #f58634;
  border-left: 4px solid #244655;

  transition: 0.3s;
  height: 100%;
  position: relative;
}

/* Hover effect */
.benefit-alt:hover {
  transform: translateX(8px);
  border-left: 4px solid #f58634;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icon */
.benefit-alt .icon {
  min-width: 45px;
  height: 45px;
  background: #244655;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-alt .icon img {
  width: 22px;
}

/* Content */
.benefit-alt h4 {
  font-size: 17px;
  color: #244655;
  font-weight: 600;
  margin-bottom: 5px;
}

.benefit-alt p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.schedule-header {
  text-align: center;
  margin-bottom: 30px;
}
.yoga-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  fill: #965995;
}

.schedule-days {
  font-size: 1.4rem;
  font-weight: 600;
  color: #4a4a4a;
  text-align: center;
  margin-bottom: 30px;
}
.schedule-table {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
.schedule-table::before {
  content: "";
  position: absolute;
  left: 280px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #dee2e6;
  z-index: 1;
}
.schedule-row {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}
.schedule-row:hover {
  background-color: #f8f9fa;
}
.schedule-row.header-row {
  background-color: #244655;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.time-slot-header {
  font-weight: 600;
  font-size: 1rem;
  min-width: 200px;
  margin-right: 20px;
  margin-left: 60px;
}
.activity-header {
  font-size: 1rem;
  flex-grow: 1;
}
.schedule-row.highlighted {
  background-color: #fff3e0;
}
.schedule-row.highlighted:hover {
  background-color: #ffe8cc;
}
.schedule-row:last-child {
  border-bottom: none;
}
.time-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  background: #fff;
}
.clock-icon {
  width: 20px;
  height: 20px;
  fill: #8b4513;
}
.time-slot {
  font-weight: 600;
  color: #4a4a4a;
  font-size: 1rem;
  min-width: 200px;
  margin-right: 20px;
}
.activity {
  font-size: 1rem;
  color: #4a4a4a;
  flex-grow: 1;
}
.special-class {
  text-align: center;
  font-size: 1.1rem;
  color: #4a4a4a;
  margin: 30px 0 25px;
  font-weight: 500;
}
.section-divider {
  border: none;
  height: 1px;
  background-color: #dee2e6;
  margin: 10px 0 10px 0;
  width: 100%;
}

.button-container {
  text-align: center;
  margin-top: 30px;
}
.course-btn {
  padding: 12px 30px;
  margin: 0 10px;
  border: 2px solid #f58634;
  background: #fff;
  color: #f58634;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.course-btn:hover {
  background: #f58634;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .daily-schedule-100-hour .row .col-6 {
    width: 100% !important;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .daily-schedule-100-hour .schedule-table::before {
    display: none;
  }

  /* ROW IN SINGLE LINE */
  .daily-schedule-100-hour .schedule-row {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 14px 12px;
    gap: 10px;
  }

  .daily-schedule-100-hour .schedule-row:not(.header-row) {
    background: #fff;
    border-radius: 8px;
    margin: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-bottom: none;
  }

  .daily-schedule-100-hour .schedule-row.header-row {
    justify-content: space-between;
    padding: 12px 15px;
  }

  .daily-schedule-100-hour .time-icon {
    margin: 0;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .daily-schedule-100-hour .time-slot {
    min-width: auto;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    width: 40%;
  }

  .daily-schedule-100-hour .activity {
    font-size: 14px;
    flex: 1;
    color: #555;
  }

  .daily-schedule-100-hour .time-slot-header {
    margin-left: 0;
    min-width: auto;
  }

  .daily-schedule-100-hour .course-btn {
    display: block;
    margin: 12px auto;
    width: 220px;
  }
  .section-divider {
    border: none;
    height: 1px;
    background-color: #dee2e6;
    margin: 5px 0 3px 0;
    width: 100%;
  }
}
.section-subtitle {
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  color: #244655;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ashtanga-course-fees {
  padding: 30px 0;
}

.ashtanga-course-fees .fees-table-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ashtanga-course-fees .fees-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.ashtanga-course-fees .fees-table thead tr {
  background-color: #244655;
}

.ashtanga-course-fees .fees-table thead th {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 18px;
  text-align: center;
  border: none;
  letter-spacing: 0.3px;
}

.ashtanga-course-fees .fees-table thead th:first-child {
  text-align: left;
}

.ashtanga-course-fees .fees-table tbody tr {
  background-color: #ffffff;
  border-bottom: 1px solid #e8f4f3;
  transition: background-color 0.2s ease;
}

.ashtanga-course-fees .fees-table tbody tr:last-child {
  border-bottom: none;
}

.ashtanga-course-fees .fees-table tbody tr:hover {
  background-color: #f0fafa;
}

.ashtanga-course-fees .fees-table tbody td {
  padding: 16px 18px;
  text-align: center;
  border: none;
  font-size: 16px;
  color: #333;
}

.ashtanga-course-fees .fees-table tbody td:first-child {
  text-align: left;
  color: #444;
}

.ashtanga-course-fees .apply-btn {
  display: inline-block;
  background-color: #f28a2f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 9px 22px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
  white-space: nowrap;
}

.ashtanga-course-fees .apply-btn:hover {
  background-color: #244655;
  transform: translateY(-1px);
  color: #fff;
}

/* Responsive card layout for mobile */
@media (max-width: 767px) {
  .ashtanga-course-fees .fees-table-wrapper {
    display: none;
  }

  .ashtanga-course-fees .fees-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .ashtanga-course-fees .fee-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
  }

  .ashtanga-course-fees .fee-card-header {
    background-color: #244655;
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
  }

  .ashtanga-course-fees .fee-card-body {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .ashtanga-course-fees .fee-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #444;
  }

  .ashtanga-course-fees .fee-card-label {
    color: #777;
    font-size: 13px;
  }

  .ashtanga-course-fees .fee-card-footer {
    padding: 10px 16px 14px;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .ashtanga-course-fees .fees-cards {
    display: none;
  }
}

.ashatnga-course-inclu-exclu {
  padding: 50px 0;
  overflow: hidden;
}

/* MAIN CARD */

.ashatnga-course-inclu-exclu .ace-card {
  position: relative;
  background: var(--white-color);
  border-radius: 30px;
  padding: 15px 20px;
  overflow: hidden;
  transition: 0.5s ease;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ashatnga-course-inclu-exclu .ace-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.ashatnga-course-inclu-exclu .ace-include::before {
  background: linear-gradient(90deg, var(--primary-color), #ffb067);
}

.ashatnga-course-inclu-exclu .ace-exclude::before {
  background: linear-gradient(90deg, var(--secondary-color), #4d7d93);
}

.ashatnga-course-inclu-exclu .ace-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* BG SHAPE */

.ashatnga-course-inclu-exclu .ace-shape {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  right: -100px;
  bottom: -100px;
  z-index: -1;
  opacity: 0.06;
}

.ashatnga-course-inclu-exclu .ace-include .ace-shape {
  background: var(--primary-color);
}

.ashatnga-course-inclu-exclu .ace-exclude .ace-shape {
  background: var(--secondary-color);
}

/* ICON TOP */

.ashatnga-course-inclu-exclu .ace-top-icon {
  width: 50px;
  height: 50px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 38px;
}

.ashatnga-course-inclu-exclu .ace-include .ace-top-icon {
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
}

.ashatnga-course-inclu-exclu .ace-exclude .ace-top-icon {
  background: rgba(36, 70, 85, 0.12);
  color: var(--secondary-color);
}

/* LIST */

.ashatnga-course-inclu-exclu .ace-list {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}

.ashatnga-course-inclu-exclu .ace-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.5;
  color: #303030;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.ashatnga-course-inclu-exclu .ace-list li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

/* ICON */

.ashatnga-course-inclu-exclu .ace-list-icon {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ashatnga-course-inclu-exclu .ace-include .ace-list-icon {
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
}

.ashatnga-course-inclu-exclu .ace-exclude .ace-list-icon {
  background: rgba(36, 70, 85, 0.12);
  color: var(--secondary-color);
}

/* TAG */

.ashatnga-course-inclu-exclu .ace-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 28px;
}

.ashatnga-course-inclu-exclu .ace-include .ace-tag {
  background: rgba(245, 134, 52, 0.1);
  color: var(--primary-color);
}

.ashatnga-course-inclu-exclu .ace-exclude .ace-tag {
  background: rgba(36, 70, 85, 0.1);
  color: var(--secondary-color);
}

/* MOBILE */

@media (max-width: 991px) {
  .ashatnga-course-inclu-exclu .ace-card {
    padding: 35px 28px;
  }

  .ashatnga-course-inclu-exclu .ace-list li {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .ashatnga-course-inclu-exclu {
    padding: 45px 0;
  }

  .ashatnga-course-inclu-exclu .ace-card {
    border-radius: 24px;
    padding: 30px 22px;
  }

  .ashatnga-course-inclu-exclu .ace-top-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .ashatnga-course-inclu-exclu .ace-list {
    margin-top: 25px;
  }

  .ashatnga-course-inclu-exclu .ace-list li {
    font-size: 16px;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .ashatnga-course-inclu-exclu .ace-list-icon {
    min-width: 36px;
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

.activity-card-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}
.activity-item-new {
  background: #fff;
  border: 2px solid #244655;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.activity-item-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #244655;
  z-index: 0;
  transition: width 0.4s ease-in-out;
}
.activity-item-new:hover::before {
  width: calc(100% - 120px);
}
.activity-item-new:hover {
  color: #fff;
}
.activity-item-new:hover h3,
.activity-item-new:hover p {
  color: #fff;
}
.activity-content-new {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 80px);
}
.activity-item-new h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px;
  color: #000;
}
.activity-item-new p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.activity-item-new img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  z-index: 1;
}
@media (max-width: 768px) {
  .activity-card-new {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.about-sound-healing {
  /* background: linear-gradient(135deg, #fff2e8 0%, #ffe8d6 100%); */
}

/* Subtitle */
.about-sound-subtitle {
  letter-spacing: 3px;
  font-size: 14px;
  color: #f38121;
  font-weight: 600;
}

/* H1 */
.about-sound-title {
  font-size: 48px;
  font-weight: 700;
  margin-top: 15px;
  color: #244c59;
}

/* H2 */
.about-sound-heading {
  font-size: 22px;
  color: #f38121;
  margin: 20px 0;
  font-weight: 600;
}

/* Text */
.about-sound-text {
  color: #3f3f3f;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Image */
.about-sound-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.about-sound-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-sound-image-wrapper:hover .about-sound-image {
  transform: scale(1.1);
}

/* Badge */
.about-sound-badge {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 18px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(36, 76, 89, 0.15);
}

.about-sound-badge h5 {
  margin: 0;
  font-weight: 700;
  color: #f38121;
}

.about-sound-badge span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #244c59;
}

/* Unique Section */
.about-sound-unique-title {
  font-size: 30px;
  font-weight: 700;
  color: #244c59;
  margin-bottom: 20px;
}

.about-sound-feature-heading {
  font-size: 20px;
  font-weight: 600;
  color: #f38121;
  margin-top: 25px;
}

.about-sound-feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.about-sound-feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.about-sound-feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f38121;
  font-weight: bold;
}

/* Title */
.sound-experience-title {
  font-size: 36px;
  font-weight: 700;
  color: #244c59;
}

.sound-experience-section .col-lg-6 {
  display: flex;
  flex-direction: column;
}

/* Make cards equal height */
.experience-card {
  flex: 1;
}

.sound-experience-intro {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
  line-height: 1.8;
}

/* Cards */
.experience-card {
  display: flex;
  gap: 12px;
  background: #ffffff;
  border-left: 5px solid #f38121;
  padding: 15px 9px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(36, 76, 89, 0.08);
  transition: 0.3s ease;
  position: relative;
}

.experience-card span {
  font-size: 16px;
  font-weight: 700;
  color: #f38121;
  display: block;
  margin-bottom: 8px;
}

.experience-card p {
  margin: 0;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(36, 76, 89, 0.15);
}

/* Highlight Box */
.experience-highlight {
  background: white;
  color: black;
  border: 2px solid #244c59;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(36, 76, 89, 0.2);
}

.experience-highlight p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

/* Alternate Highlight */
.experience-highlight-alt {
  background: white;
  border: 2px solid #f38121;
  padding: 20px;
  border-radius: 15px;
}

.experience-highlight-alt p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .sound-experience-section {
    background: #f8f6f2;
  }
}

.sound-knowledge-modern {
  background: #f8f6f2;
}

/* LEFT CONTENT */
.knowledge-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #244c59;
  margin-bottom: 20px;
}

.knowledge-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

.knowledge-quote {
  margin-top: 25px;
  padding: 15px 20px;
  border-left: 5px solid #f38121;
  background: #fff;
  font-weight: 500;
  border-radius: 8px;
}

/* IMAGE SIDE */
.knowledge-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.knowledge-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.knowledge-image-wrapper:hover .knowledge-image {
  transform: scale(1.08);
}

/* Overlay gradient */
.image-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top,
                rgba(36, 76, 89, 0.8),
                rgba(36, 76, 89, 0.2)); */
}

/* Floating Info Box */
.image-info-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  width: 70%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.image-info-box h5 {
  margin: 0 0 10px;
  color: #244c59;
  font-weight: 700;
}

.image-info-box p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.section-top-tag {
  letter-spacing: 3px;
  font-size: 14px;
  color: #f38121;
  font-weight: 600;
}

/* MAIN TITLE */
.rishikesh-main-title {
  font-size: 44px;
  font-weight: 700;
  color: #244c59;
  margin: 15px 0 20px;
}

.rishikesh-main-title span {
  color: #f38121;
}

/* INTRO */
.rishikesh-intro {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 15px;
}

/* LEFT CONTENT */
.rishikesh-left-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 15px;
  color: #444;
}

/* BENEFITS */
.rishikesh-benefits {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.rishikesh-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-weight: 500;
}

.rishikesh-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f38121;
  font-weight: bold;
}

/* IMAGE STYLE */
.rishikesh-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #ddd;
}

.rishikesh-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  transition: transform 0.7s ease;

  /* Attractive Border */

  /* Soft depth shadow */
  box-shadow: 0 15px 35px rgba(36, 76, 89, 0.15);
}

/* OVERLAY CARD */
.rishikesh-overlay-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  width: 75%;
}

.rishikesh-overlay-card h5 {
  margin-bottom: 8px;
  font-weight: 700;
}

.rishikesh-overlay-card p {
  font-size: 14px;
  margin: 0;
}

/* TRANSFORMATION BLOCK */
.transformation-title {
  font-size: 30px;
  font-weight: 700;
  color: #244c59;
  margin-bottom: 20px;
}

.transformation-text {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 15px;
}
.sound-benefits-interactive {
  /* background: linear-gradient(135deg, #fff2e8 0%, #ffe8d6 100%); */
  padding: 100px 0;
}

.sound-benefits-interactive .benefit-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #244c59;
}

.sound-benefits-interactive .benefit-main-title span {
  color: #f38121;
}

.sound-benefits-interactive .benefit-main-text {
  max-width: 800px;
  /* margin: 20px auto 0; */
  font-size: 18px;
  color: #555;
}

.sound-benefits-interactive .benefit-side {
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  gap: 12px;
  margin-bottom: 30px;
}

.sound-benefits-interactive .benefit-point {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  border-radius: 40px;
  background: white;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sound-benefits-interactive .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #244c59;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.4s ease;
}

.sound-benefits-interactive .benefit-point span {
  font-weight: 600;
  color: #244c59;
}

.sound-benefits-interactive .benefit-point.active {
  background: #244c59;
}

.sound-benefits-interactive .benefit-point.active span {
  color: white;
}

.sound-benefits-interactive.benefit-point.active .icon-circle {
  background: white;
  color: #244c59;
}

.sound-benefits-interactive .benefit-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  min-height: 500px;
  position: relative;
}

.sound-benefits-interactive .content-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
}

.sound-benefits-interactive .content-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.sound-benefits-interactive .benefit-content h3 {
  margin-bottom: 20px;
  color: #f38121;
}

.sound-benefits-interactive .benefit-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.sound-benefits-interactive .benefit-content ul li {
  margin-bottom: 10px;
}

.sound-benefits-interactive .content-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sound-benefits-interactive .content-text {
  flex: 2;
}

.sound-benefits-interactive .content-image {
  flex: 1;
}

.sound-benefits-interactive .content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}

.sound-benefits-interactive .content-image img:hover {
  transform: scale(1.05);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 991px) {
  /* Section padding smaller */
  .sound-benefits-interactive .sound-benefits-interactive {
    padding: 60px 0;
  }

  /* Title smaller */
  .sound-benefits-interactive .benefit-main-title {
    font-size: 28px;
  }

  .sound-benefits-interactive .benefit-main-text {
    font-size: 15px;
    padding: 0 10px;
  }

  /* LEFT SIDE → 2 per row */
  .sound-benefits-interactive .benefit-side {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px;
    /* gap between points & content */
  }

  .sound-benefits-interactive .benefit-point {
    width: 48%;
    padding: 12px 15px;
    border-radius: 20px;
    gap: 8px;
  }

  .sound-benefits-interactive .benefit-point span {
    font-size: 13px;
  }

  .sound-benefits-interactive .icon-circle {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  /* CONTENT BOX */
  .sound-benefits-interactive .benefit-content {
    padding: 25px;
    border-radius: 25px;
    min-height: auto;
  }

  .sound-benefits-interactive .benefit-content h3 {
    font-size: 20px;
  }

  .sound-benefits-interactive .benefit-content p,
  .sound-benefits-interactive .benefit-content ul li {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Image smaller */
  .sound-benefits-interactive .content-image img {
    height: 220px;
  }

  /* Stack content vertically */
  .sound-benefits-interactive .content-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.why-ashtanga-boxes {
  background: #ffffff;
  padding: 100px 0;
}

.box-title {
  font-size: 42px;
  font-weight: 700;
  color: #244c59;
}

.box-intro {
  font-size: 18px;
  color: #555;
  margin-top: 15px;
}

/* CARD STYLE */
.why-card {
  background: #ffffff;
  padding: 30px 30px;
  /* less padding */
  border-radius: 18px;
  position: relative;
  border: 1px solid #e6e6e6;
  transition: all 0.35s ease;
  height: 100%;
}

/* Attractive border accent */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #f38121, #ffb067);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(36, 76, 89, 0.15);
  border-color: transparent;
}

/* Heading */
.why-card h3 {
  font-size: 22px;
  color: #244c59;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Paragraph */
.why-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* List */
.why-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.why-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 15px;
}

.why-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #f38121;
  border-radius: 50%;
}

/* Full width card extra style */
.full-card {
  padding: 40px;
}

/* Two column list inside full card */
.two-col-list {
  columns: 2;
  column-gap: 40px;
}

@media (max-width: 768px) {
  .two-col-list {
    columns: 1;
  }
}

/* Background image base */
.why-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}

/* Dark overlay */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  /* dark overlay */
  z-index: 1;
}

/* Make content above overlay */
.why-card > * {
  position: relative;
  z-index: 2;
}

/* Heading color */
.why-card h3 {
  color: #ffffff;
}

/* Paragraph */
.why-card p {
  color: #f1f1f1;
}

/* List color */
.why-card ul li {
  color: #f1f1f1;
}

/* Keep orange dot visible */
.why-card ul li::before {
  background: #f38121;
}

/* Hover effect (more premium now) */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

.bg-foundation-1 {
  background-image: url("./../images/bg-foundation-1.webp");
}
.bg-foundation-2 {
  background-image: url("./../images/bg-foundation-2.webp");
}
.bg-foundation-3 {
  background-image: url("./../images/bg-foundation-3.webp");
}
.bg-foundation-4 {
  background-image: url("./../images/bg-foundation-4.webp");
}
.bg-foundation-5 {
  background-image: url("./../images/bg-foundation-5.webp");
}
.bg-foundation-6 {
  background-image: url("./../images/bg-foundation-6.webp");
}

.sh-curriculum-elegant {
  padding: 10px 0;
  position: relative;
}

.sh-curriculum-elegant .container {
  position: relative;
  z-index: 1;
}

/* HEADER */
.sh-cur-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #244c59;
  letter-spacing: -0.5px;
}

.sh-cur-header p {
  font-size: 18px;
  color: #666;
  margin-top: 12px;
}

/* COURSE SELECTOR */
/* COURSE SELECTOR WRAPPER */
.sh-course-selector {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 18px;
  margin: 10px 0;
}

/* TAB BUTTON */
.sh-course-btn {
  padding: 16px 32px;
  border-radius: 60px;
  border: 2px solid #244c59;
  background: #ffffff;
  font-weight: 600;
  font-size: 15px;
  color: #244c59;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

/* Subtle hover */
.sh-course-btn:hover {
  background: #244c59;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(36, 76, 89, 0.25);
}

/* ACTIVE TAB — Premium Look */
.sh-course-btn.active {
  background: linear-gradient(135deg, #244c59, #3a6f7e);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 20px 45px rgba(36, 76, 89, 0.35);
  transform: translateY(-4px);
}

/* Glow effect for active */
.sh-course-btn.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  box-shadow: 0 0 25px rgba(243, 129, 33, 0.5);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .sh-course-btn {
    width: 100%;
    text-align: center;
  }
}

/* CONTENT WRAPPER */
.sh-course-content {
  display: none;
  animation: fadeIn 0.5s ease;
  padding: 20px;
  border-radius: 20px;
}

.sh-course-content.active {
  display: block;
}

/* TITLE */
.sh-course-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #244c59;
}

.sh-course-title span {
  color: #f38121;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
}

/* DAY BLOCK */
.sh-day-block {
  margin-top: 45px;
  padding: 35px;
  background: #faf8f4;
  border-radius: 14px;
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid #f38121;
}

.sh-day-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.sh-day-block h4 {
  font-size: 20px;
  font-weight: 700;
  color: #244c59;
  margin-bottom: 15px;
}

.sh-day-block ul {
  list-style: none;
  padding-left: 0;
}

.sh-day-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.sh-day-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #f38121;
  border-radius: 50%;
}

/* TAGLINE */
.sh-course-tagline {
  margin-top: 35px;
  font-style: italic;
  text-align: center;
  font-size: 16px;
  color: #666;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .sh-course-content {
    padding: 30px;
  }

  .sh-day-block {
    padding: 20px;
  }
}

.sound-healing-price-section {
  background: #f7f5fa;
}

/* Card */
.sound-healing-price-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* top gradient */
.sound-healing-price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #244655, #2f5f6f, #3e7a8d);
}

.sound-healing-price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Badge */
.sound-healing-price-badge {
  background: linear-gradient(135deg, #1f3c46, #244655);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* Title */
.sound-healing-price-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f38121;
  margin-bottom: 6px;
}

/* Subtitle */
.sound-healing-price-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 16px;
}

/* List */
.sound-healing-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.sound-healing-price-list li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
  padding-left: 22px;
  position: relative;
}

.sound-healing-price-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f38121;
  font-weight: bold;
}

/* Price box */
.sound-healing-price-box {
  background: #fffbf7;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(142, 42, 132, 0.15);
  text-align: center;
}

.sound-healing-price-box span {
  font-size: 12px;
  color: black;
}

.sound-healing-price-box strong {
  color: #f38121;
}

.sound-healing-price-box h4 {
  font-size: 28px;
  font-weight: 700;
  color: #f38121;
  margin: 5px 0;
}

.sound-healing-price-box p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* multi price */
.sound-healing-price-box.multi {
  text-align: left;
}

/* Button */
.sound-healing-price-btn {
  background: linear-gradient(135deg, #244655, #3e7a8d);
  color: #fff;
  border-radius: 40px;
  padding: 12px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}

.sound-healing-price-btn:hover {
  background: linear-gradient(135deg, #2f5f6f, #3e7a8d);
  color: #fff;
}

.ayurved-section {
  padding: 10px 0;
  /* background: linear-gradient(135deg, #fff2e8 0%, #ffe8d6 100%); */
}

/* LEFT SIDE WRAPPER */
.ayurved-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD STYLE */
.ayurved-card {
  padding: 35px;
  border-radius: 8px;
  /* less rounded */
  transition: 0.3s ease;
}

.ayurved-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.ayurved-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #f4841a;
}

.ayurved-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* LIST CLEAN FIX (no left ugly spacing) */
.ayurved-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.ayurved-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 15px;
}

.ayurved-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #f4841a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* RIGHT SIDE */
.ayurved-highlight {
  background: #244655;
  color: #fff;
  padding: 45px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ayurved-highlight h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.ayurved-highlight p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* BENEFITS GRID */
.ayurved-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ayurved-benefits {
    grid-template-columns: 1fr;
  }

  .ayurved-highlight {
    padding: 35px;
  }
}

.ayurveda-modern-section {
  background: white;
}

.ayurveda-main-title {
  font-size: 40px;
  font-weight: 700;
  color: #004c56;
  line-height: 1.3;
}

.ayurveda-card {
  border-radius: 14px;
  transition: 0.3s;
}

.ayurveda-card:hover {
  transform: translateY(-5px);
}

.ayurveda-card h3 {
  color: #f4841a;
  font-weight: 600;
  margin-bottom: 15px;
}

.ayurveda-card p {
  color: #555;
  line-height: 1.7;
}

.ayurveda-list {
  padding-left: 20px;
}

.ayurveda-list li {
  margin-bottom: 8px;
  color: #004c56;
  font-weight: 500;
}

.ayurveda-img img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ayurveda-treatment-section {
  /* background: linear-gradient(135deg, #fff2e8 0%, #ffe8d6 100%); */
}

.treatment-main-title {
  font-size: 38px;
  font-weight: 700;
  color: #004c56;
}

.therapy-box {
  padding: 35px;
  border-left: 5px solid #f4841a;
  border-radius: 10px;
}

.therapy-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.therapy-card:hover {
  transform: translateY(-6px);
}

.therapy-card h4 {
  color: #f4841a;
  margin-bottom: 10px;
}

.benefit-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.panchakarma-deep-section {
  background: white;
}

.panchakarma-main-title {
  font-size: 38px;
  font-weight: 700;
  color: #004c56;
}

.pk-content-box {
  background: white;
  border-radius: 12px;
}

.pk-section-block {
  padding: 35px;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
}

.pk-section-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #f4841a, #f4841a);
  border-radius: 6px 0 0 6px;
}

.pk-section-block h3 {
  color: #f4841a;
  margin-bottom: 15px;
}

.pk-course-section {
  /* background: linear-gradient(135deg, #fff2e8 0%, #ffe8d6 100%); */
}

.pk-course-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #004c56;
}

.pk-course-img {
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pk-course-content {
  border-radius: 12px;
}

.pk-course-box {
  border-radius: 12px;
  position: relative;
}

.pk-course-box h3 {
  color: #f4841a;
  margin-bottom: 15px;
}

.pk-course-highlight {
  background: linear-gradient(135deg, #004c56, #006d78);
  color: white;
  padding: 35px;
  border-radius: 14px;
}

.pk-course-highlight ul li {
  color: white;
}

.pk-course-highlight h3 {
  color: #f4841a;
}

.rishikesh-premium {
  background: white;
}

.rp-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #004c56;
}

.rp-hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.rp-hero-image img,
.rp-highlight-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.rp-block {
  border-radius: 18px;
}

.rp-block h3 {
  color: #f4841a;
  margin-bottom: 15px;
}

.rp-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 0fr;
  gap: 40px;
  align-items: center;
}

.rp-band {
  background: linear-gradient(135deg, #004c56, #006d78);
  color: white;
  padding: 50px;
  border-radius: 18px;
  margin-bottom: 40px;
}

.rp-final {
  background: #004c56;
  color: white;
  padding: 50px;
  border-radius: 18px;
}

.ashtanga-why-section {
  background: linear-gradient(135deg, 0%, #ffe8d6 100%);
}

.ashtanga-why-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #004c56;
}

/* NEW CARD */
.ayurveda-why-card {
  height: 100%;
  padding: 30px;
  border-radius: 18px;
  background: #ffffff;
  position: relative;
  border: 2px solid transparent;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(135deg, #f4841a, #be6a10, #004c56);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ayurveda-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Title */
.ayurveda-why-card h3 {
  color: #f4841a;
  margin-bottom: 15px;
}

/* Lists */
.ayurveda-why-card ul {
  padding-left: 18px;
}

.ayurveda-why-card ul li {
  margin-bottom: 6px;
  color: #004c56;
  font-weight: 500;
}

:root {
  --teal: #244655;
  --teal-mid: #2d5a6e;
  --teal-light: #e6f2f6;
  --teal-pale: #f0f7fa;
  --orange: #f58634;
  --orange-dk: #d9701a;
  --orange-lt: #f7a45c;
  --orange-pale: #fff4eb;
  --orange-soft: #ffe0c0;
  --white: #ffffff;
  --cream: #fdfaf7;
  --off: #f7f4f0;
  --sand: #f0ebe3;
  --line: #e4ddd4;
  --text: #1e3040;
  --body: #4a6070;
  --light: #7a909e;
  --font: "Poppins", sans-serif;
  --r: 16px;
  --r-sm: 10px;
}

.sec-overview {
  padding: 90px 0;
  background: var(--cream);
}

.ov-img-wrap {
  position: relative;
}

.ov-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: 0 24px 60px rgba(36, 70, 85, 0.14);
}

.ov-img-wrap-2 {
  position: relative;
}

.ov-img-2 {
  width: 100%;
  height: 466px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: 0 24px 60px rgba(36, 70, 85, 0.14);
}

.ov-img-wrap-3 {
  position: relative;
}

.ov-img-3 {
  width: 100%;
  height: 730px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: 0 24px 60px rgba(36, 70, 85, 0.14);
}

.ov-img-wrap-4 {
  position: relative;
}

.ov-img-4 {
  width: 100%;
  height: 775px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: 0 24px 60px rgba(36, 70, 85, 0.14);
}

.ov-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--orange);
  border-radius: var(--r);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(245, 134, 52, 0.32);
}

.ov-badge .bn {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}

.ov-badge .bl {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-top: 2px;
}

.stat-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1;
  min-width: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.stat-box:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.stat-box .si {
  font-size: 1.3rem;
}

.stat-box strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  line-height: 1;
}

.stat-box small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light);
}

/* ════════════════════════════
   HIGHLIGHTS
════════════════════════════ */
.sec-hl {
  background: #ffffff;
  /* changed to white */
}

/* Grid */
.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Card */
.hl-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r);
  padding: 10px 18px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.hl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.hl-card:hover::before {
  transform: scaleX(1);
}

.hl-card:hover {
  background: #fff7f1;
  border-color: rgba(245, 134, 52, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Number */
.hl-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 6px;
}

/* Icon */
.hl-ico {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 10px;
}

/* Title */
.hl-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  /* dark text */
  margin-bottom: 8px;
}

/* Description */
.hl-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: black;
  margin: 0;
}

/* Note Box */
.hl-note {
  background: #fff7f1;
  border: 1px solid rgba(245, 134, 52, 0.25);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-top: 18px;
}

.hl-note p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #555;
  margin: 0;
  line-height: 1.8;
}

/* Heading area text fix */
.wh {
  color: #222 !important;
}

.sb {
  color: #666 !important;
}
/* ════════════════════════════
   FLEXIBLE
════════════════════════════ */
.sec-flex {
  padding: 90px 0;
  background: var(--cream);
}

.flex-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--orange);
  box-shadow: 0 20px 54px rgba(36, 70, 85, 0.13);
}

.flex-badge {
  position: absolute;
  bottom: -16px;
  right: 0;
  background: var(--c2);
  border-radius: var(--cream);
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(245, 134, 52, 0.3);
}

.flex-badge h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.flex-badge p {
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.4;
}

.cust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.cust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--teal-pale);
  border: 1px solid rgba(36, 70, 85, 0.12);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  transition: all 0.3s;
}

.cust-item:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  transform: translateX(4px);
}

.cust-item .ci {
  font-size: 1.15rem;
}

.cust-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
}

/* ════════════════════════════
   WHAT TO EXPECT — TABS
════════════════════════════ */
.sec-expect {
  padding: 90px 0;
  background: var(--off);
}

.tab-nav {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--line);
  margin-bottom: 28px;
}

.tb {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 11px 18px 12px;
  border-radius: 8px 8px 0 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--light);
  transition: all 0.25s;
  position: relative;
  bottom: -2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tb .ti {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  /* same feel as emoji */
  height: 20px;
}

.tb .ti img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tb:hover:not(.active) {
  color: var(--teal);
  background: rgba(36, 70, 85, 0.05);
}

.tb.active {
  background: #fff;
  color: var(--teal);
  border: 2px solid var(--line);
  border-bottom: 2px solid #fff;
  box-shadow: 0 -4px 12px rgba(36, 70, 85, 0.05);
}

.tb.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 2.5px;
  background: var(--orange);
  border-radius: 0 0 3px 3px;
}

.tp {
  display: none;
}

.tp.active {
  display: block;
  animation: tfd 0.35s ease;
}

@keyframes tfd {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Split card inside each panel */
.exp-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(36, 70, 85, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.exp-card.flip {
  direction: rtl;
}

.exp-card.flip > * {
  direction: ltr;
}

.exp-ph {
  position: relative;
  overflow: hidden;
}

.exp-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.exp-card:hover .exp-ph img {
  transform: scale(1.04);
}

.exp-pnum {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.14);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.exp-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-body.dk {
  background: var(--teal);
}

.exp-body h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 12px;
}

.exp-body h3 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
}

.exp-body.dk h3 {
  color: #fff;
}

.lsm {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin: 14px 0 8px;
}

.exp-body.dk .lsm {
  color: rgba(255, 255, 255, 0.58);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.tr {
  font-size: 14px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 50px;
  transition: all 0.25s;
  cursor: default;
}

.tr-t {
  background: var(--teal-light);
  color: var(--teal);
  border: 1px solid rgba(36, 70, 85, 0.14);
}

.tr-t:hover {
  background: var(--teal);
  color: #fff;
}

.tr-o {
  background: var(--orange-pale);
  color: var(--orange-dk);
  border: 1px solid var(--orange-soft);
}

.tr-o:hover {
  background: var(--orange);
  color: #fff;
}

/* ════════════════════════════
   PEACEFUL ENV
════════════════════════════ */
.sec-env {
  padding: 90px 0;
  background: var(--teal-pale);
}

.env-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 12px 44px rgba(36, 70, 85, 0.1);
}

.env-photo {
  position: relative;
}

.env-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.env-content {
  background: #fff;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.env-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
  line-height: 1.25;
}

.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.env-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--teal);
  padding: 10px 12px;
  background: var(--teal-pale);
  border-radius: var(--r-sm);
}

.env-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ════════════════════════════
   BENEFITS
════════════════════════════ */
.sec-benefits {
  padding: 90px 0;
  background: var(--teal);
}

/* GRID → 2 cards per row */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* CARD */
.ben-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r);
  padding: 30px 26px;
  height: 100%;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
}

.ben-card:hover {
  background: rgba(245, 134, 52, 0.12);
  border-color: rgba(245, 134, 52, 0.45);
  transform: translateY(-5px);
}

/* ICON */
.ben-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 134, 52, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

/* TITLE */
.ben-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

/* LIST */
.chk {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec-benefits .chk li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

.dot {
  color: var(--orange);
  font-weight: 600;
}

/* NOTE BOX */
.ben-note {
  background: rgba(245, 134, 52, 0.14);
  border: 1px solid rgba(245, 134, 52, 0.35);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-top: 24px;
}

.ben-note p {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .ben-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════
   WHO CAN JOIN
════════════════════════════ */
.sec-who {
  padding: 90px 0;
  background: var(--cream);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.who-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.3s;
}

.who-card:hover {
  box-shadow: 0 12px 36px rgba(36, 70, 85, 0.1);
  transform: translateY(-4px);
}

.who-thumb {
  height: 275px;
  overflow: hidden;
  position: relative;
}

.who-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.who-card:hover .who-thumb img {
  transform: scale(1.05);
}

.who-thumb .wt-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.who-body {
  padding: 22px 20px;
}

.who-body h3 {
  color: #f58634;
  margin-bottom: 8px;
}

/* ════════════════════════════
   WHY RISHIKESH
════════════════════════════ */
.sec-rish {
  padding: 50px 0;
  background: linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
}

/* LEFT IMAGE */
.rish-photo {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 520px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.rish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: 0.6s;
}

.rish-photo:hover img {
  transform: scale(1.12);
}

.rp-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    transparent 100%
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rp-ov p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* RIGHT ITEMS */
.rish-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 15px;
  transition: all 0.35s ease;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Orange accent line */
.rish-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(var(--orange), var(--orange-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.35s;
}

.rish-item:hover::before {
  transform: scaleY(1);
}

.rish-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 134, 52, 0.35);
}

/* ICON */
.ri-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(245, 134, 52, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* TITLE */
.rish-item h3 {
  color: #f58634;
  margin-bottom: 6px;
}

/* TEXT */

.rish-item p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .rish-photo {
    min-height: 380px;
    margin-bottom: 30px;
  }
}

/* ════════════════════════════
   WHY OUR SCHOOL
════════════════════════════ */
.sec-school {
  padding: 20px 0;
  background: #fff;
}

.school-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: 0 20px 54px rgba(36, 70, 85, 0.12);
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sc-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 18px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.sc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #2c3e50;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.sc-card:hover::after {
  transform: scaleX(1);
}

.sc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(36, 70, 85, 0.08);
}

.sc-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #f58634;
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .hl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .exp-card {
    grid-template-columns: 1fr;
  }

  .exp-card.flip {
    direction: ltr;
  }

  .env-split {
    grid-template-columns: 1fr;
  }

  .rish-photo {
    min-height: 300px;
    margin-bottom: 20px;
  }

  .row.al-c {
    gap: 24px;
  }

  .ov-text-box {
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 16px;
  }

  .hero-h1 {
    font-size: 2.4rem;
    letter-spacing: -0.5px;
  }

  .hero-stats {
    flex-wrap: wrap;
    width: 100%;
  }

  .hs {
    flex: 1;
    min-width: 80px;
  }

  .hl-grid {
    grid-template-columns: 1fr;
  }

  .sc-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .cust-grid {
    grid-template-columns: 1fr;
  }

  .env-grid {
    grid-template-columns: 1fr;
  }

  .faq-sticky {
    position: static;
  }

  .faq-img {
    height: 200px;
  }

  .sec-overview,
  .sec-hl,
  .sec-flex,
  .sec-expect,
  .sec-env,
  .sec-benefits,
  .sec-who,
  .sec-rish,
  .sec-school,
  .sec-personal,
  .sec-faq {
    padding: 60px 0;
  }

  .ov-img {
    height: 450px;
  }

  .ov-img-2 {
    height: 305px;
  }
  .ov-img-3 {
    height: 450px;
  }
  .ov-img-4 {
    height: 450px;
  }

  .school-img {
    height: 240px;
  }

  .pt-img {
    height: 220px;
  }

  .exp-body {
    padding: 28px 22px;
  }

  .env-content {
    padding: 30px 22px;
  }

  .tab-nav {
    gap: 4px;
  }

  .tb {
    padding: 9px 12px;
    font-size: 0.66rem;
  }

  .row.al-c {
    flex-direction: column;
  }
}

.gallery-section {
  padding: 0px 0;
  background: #fff;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Image Card */
.gallery-item {
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: 320px; /* FIXED HEIGHT */
  object-fit: cover; /* IMPORTANT for square crop */
  border-radius: 12px;
  transition: 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.why-choose-benifits {
  background: #fff;
}

.why-choose-benifits .benefit-card {
  background: #fff;
  padding: 40px 25px 30px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid #f58634;
  transition: 0.3s ease;
  height: 100%;
}

.why-choose-benifits .benefit-card:hover {
  transform: translateY(-8px);
}

.why-choose-benifits .benefit-card h3 {
  font-weight: 700;
  margin-top: 15px;
  font-size: 24px;
}

.why-choose-benifits .benefit-card p {
  color: #555;
  font-size: 15px;
}

/* Icon Circle */
.why-choose-benifits .icon-wrap {
  width: 70px;
  height: 70px;
  background: #244655;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -65px auto 10px;
  border: 4px solid #f58634;
}

.why-choose-benifits .icon-wrap img {
  width: 30px;
}

/* Accent Line */

/* Full width last card */
.why-choose-benifits .full-width {
  padding: 50px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .why-choose-benifits .icon-wrap {
    margin-top: -55px;
  }
}

.chk li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 300;
  line-height: 1.7;
}

.chk li .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange-soft);
}

.chk.wh li .dot {
  background: rgba(245, 134, 52, 0.22);
  border-color: rgba(245, 134, 52, 0.35);
  color: var(--orange-lt);
}

.blog-page-ashtanga-section {
  background: #fff;
}
.blog-page-ashtanga-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid #244c59;
}
.blog-page-ashtanga-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgb(36 76 89 / 0.15);
}
.blog-page-ashtanga-img-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.blog-page-ashtanga-body {
  padding: 22px;
}
.blog-page-ashtanga-date,
.blog-page-ashtanga-mail {
  width: 100%;
  font-size: 14px;
  color: #244c59;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.blog-page-ashtanga-date {
  border-bottom: 1px solid #f8d9c3;
}
.blog-page-ashtanga-title {
  margin: 15px 0 10px;
}
.blog-page-ashtanga-title a {
  text-decoration: none;
  color: #244c59;
  font-weight: 700;
  transition: 0.3s;
  font-size: 18px;
}
.blog-page-ashtanga-title a:hover {
  color: #f38121;
}
.blog-page-ashtanga-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}
.blog-page-ashtanga-readmore {
  display: inline-flex;
  align-items: center;
  width: 150px;
  gap: 8px;
  padding: 10px 22px;
  background: #f38121;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #f38121;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.blog-page-ashtanga-readmore:hover {
  background: #244c59;
  border-color: #244c59;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgb(36 76 89 / 0.25);
}
.blog-page-ashtanga-readmore i {
  transition: transform 0.3s ease;
}
.blog-page-ashtanga-readmore:hover i {
  transform: translateX(5px);
}
.blog-ashtanga-detail-section {
  background: #f6f9fb;
}
.blog-main-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 30px 80px rgb(36 76 89 / 0.08);
}
.blog-featured-image {
  border-radius: 25px;
  margin-bottom: 35px;
  box-shadow: 0 20px 40px rgb(243 129 33 / 0.15);
  position: relative;
}
.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.blog-featured-image:hover img {
  transform: scale(1.05);
}
.blog-meta-new {
  display: flex;
  gap: 30px;
  font-size: 14px;
  margin-bottom: 25px;
  color: #244c59;
  font-weight: 600;
}
.blog-meta-new i {
  color: #f38121;
  margin-right: 8px;
}
.blog-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(to right, #244c59, #f38121);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
}
.blog-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 35px;
}
.blog-highlight {
  background: #fde6d4;
  padding: 35px;
  border-radius: 20px;
  border-left: 6px solid #f38121;
  margin: 40px 0;
  font-size: 18px;
  color: #244c59;
  font-weight: 500;
  font-style: italic;
}
.blog-section {
  margin-top: 50px;
}
.blog-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: #244c59;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.blog-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: #f38121;
  border-radius: 2px;
}
.blog-section h3 {
  color: #244c59;
  font-weight: 700;
  margin: 12px 0 15px;
  font-size: 26px;
}
.blog-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}
.blog-section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}
.blog-section .did-you-know {
  background: #fffaf0;
  padding: 15px 20px;
  border-left: 5px solid #f38121;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}
.blog-card-step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 30px 30px 30px 85px;
  margin-bottom: 25px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
.blog-card-step:hover {
  box-shadow: 0 15px 40px rgb(36 76 89 / 0.1);
  border-color: #f38121;
}
.step-number {
  position: absolute;
  left: 20px;
  top: 25px;
  font-size: 35px;
  font-weight: 800;
  color: #fde6d4;
  -webkit-text-stroke: 1px #f38121;
}
.blog-card-step h3 {
  color: #244c59;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 22px;
}
.blog-card-step strong {
  color: #f38121;
}
.faq-premium .accordion-item {
  border: 1px solid #eee;
  border-radius: 18px;
  margin-bottom: 15px;
  overflow: hidden;
}
.faq-premium .accordion-button {
  font-weight: 700;
  color: #244c59;
  padding: 22px;
  border-left: 5px solid #fff0;
}
.faq-premium .accordion-button:not(.collapsed) {
  background: #fde6d4;
  color: #244c59;
  border-left: 5px solid #f38121;
}
.faq-premium .accordion-body {
  padding: 25px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  background: #fff;
}
.sidebar-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgb(36 76 89 / 0.08);
  margin-bottom: 30px;
}
.sidebar-title {
  font-weight: 700;
  color: #244c59;
  border-left: 5px solid #f38121;
  padding-left: 12px;
  margin-bottom: 25px;
}
.blog-course-card {
  display: block;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #244c59;
  transition: 0.3s ease;
  border: 1px solid #e5e5e5;
}
.blog-course-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.course-title-blog {
  padding: 10px 10px;
  font-weight: 600;
  font-size: 20px;
  text-align: left;
  border-top: 1px solid #eee;
  color: #244c59;
}
.blog-course-card:hover {
  border-color: #f38121;
  color: #f38121;
}
.recent-item {
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.06);
  transition: 0.3s ease;
  color: #244c59;
}
.recent-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.recent-title {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
}
.recent-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
  color: #f38121;
}
.gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .blog-main-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .blog-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .blog-meta-new {
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .blog-intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .blog-section {
    margin-top: 30px;
  }

  .blog-section h2 {
    font-size: 22px;
    padding-bottom: 10px;
    margin-bottom: 18px;
  }

  .blog-section h3 {
    font-size: 20px;
  }

  .blog-section p {
    font-size: 15px;
    line-height: 1.7;
  }

  .blog-section ul {
    margin-left: 18px;
  }

  /* STEP CARDS FIX */
  .blog-card-step {
    padding: 18px 16px 18px 55px;
    border-radius: 14px;
    margin-bottom: 18px;
  }

  .step-number {
    left: 15px;
    top: 18px;
    font-size: 28px;
  }

  .blog-card-step h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  /* Highlight box */
  .blog-highlight {
    padding: 18px;
    font-size: 15px;
    margin: 25px 0;
  }

  /* FAQ */
  .faq-premium .accordion-button {
    padding: 16px;
    font-size: 15px;
  }

  .faq-premium .accordion-body {
    padding: 16px;
    font-size: 15px;
  }

  /* Sidebar */
  .sidebar-box {
    padding: 20px;
    border-radius: 14px;
  }
  .blog-section ul {
    list-style-position: inside;
    padding-left: 0;
    margin-left: 0;
  }
}

.ashtanga-gallery-section {
  padding: 80px 0;
  background: #f7f7f7;
  overflow: hidden;
}

/* FILTER TABS */

.ashtanga-gallery-section .gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 55px;
}

.ashtanga-gallery-section .gallery-tab-btn {
  border: 0;
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 14px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ashtanga-gallery-section .gallery-tab-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-color), #ff9d4d);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.ashtanga-gallery-section .gallery-tab-btn span {
  position: relative;
  z-index: 2;
}

.ashtanga-gallery-section .gallery-tab-btn.active::before,
.ashtanga-gallery-section .gallery-tab-btn:hover::before {
  opacity: 1;
}

.ashtanga-gallery-section .gallery-tab-btn:hover {
  transform: translateY(-4px);
}

/* IMAGE CARD */

.ashtanga-gallery-section .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 100%;
  cursor: pointer;
  transition: 0.5s ease;
}

.ashtanga-gallery-section .gallery-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.7s ease;
  display: block;
}

/* OVERLAY */

.ashtanga-gallery-section .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
  opacity: 0;
  transition: 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.ashtanga-gallery-section .gallery-content {
  transform: translateY(30px);
  transition: 0.5s ease;
}

.ashtanga-gallery-section .gallery-content h4 {
  color: var(--white-color);
  margin-bottom: 8px;
}

.ashtanga-gallery-section .gallery-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* HOVER */

.ashtanga-gallery-section .gallery-card:hover img {
  transform: scale(1.08);
}

.ashtanga-gallery-section .gallery-card:hover {
  transform: translateY(-10px);
}

.ashtanga-gallery-section .gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.ashtanga-gallery-section .gallery-card:hover .gallery-content {
  transform: translateY(0);
}

/* BADGE */

.ashtanga-gallery-section .gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--white-color);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* MOBILE */

@media (max-width: 991px) {
  .ashtanga-gallery-section .gallery-card img {
    height: 420px;
  }

  .ashtanga-gallery-section .gallery-tab-btn {
    padding: 15px 22px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .ashtanga-gallery-section {
    padding: 45px 0;
  }

  .ashtanga-gallery-section .gallery-tabs {
    gap: 10px;
    margin-bottom: 35px;
  }

  .ashtanga-gallery-section .gallery-tab-btn {
    width: calc(50% - 5px);
    padding: 14px 12px;
    font-size: 14px;
    border-radius: 12px;
  }

  .ashtanga-gallery-section .gallery-card {
    border-radius: 22px;
  }

  .ashtanga-gallery-section .gallery-card img {
    height: 300px;
  }

  .ashtanga-gallery-section .gallery-overlay {
    padding: 20px;
  }
}

.gallery-item {
  transition: all 0.4s ease;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.modern-sattvic-food {
  padding: 90px 0;
  background: #f7f7f7;
  overflow: hidden;
}

/* TOP CONTENT */

.modern-sattvic-food .food-top-wrapper {
  background: var(--white-color);
  border-radius: 35px;
  padding: 50px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.modern-sattvic-food .food-top-wrapper::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(245, 134, 52, 0.08);
  border-radius: 50%;
  top: -140px;
  right: -140px;
}

.modern-sattvic-food .food-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  padding: 12px 22px;
  border-radius: 50px;
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 600;
}

/* POINT CARDS */

.modern-sattvic-food .food-points-row {
  margin-top: 40px;
}

.modern-sattvic-food .food-point-card {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.modern-sattvic-food .food-point-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 18px 40px rgba(245, 134, 52, 0.12);
}

.modern-sattvic-food .food-point-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

/* IMAGE GRID */

.modern-sattvic-food .food-gallery-grid {
  height: 850px;
}

.modern-sattvic-food .food-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 100%;
  cursor: pointer;
}

.modern-sattvic-food .food-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
  display: block;
}

.modern-sattvic-food .food-gallery-card:hover img {
  transform: scale(1.08);
}

/* FIXED HEIGHTS */

.modern-sattvic-food .gallery-big {
  height: 100%;
}

.modern-sattvic-food .gallery-half {
  height: calc(50% - 12px);
}

.modern-sattvic-food .gallery-small {
  height: calc(33.33% - 10px);
}

/* OVERLAY */

.modern-sattvic-food .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
  opacity: 0;
  transition: 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.modern-sattvic-food .food-gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.modern-sattvic-food .gallery-overlay span {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.modern-sattvic-food .food-gallery-card:hover .gallery-overlay span {
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 991px) {
  .modern-sattvic-food .food-top-wrapper {
    padding: 35px;
  }

  .modern-sattvic-food .food-gallery-grid {
    height: auto;
  }

  .modern-sattvic-food .gallery-big,
  .modern-sattvic-food .gallery-half,
  .modern-sattvic-food .gallery-small {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .modern-sattvic-food {
    padding: 45px 0;
  }

  .modern-sattvic-food .food-top-wrapper {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .modern-sattvic-food .food-point-card {
    padding: 22px;
    border-radius: 20px;
  }

  .modern-sattvic-food .food-point-icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
    border-radius: 16px;
  }

  .modern-sattvic-food .food-gallery-card {
    border-radius: 20px;
  }

  .modern-sattvic-food .gallery-big,
  .modern-sattvic-food .gallery-half,
  .modern-sattvic-food .gallery-small {
    height: 240px;
  }
}

.ashtanga-accommodation-section {
  padding: 90px 0;
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
}

/* TOP */

.ashtanga-accommodation-section .accommodation-top-content {
  text-align: center;
  margin-bottom: 60px;
}

.ashtanga-accommodation-section .highlight-text {
  color: var(--primary-color);
}

/* CONTENT BOX */

.ashtanga-accommodation-section .accommodation-content-box {
  background: var(--white-color);
  border-radius: 35px;
  padding: 50px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  margin-bottom: 45px;
  position: relative;
  overflow: hidden;
}

.ashtanga-accommodation-section .accommodation-content-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(245, 134, 52, 0.08);
  top: -120px;
  right: -120px;
}

.ashtanga-accommodation-section .accommodation-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

/* FEATURES */

.ashtanga-accommodation-section .accommodation-features {
  margin-top: 40px;
}

.ashtanga-accommodation-section .feature-card {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  transition: 0.4s ease;
}

.ashtanga-accommodation-section .feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 18px 40px rgba(245, 134, 52, 0.12);
}

.ashtanga-accommodation-section .feature-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

/* =========================================
    GALLERY GRID
    ========================================= */

.ashtanga-accommodation-section .accommodation-gallery-grid {
  height: 850px;
}

.ashtanga-accommodation-section .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 100%;
  cursor: pointer;
}

.ashtanga-accommodation-section .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
  display: block;
}

.ashtanga-accommodation-section .gallery-card:hover img {
  transform: scale(1.08);
}

/* GRID HEIGHTS */

.ashtanga-accommodation-section .gallery-big {
  height: 100%;
}

.ashtanga-accommodation-section .gallery-half {
  height: calc(50% - 12px);
}

.ashtanga-accommodation-section .gallery-small {
  height: calc(33.33% - 10px);
}

/* OVERLAY */

.ashtanga-accommodation-section .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
  opacity: 0;
  transition: 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.ashtanga-accommodation-section .gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.ashtanga-accommodation-section .gallery-overlay span {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.ashtanga-accommodation-section .gallery-card:hover .gallery-overlay span {
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 991px) {
  .ashtanga-accommodation-section .accommodation-content-box {
    padding: 35px;
  }

  .ashtanga-accommodation-section .accommodation-gallery-grid {
    height: auto;
  }

  .ashtanga-accommodation-section .gallery-big,
  .ashtanga-accommodation-section .gallery-half,
  .ashtanga-accommodation-section .gallery-small {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .ashtanga-accommodation-section {
    padding: 45px 0;
  }

  .ashtanga-accommodation-section .accommodation-top-content {
    margin-bottom: 35px;
  }

  .ashtanga-accommodation-section .accommodation-content-box {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .ashtanga-accommodation-section .feature-card {
    padding: 22px;
    border-radius: 20px;
  }

  .ashtanga-accommodation-section .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
    border-radius: 16px;
  }

  .ashtanga-accommodation-section .gallery-card {
    border-radius: 20px;
  }

  .ashtanga-accommodation-section .gallery-big,
  .ashtanga-accommodation-section .gallery-half,
  .ashtanga-accommodation-section .gallery-small {
    height: 240px;
  }
}

.ashtanga-payment-policy {
  padding: 90px 0;
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
}

/* BG SHAPES */

.ashtanga-payment-policy::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(245, 134, 52, 0.08);
  top: -150px;
  right: -120px;
}

.ashtanga-payment-policy::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(36, 70, 85, 0.06);
  bottom: -120px;
  left: -100px;
}

/* TOP */

.ashtanga-payment-policy .payment-top {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.ashtanga-payment-policy .payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(36, 70, 85, 0.1);
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.ashtanga-payment-policy .highlight-text {
  color: var(--primary-color);
}

/* MAIN CARD */

.ashtanga-payment-policy .payment-main-card {
  background: var(--white-color);
  border-radius: 40px;
  padding: 55px;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

/* CONTENT CARD */

.ashtanga-payment-policy .payment-info-card {
  background: #fcfcfc;
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 35px;
  height: 100%;
  transition: 0.4s ease;
}

.ashtanga-payment-policy .payment-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 18px 40px rgba(245, 134, 52, 0.12);
}

/* ICON */

.ashtanga-payment-policy .payment-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

/* PAYPAL BOX */

.ashtanga-payment-policy .paypal-box {
  margin-top: 45px;
  background: linear-gradient(135deg, var(--secondary-color), #315b6d);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.ashtanga-payment-policy .paypal-box::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.ashtanga-payment-policy .paypal-content {
  position: relative;
  z-index: 2;
}

.ashtanga-payment-policy .paypal-content h3,
.ashtanga-payment-policy .paypal-content p {
  color: var(--white-color);
}

.ashtanga-payment-policy .paypal-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  margin-top: 18px;
  transition: 0.4s ease;
}

.ashtanga-payment-policy .paypal-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
  transform: translateY(-4px);
}

/* MOBILE */

@media (max-width: 991px) {
  .ashtanga-payment-policy .payment-main-card {
    padding: 35px;
  }

  .ashtanga-payment-policy .payment-info-card {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .ashtanga-payment-policy {
    padding: 45px 0;
  }

  .ashtanga-payment-policy .payment-top {
    margin-bottom: 35px;
  }

  .ashtanga-payment-policy .payment-main-card {
    padding: 22px;
    border-radius: 28px;
  }

  .ashtanga-payment-policy .payment-info-card {
    padding: 22px;
    border-radius: 22px;
  }

  .ashtanga-payment-policy .payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 22px;
  }

  .ashtanga-payment-policy .paypal-box {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .ashtanga-payment-policy .paypal-btn {
    width: 100%;
    justify-content: center;
  }
}

.ashtanga-bank-transfer {
  padding: 20px 0;
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
}

/* BG SHAPES */

.ashtanga-bank-transfer::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(245, 134, 52, 0.08);
  top: -140px;
  right: -120px;
}

.ashtanga-bank-transfer::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(36, 70, 85, 0.06);
  bottom: -120px;
  left: -120px;
}

/* MAIN CARD */

.ashtanga-bank-transfer .bank-transfer-wrapper {
  background: var(--white-color);
  border-radius: 40px;
  padding: 55px;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

/* TOP */

.ashtanga-bank-transfer .bank-top {
  text-align: center;
  margin-bottom: 55px;
}

.ashtanga-bank-transfer .bank-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ashtanga-bank-transfer .highlight-text {
  color: var(--primary-color);
}

/* INFO CARD */

.ashtanga-bank-transfer .bank-info-card {
  background: #fcfcfc;
  border: 1px solid #ececec;
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  transition: 0.4s ease;
}

.ashtanga-bank-transfer .bank-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 18px 40px rgba(245, 134, 52, 0.12);
}

/* ICON */

.ashtanga-bank-transfer .bank-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

/* DETAILS */

.ashtanga-bank-transfer .bank-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ashtanga-bank-transfer .bank-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 26px;
  font-size: 20px;
  line-height: 1.5;
  color: #303030;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.ashtanga-bank-transfer .bank-details-list li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.ashtanga-bank-transfer .bank-details-list i {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 8px;
}

.ashtanga-bank-transfer .bank-details-list strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* NOTE */

.ashtanga-bank-transfer .bank-note {
  margin-top: 45px;
  background: linear-gradient(135deg, var(--secondary-color), #315b6d);
  border-radius: 28px;
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.ashtanga-bank-transfer .bank-note::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -100px;
}

.ashtanga-bank-transfer .bank-note-content {
  position: relative;
  z-index: 2;
}

.ashtanga-bank-transfer .bank-note-content h4,
.ashtanga-bank-transfer .bank-note-content p {
  color: var(--white-color);
}

/* MOBILE */

@media (max-width: 991px) {
  .ashtanga-bank-transfer .bank-transfer-wrapper {
    padding: 35px;
  }

  .ashtanga-bank-transfer .bank-info-card {
    padding: 30px;
  }

  .ashtanga-bank-transfer .bank-details-list li {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .ashtanga-bank-transfer {
    padding: 45px 0;
  }

  .ashtanga-bank-transfer .bank-transfer-wrapper {
    padding: 22px;
    border-radius: 28px;
  }

  .ashtanga-bank-transfer .bank-top {
    margin-bottom: 35px;
  }

  .ashtanga-bank-transfer .bank-info-card {
    padding: 22px;
    border-radius: 22px;
  }

  .ashtanga-bank-transfer .bank-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 22px;
  }

  .ashtanga-bank-transfer .bank-details-list li {
    font-size: 16px;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 15px;
  }

  .ashtanga-bank-transfer .bank-note {
    padding: 25px 22px;
    border-radius: 22px;
  }
}

.ashtanga-payment-info {
  padding: 90px 0;
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
}

/* BG SHAPES */

.ashtanga-payment-info::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(245, 134, 52, 0.08);
  top: -140px;
  right: -120px;
}

.ashtanga-payment-info::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(36, 70, 85, 0.06);
  bottom: -120px;
  left: -120px;
}

/* MAIN WRAPPER */

.ashtanga-payment-info .payment-info-wrapper {
  background: var(--white-color);
  border-radius: 40px;
  padding: 55px;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

/* SECTION CARD */

.ashtanga-payment-info .payment-card {
  background: #fcfcfc;
  border: 1px solid #ececec;
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  transition: 0.4s ease;
}

.ashtanga-payment-info .payment-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 18px 40px rgba(245, 134, 52, 0.12);
}

/* ICON */

.ashtanga-payment-info .payment-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

/* LIST */

.ashtanga-payment-info .payment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ashtanga-payment-info .payment-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  line-height: 1.7;
  color: #303030;
}

.ashtanga-payment-info .payment-list li i {
  color: var(--primary-color);
  margin-top: 7px;
  font-size: 14px;
}

.ashtanga-payment-info .payment-list strong {
  color: var(--primary-color);
}

/* QR BOX */

.ashtanga-payment-info .qr-box {
  background: linear-gradient(135deg, var(--secondary-color), #315b6d);
  border-radius: 35px;
  padding: 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ashtanga-payment-info .qr-box::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.ashtanga-payment-info .qr-box > * {
  position: relative;
  z-index: 2;
}

.ashtanga-payment-info .qr-box h3,
.ashtanga-payment-info .qr-box p {
  color: var(--white-color);
}

.ashtanga-payment-info .qr-image {
  background: var(--white-color);
  padding: 18px;
  border-radius: 25px;
  display: inline-block;
  margin-top: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ashtanga-payment-info .qr-image img {
  width: 240px;
  border-radius: 15px;
}

/* REFUND BOX */

.ashtanga-payment-info .refund-box {
  margin-top: 45px;
  background: rgba(245, 134, 52, 0.08);
  border-left: 5px solid var(--primary-color);
  border-radius: 28px;
  padding: 35px;
}

/* MOBILE */

@media (max-width: 991px) {
  .ashtanga-payment-info .payment-info-wrapper {
    padding: 35px;
  }

  .ashtanga-payment-info .payment-card {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .ashtanga-payment-info {
    padding: 45px 0;
  }

  .ashtanga-payment-info .payment-info-wrapper {
    padding: 22px;
    border-radius: 28px;
  }

  .ashtanga-payment-info .payment-card {
    padding: 22px;
    border-radius: 22px;
  }

  .ashtanga-payment-info .payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 22px;
  }

  .ashtanga-payment-info .qr-box {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .ashtanga-payment-info .qr-image img {
    width: 100%;
    max-width: 220px;
  }

  .ashtanga-payment-info .refund-box {
    padding: 22px;
    border-radius: 22px;
  }
}

.modern-contact-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f7f4fb 100%);
  overflow: hidden;
  position: relative;
}

/* TOP */

.modern-contact-section .contact-top {
  text-align: center;
  margin-bottom: 60px;
}

.modern-contact-section .contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 134, 52, 0.12);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.modern-contact-section .highlight-text {
  color: var(--primary-color);
}

/* INFO CARD */

.modern-contact-section .contact-info-card {
  background: var(--white-color);
  border-radius: 28px;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid #ececec;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.modern-contact-section .contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(245, 134, 52, 0.12);
  border-color: rgba(245, 134, 52, 0.2);
}

.modern-contact-section .contact-info-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px dashed rgba(245, 134, 52, 0.25);
  border-radius: 50%;
  right: -60px;
  bottom: -60px;
}

.modern-contact-section .info-flex {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.modern-contact-section .info-icon {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-color), #ff9f53);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(245, 134, 52, 0.3);
}

.modern-contact-section .contact-info-card h4 {
  margin-bottom: 12px;
}

/* FORM WRAPPER */

.modern-contact-section .contact-form-wrapper {
  margin-top: 70px;
  background: var(--white-color);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

/* LEFT */

.modern-contact-section .contact-left {
  background: linear-gradient(135deg, #244655, #3a7c95);
  padding: 60px 45px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.modern-contact-section .contact-left::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -120px;
  left: -100px;
}

.modern-contact-section .contact-left > * {
  position: relative;
  z-index: 2;
}

.modern-contact-section .left-icon {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 28px;
}

.modern-contact-section .contact-left h2,
.modern-contact-section .contact-left p,
.modern-contact-section .contact-left li {
  color: var(--white-color);
}

.modern-contact-section .contact-features {
  list-style: none;
  padding: 0;
  margin-top: 35px;
}

.modern-contact-section .contact-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 17px;
}

.modern-contact-section .contact-features i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT FORM */

.modern-contact-section .contact-right {
  padding: 55px;
}

.modern-contact-section .form-group {
  margin-bottom: 24px;
}

.modern-contact-section .form-control {
  height: 58px;
  border-radius: 16px;
  border: 1px solid #dddddd;
  padding: 15px 18px;
  box-shadow: none;
}

.modern-contact-section textarea.form-control {
  height: 170px;
  resize: none;
  padding-top: 18px;
}

.modern-contact-section .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(245, 134, 52, 0.12);
}

/* BUTTON */

.modern-contact-section .submit-btn {
  border: 0;
  background: linear-gradient(135deg, var(--primary-color), #ff9f53);
  color: var(--white-color);
  padding: 17px 40px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.modern-contact-section .submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(245, 134, 52, 0.3);
}

/* MOBILE */

@media (max-width: 991px) {
  .modern-contact-section .contact-right {
    padding: 35px;
  }

  .modern-contact-section .contact-left {
    padding: 40px 35px;
  }
}

@media (max-width: 767px) {
  .modern-contact-section {
    padding: 45px 0;
  }

  .modern-contact-section .contact-top {
    margin-bottom: 35px;
  }

  .modern-contact-section .info-flex {
    flex-direction: column;
  }

  .modern-contact-section .contact-form-wrapper {
    border-radius: 28px;
  }

  .modern-contact-section .contact-left,
  .modern-contact-section .contact-right {
    padding: 25px 20px;
  }

  .modern-contact-section .info-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    font-size: 24px;
  }

  .modern-contact-section .left-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    font-size: 28px;
  }

  .modern-contact-section .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
REGISTRATION FORM
========================================= */

.course-registration-form-section {
  padding: 80px 0;
  background: #f5f5f5;
}

/* WRAPPER */

.crf-wrapper {
  max-width: 850px;
  margin: auto;

  background: #fff;

  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* TOP */

.crf-top {
  padding: 38px 30px;

  text-align: center;

  background: linear-gradient(135deg, #004c56, #f4841a);
}

/* TAG */

.crf-tag {
  display: inline-block;

  padding: 7px 16px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.14);

  color: #fff;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 14px;
}

/* TITLE */

.crf-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;

  text-transform: uppercase;

  line-height: 1.2;

  margin-bottom: 6px;
}

/* SUBTITLE */

.crf-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* FORM */

.crf-form {
  padding: 35px;
}

/* FIELD */

.crf-field label {
  display: block;

  font-size: 14px;
  font-weight: 600;

  color: #004c56;

  margin-bottom: 8px;
}

/* INPUT */

.crf-field input,
.crf-field select,
.crf-field textarea {
  width: 100%;
  height: 54px;

  border: 1px solid rgba(0, 76, 86, 0.15);

  background: #fff;

  border-radius: 12px;

  padding: 0 16px;

  font-size: 15px;
  color: #222;

  outline: none;

  transition: 0.3s ease;
}

/* TEXTAREA */

.crf-field textarea {
  height: 130px;
  resize: none;

  padding-top: 15px;
}

/* FOCUS */

.crf-field input:focus,
.crf-field select:focus,
.crf-field textarea:focus {
  border-color: #f4841a;

  box-shadow: 0 0 0 4px rgba(244, 132, 26, 0.08);
}

/* BUTTON */

.crf-btn-box {
  padding-top: 8px;
}

.crf-btn {
  width: 100%;
  height: 58px;

  border: 0;
  border-radius: 14px;

  background: linear-gradient(135deg, #004c56, #f4841a);

  color: #fff;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s ease;
}

.crf-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 767px) {
  .course-registration-form-section {
    padding: 60px 0;
  }

  .crf-top {
    padding: 30px 20px;
  }

  .crf-title {
    font-size: 30px;
  }

  .crf-form {
    padding: 22px;
  }

  .crf-field input,
  .crf-field select,
  .crf-field textarea {
    height: 50px;

    font-size: 14px;
  }

  .crf-field textarea {
    height: 110px;
  }

  .crf-btn {
    height: 54px;
  }
}
/* =========================================
IMAGE ONLY POPUP
========================================= */

.yttc-offer-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.yttc-offer-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.yttc-offer-popup {
  position: relative;
  max-width: 620px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  animation: popupFade 0.5s ease;
}

/* Image Wrapper */
.yttc-popup-image-wrapper {
  display: block;
  line-height: 0;
}

.yttc-popup-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.4s ease;
}

.yttc-popup-image-wrapper:hover .yttc-popup-image {
  transform: scale(1.03);
}

/* Close Button */
.yttc-popup-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.yttc-popup-close-btn:hover {
  background: #f4841a;
  color: #fff;
  transform: rotate(90deg);
}

/* Animation */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .yttc-offer-popup {
    max-width: 92%;
  }
  
  .yttc-popup-close-btn {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  
  /* Continuous Pulsing Animation */
  animation: whatsappPulse 1.8s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
  /* Animation continues even on hover */
}

/* Pulsing Animation */
@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.75);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 20px;
    left: 20px;
  }
}

.top-navbar {
    background: #f58634;
    color: white;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.top-contact-item i {
    width: 20px;
    font-size: 16px;
    flex-shrink: 0;
}

.top-contact-item span,
.top-contact-item a {
    color: white;
    text-decoration: none;
}

.top-contact-item a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons a {
    color: white;
    font-size: 18px;
    margin-left: 14px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* =================== MOBILE IMPROVEMENTS =================== */
@media (max-width: 767px) {
    .top-navbar {
        font-size: 14px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .top-contact-item {
        font-size: 13.5px;
        gap: 6px;
    }

    .top-contact-item i {
        font-size: 15px;
    }

    .social-icons a {
        margin-left: 12px;
        font-size: 17px;
    }

    /* Make address shorter on mobile */
    .top-contact-item span {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


.additional-detail {
    margin-top: 22px;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.additional-detail .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 10px 15px;
    border-bottom: 1px solid #ececec;
}

.additional-detail .detail-item:last-child {
    border-bottom: none;
}

.additional-detail .detail-label {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    min-width: 90px;
}

.additional-detail .detail-value {
    font-size: 18px;
    font-weight: 500;
    color: #444;
    text-align: right;
    line-height: 1.6;
}

@media (max-width: 767px) {

    .additional-detail .detail-item {
        padding: 14px 15px;
    }

    .additional-detail .detail-label {
        font-size: 17px;
        min-width: 75px;
    }

    .additional-detail .detail-value {
        font-size: 16px;
    }
}

.course-badges .fees{
  font-size: 20px;
  color: var(--primary-color);
}
 /* ==================== 404 SECTION ==================== */
    .four-o-four-section {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3340 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .particles {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .four-o-four-container {
      text-align: center;
      z-index: 2;
      max-width: 680px;
      padding: 2rem;
    }

    /* Big 404 Text */
    .four-o-four {
      font-family: var(--heading-font);
      font-size: 19rem;
      font-weight: 900;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 5px var(--primary-color);
      text-shadow: 
        0 0 60px rgba(245, 134, 52, 0.5),
        0 0 100px rgba(245, 134, 52, 0.3);
      margin: -40px 0 -50px 0;
      letter-spacing: -25px;
      position: relative;
    }

    .four-o-four::before {
      content: "404";
      position: absolute;
      font-size: 19rem;
      opacity: 0.07;
      color: var(--white-color);
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      filter: blur(8px);
    }

    .illustration {
      font-size: 8.5rem;
      margin-bottom: 10px;
      animation: float 4s ease-in-out infinite;
      filter: drop-shadow(0 20px 30px rgba(245, 134, 52, 0.4));
    }

    .error-title {
      font-family: var(--heading-font);
      font-size: 3.8rem;
      font-weight: 800;
      margin: 15px 0 12px;
      background: linear-gradient(90deg, #ffffff, var(--primary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .error-message {
      font-size: 1.35rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 2.8rem;
      line-height: 1.65;
    }

    .home-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--primary-color), #ff9f5e);
      color: var(--black-color);
      font-weight: 700;
      padding: 18px 48px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.15rem;
      box-shadow: 0 15px 35px rgba(245, 134, 52, 0.45);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .home-btn:hover {
      transform: translateY(-8px) scale(1.05);
      box-shadow: 0 20px 45px rgba(245, 134, 52, 0.6);
    }

    /* Extra flair */
    .glow {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(245,134,52,0.15) 0%, transparent 70%);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
      animation: pulse 8s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-30px); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 0.9; }
    }

    @media (max-width: 768px) {
      .four-o-four {
        font-size: 13rem;
        letter-spacing: -12px;
        margin: -20px 0 -30px 0;
      }
      .error-title {
        font-size: 2.8rem;
      }
      .illustration {
        font-size: 6rem;
      }
    }