@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary: #f7825b;
  --primary-dark: #e46a43;
  --outline: #f7a17c;
  --font-family: "Inter", sans-serif;
}

@font-face {
  font-family: 'Basics Serif Free';
  src: url('./assets/font/basics_serif/Basics\ Serif\ -\ Free.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: var(--font-family);
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
  /* overflow: hidden; */
}

.video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.wrapper {
  margin-left: 6%;
  margin-right: 6%;
}

.wrapper-1 {
  margin-left: 6%;
}

.text-overlay-sec {
  position: relative;
  z-index: 2;
  height: 100%;
}

/* NAVBAR */
.custom-nav {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.custom-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.custom-nav-logo {
  height: 60px;
}

.custom-nav-logo img {
  height: 100%;
}

.custom-nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  transition: color 0.3s;
}

.custom-nav-menu a:hover {
  color: var(--primary);
}

/* HERO TEXT CENTERED */
.hero-content {
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-family: "Basics Serif Free", serif;
  font-size: 46px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 1%;
}

.hero-content p {
  font-size: 14px;
  line-height: 2;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 3%;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 2%;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid transparent;
  font-family: "Inter", sans-serif;
  width: 200px;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible,
.btn-check:focus+.btn-primary {
  background-color: #7b3450 !important;
  border-color: #7b3450 !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible,
.btn-check:focus+.btn-primary {
  background-color: #c27390 !important;
  border-color: #c27390 !important;
}


.btn-outline {
  border: 1px solid #7b3450;
  color: #fff;
  background: rgba(123, 52, 80, 0.2); /* faded look */
  transition: all 0.3s ease;
  backdrop-filter: blur(0px); /* no blur normally */
}

.btn-outline:hover {
  background: #7b3450; /* solid color on hover */
  color: #fff;
  border-color: #7b3450;
}


/* VIDEO BACKGROUND */
.video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HAMBURGER BUTTON - Hidden on desktop */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  z-index: 1001;
}

.hamburger-icon {
  display: block;
  width: 45px;
  height: 2px;
  background-color: white;
  position: relative;
  transition: background-color 0.3s;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 2px;
  background-color: white;
  left: 0;
  transition: transform 0.3s;
}

.hamburger-icon::before {
  top: -17px;
}

.hamburger-icon::after {
  top: 17px;
}

/* Hamburger to close animation */
.hamburger-btn.active .hamburger-icon {
  background-color: transparent;
}

.hamburger-btn.active .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger-btn.active .hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Very Small Phones: 200px - 320px */
@media (min-width: 200px) and (max-width: 320px) {
  .hero {
    height: 100%;
    /* min-height: 100vh; */
  }

  .wrapper {
    margin-left: 3%;
    margin-right: 3%;
  }

  .hamburger-btn {
    display: block;
    padding: 15px;
  }

  .hamburger-icon {
    width: 20px;
    height: 2px;
  }

  .hamburger-icon::before,
  .hamburger-icon::after {
    width: 20px;
    height: 2px;
  }

  .hamburger-icon::before {
    top: -10px;
  }

  .hamburger-icon::after {
    top: 10px;
  }

  .custom-nav-logo {
    height: 40px;
  }

  .custom-nav-logo img {
    max-width: 120px;
  }

  /* Mobile Menu */
  .custom-nav-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: top 0.4s ease-in-out;
    z-index: 1000;
    margin: 0;
    overflow-y: auto;
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  .custom-nav-menu.active {
    top: 0;
  }

  .custom-nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    opacity: 0;
    /* transform: translateY(-15px); */
    animation: slideDownFade 0.4s ease forwards;
  }

  .custom-nav-menu.active li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .custom-nav-menu.active li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .custom-nav-menu.active li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .custom-nav-menu.active li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .custom-nav-menu.active li:nth-child(5) {
    animation-delay: 0.5s;
  }

  .custom-nav-menu a {
    font-size: 1rem;
    padding: 12px;
    display: block;
    width: 100%;
  }

  /* Hero Content */
  .hero-content {
    width: 95%;
    height: 85vh;
    padding-bottom: 10%;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 5%;
  }

  .hero-content p {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 200px;
    padding: 12px;
    font-size: 0.9rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  @keyframes slideDownFade {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Small Phones to Tablets: 321px - 767px */
@media (min-width: 321px) and (max-width: 767px) {
  .hero {
    height: 100%;
    /* min-height: 100vh; */
  }

  .wrapper {
    margin-left: 4%;
    margin-right: 4%;
  }

  .hamburger-btn {
    display: block;
    padding: 18px;
  }

  .hamburger-icon {
    width: 20px;
    height: 2px;
  }

  .hamburger-icon::before,
  .hamburger-icon::after {
    width: 20px;
    height: 2px;
  }

  .hamburger-icon::before {
    top: -12px;
  }

  .hamburger-icon::after {
    top: 12px;
  }

  .custom-nav-logo {
    width: 80px;
    height: 70px;
  }

  .custom-nav-logo img {
    width: 100%;
    height: 100%;
  }

  /* Mobile Menu */
.custom-nav-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.97);
    display: grid !important;
    place-items: center; /* Centers both horizontally and vertically */
    grid-template-rows: repeat(5, 10%); /* Let content determine height */
    /* gap: 0.4rem; */
    transition: top 0.4s ease-in-out;
    z-index: 1000;
    padding: 20px;
    margin-top: auto;
  }

  .custom-nav-menu.active {
    top: 0;
  }

    .custom-nav-menu li {
    list-style: none;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    margin-bottom: auto;
    animation: slideDownFade 0.4s ease forwards;
  }

  .custom-nav-menu a {
    font-size: 1.3rem;
    padding: 12px 0;
    display: block;
    color: #fff;
    text-decoration: none;
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /* Safari specific fix for centering */
 @supports (-webkit-touch-callout: none) {
    .custom-nav-menu {
      display: -webkit-flex;
      -webkit-flex-direction: column;
      -webkit-align-items: center;
      -webkit-justify-content: center;
    }
  }

  .custom-nav-menu.active {
    top: 0;
    overflow: hidden;
  }

  .custom-nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    opacity: 0;
    /* transform: translateY(-20px); */
    animation: slideDownFade 0.4s ease forwards;
  }

  .custom-nav-menu.active li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .custom-nav-menu.active li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .custom-nav-menu.active li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .custom-nav-menu.active li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .custom-nav-menu.active li:nth-child(5) {
    animation-delay: 0.5s;
  }

  .custom-nav-menu a {
    font-size: 1.2rem;
    padding: 15px;
    display: block;
    width: 100%;
  }

  /* Hero Content */
  .hero-content {
    width: 90%;
    height: 80vh;
    padding-bottom: 15%;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 4%;
  }

  .hero-content p {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    padding: 14px;
    font-size: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  @keyframes slideDownFade {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Tablets to Small Laptops: 768px - 1200px */
@media (min-width: 768px) and (max-width: 1200px) {
  .hero {
    height: 100vh;
  }

  .wrapper {
    margin-left: 5%;
    margin-right: 5%;
  }

  .hamburger-btn {
    display: none;
    /* Hide hamburger, show regular menu */
  }

  .custom-nav-logo {
    height: 55px;
  }

  .custom-nav-menu {
    gap: 24px;
  }

  .custom-nav-menu a {
    font-size: 14px;
  }

  /* Hero Content */
  .hero-content {
    width: 85%;
  }

  .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 2%;
  }

  .hero-content p {
    width: 75%;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 4%;
  }

  .hero-buttons {
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }

  .btn {
    width: 220px;
    padding: 16px;
    font-size: 1.1rem;
  }
}

/* Medium Laptops: 1201px - 1440px */
@media (min-width: 1201px) and (max-width: 1440px) {
  .hero {
    height: 100vh;
  }

  .wrapper {
    margin-left: 6%;
    margin-right: 6%;
  }

  .hamburger-btn {
    display: none;
  }

  .custom-nav-logo {
    height: 60px;
  }

  .custom-nav-menu {
    gap: 28px;
  }

  .custom-nav-menu a {
    font-size: 15px;
  }

  /* Hero Content */
  .hero-content {
    width: 80%;
  }

  .hero-content h1 {
    font-size: 40px;
    margin-bottom: 1.5%;
  }

  .hero-content p {
    width: 70%;
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 3.5%;
  }

  .hero-buttons {
    gap: 1.8rem;
    justify-content: center;
    align-items: center;
  }

  .btn {
    width: 190px;
    padding: 10px 22px;
    font-size: 1rem;
  }
}

/* Large Laptops: 1441px - 1640px */
@media (min-width: 1441px) and (max-width: 1640px) {
  .hero {
    height: 100vh;
  }

  .wrapper {
    margin-left: 8%;
    margin-right: 8%;
  }

  .hamburger-btn {
    display: none;
  }

  .custom-nav-logo {
    height: 65px;
  }

  .custom-nav-menu {
    gap: 32px;
  }

  .custom-nav-menu a {
    font-size: 16px;
  }

  /* Hero Content */
  .hero-content {
    width: 75%;
  }

  .hero-content h1 {
    font-size: 50px;
    margin-bottom: 1.2%;
  }

  .hero-content p {
    width: 65%;
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 3%;
  }

  .hero-buttons {
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }

  .btn {
    width: 240px;
    padding: 12px 22px;
    font-size: 1.3rem;
  }
}

/* Desktop Monitors: 1641px - 1920px */
@media (min-width: 1641px) and (max-width: 1920px) {
  .hero {
    height: 100vh;
  }

  .wrapper {
    margin-left: 10%;
    margin-right: 10%;
  }

  .hamburger-btn {
    display: none;
  }

  .custom-nav-logo {
    height: 70px;
  }

  .custom-nav-menu {
    gap: 36px;
  }

  .custom-nav-menu a {
    font-size: 17px;
  }

  /* Hero Content */
  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1%;
  }

  .hero-content p {
    width: 60%;
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 2.5%;
  }

  .hero-buttons {
    gap: 2.2rem;
    justify-content: center;
    align-items: center;
  }

  .btn {
    width: 250px;
    padding: 8px 35px;
    font-size: 1.4rem;
  }
}

/* Large Monitors: 1921px - 2560px */
@media (min-width: 1921px) and (max-width: 2560px) {
  .hero {
    height: 100vh;
  }

  .wrapper {
    margin-left: 12%;
    margin-right: 12%;
  }

  .hamburger-btn {
    display: none;
  }

  .custom-nav-logo {
    height: 80px;
  }

  .custom-nav-menu {
    gap: 40px;
  }

  .custom-nav-menu a {
    font-size: 18px;
  }

  /* Hero Content */
  .hero-content {
    width: 65%;
  }

  .hero-content h1 {
    font-size: 5.2rem;
    margin-bottom: 0.8%;
  }

  .hero-content p {
    width: 55%;
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 2%;
  }

  .hero-buttons {
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
  }

  .btn {
    width: 260px;
    padding: 7px 35px;
    font-size: 1.5rem;
  }
}

/* Extra Large Monitors: 2561px and above */
@media (min-width: 2561px) {
  .hero {
    height: 100vh;
  }

  .wrapper {
    margin-left: 15%;
    margin-right: 15%;
  }

  .hamburger-btn {
    display: none;
  }

  .custom-nav-logo {
    height: 90px;
  }

  .custom-nav-menu {
    gap: 45px;
  }

  .custom-nav-menu a {
    font-size: 20px;
  }

  /* Hero Content */
  .hero-content {
    width: 60%;
  }

  .hero-content h1 {
    font-size: 6rem;
    margin-bottom: 0.5%;
  }

  .hero-content p {
    width: 50%;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 1.5%;
  }

  .hero-buttons {
    gap: 3rem;
    justify-content: center;
    align-items: center;
  }

  .btn {
    width: 280px;
    padding: 6px 35px;
    font-size: 1.6rem;
  }
}

/* Desktop menu visibility for all desktop sizes */
@media (min-width: 768px) {
  .custom-nav-menu {
    display: flex !important;
    position: static;
    height: auto;
    flex-direction: row;
    background-color: transparent;
    padding: 0;
    gap: 32px;
  }

  .custom-nav-menu li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    border-bottom: none !important;
    padding: 0 !important;
  }

  .custom-nav-menu a {
    padding: 0 !important;
    font-size: inherit !important;
    display: inline !important;
  }

  .custom-nav-menu a:hover {
    padding-left: 0 !important;
  }
}

/* ==================== TRANSFORM SECTION ==================== */
.transform-section {
  padding: 90px 0;
  background: url('./assets/images/printed-bg.png') center center / cover no-repeat;
}

.section-title {
  width: 70%;
  font-family: "Basics Serif Free", serif;
  margin-bottom: 6%;
  font-size: 40px;
  line-height: 1.3;
  color: #1f1510;
}

/* Card base styling */
.transform-card {
  padding: 40px 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  font-family: "Inter", sans-serif;
  height: 100%;
  background: #7b3450;
  transition: background 0.3s ease;
  cursor: pointer;
}

.transform-card:hover {
  background: #c27390;
}
.transform-card:hover .card-paragraph {
  color: whitesmoke;
}
.card-icon {
  width: 30%;
  height: 30%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.card-icon .meditation-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}

.transform-card .card-heading {
  font-family: "Basics Serif Free", serif;
  font-size: 22px;
  margin-bottom: 6%;
  margin-top: 5%;
  font-weight: 400;
  color: #FCF8F5;
}

.transform-card .card-paragraph {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.2px;
  color: #FCF8F5;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 200;
  margin-bottom: 0 !important;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  padding: 90px 0;
  background: url('./assets/images/Mask group.png') center center / cover no-repeat;
}

/* Left layout */
.benefits-left {
  gap: 32px;
}

.benefits-illustration img {
  max-height: 360px;
  width: auto;
}

/* Titles */
.benefits-title {
  font-family: "Basics Serif Free", serif;
}

.benefits-title-small {
  font-size: 24px;
  color: #1f1510;
  font-weight: 400;
}

.benefits-title-highlight {
  font-size: 48px;
  color: #DA947F;
  line-height: 1.9;
}

/* Paragraph text */
.benefits-content {
  flex: 1;
}

.benefits-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  color: #000000;
  margin-bottom: 6%;
  font-weight: 300;
}

/* Benefits list */
.benefits-list {
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 1%;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
}

.benefit-label {
  font-family: "Basics Serif Free", serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

/* Button */
.benefits-btn {
  margin-top: 20px;
  width: 250px;
  border: none;
  border-radius: 999px;
  padding: 2%;
  background: #7b3450;
  color: #fff;
  font-family: "Basics Serif Free", serif;
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
}

.benefits-btn:hover {
  background: #682842;
}

/* Right circular photo */
.benefits-photo-wrap {
  width: 100%;
  max-width: 470px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.benefits-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================== ASHRAM SECTION ==================== */
.ashram-section {
  position: relative;
  padding: 140px 0 160px;
  color: #fff;
  background-image: url('./assets/images/more_than_ashram_3.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

/* CONTENT ABOVE CLOUDS */
.ashram-section>* {
  position: relative;
  z-index: 2;
}

/* .ashram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
} */

.ashram-inner {
  position: relative;
  z-index: 2;
}

.ashram-logo {
  max-width: 200px;
  opacity: 0.7;
  margin-bottom: 24px;
}

.ashram-title {
  font-family: "Basics Serif Free", "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 40px;
  color: white;
}

.ashram-card {
  width: 60%;
  margin: 0 auto;
  padding: 30px 60px;
  background: rgba(148, 32, 81, 0.9);
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
}

.ashram-card p {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

/* ==================== MEDIA QUERIES ==================== */

/* Very Small Phones: 200px - 320px */
@media (min-width: 200px) and (max-width: 320px) {

  /* TRANSFORM SECTION */
  .transform-section {
    padding: 40px 0;
  }

  .section-title {
    width: 100%;
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
  }

  .transform-card {
    padding: 25px 20px;
    margin-bottom: 20px;
    border-radius: 15px;
  }

  .card-icon {
    width: 50%;
    height: auto;
    margin-bottom: 15px;
  }

  .transform-card .card-heading {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 10px;
  }

  .transform-card .card-paragraph {
    font-size: 12px;
    line-height: 1.6;
  }

  /* BENEFITS SECTION */
  .benefits-section {
    padding: 40px 0;
  }

  .benefits-left {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .benefits-illustration {
    display: none;
  }

  .benefits-illustration img {
    max-height: 200px;
    width: 100%;
  }

  .benefits-title-small {
    font-size: 16px;
  }

  .benefits-title-highlight {
    font-size: 24px;
    line-height: 1.4;
  }

  .benefits-text {
    font-size: 12px;
    margin-bottom: 20px;
    text-align: center;
  }

  .benefits-list {
    margin-bottom: 20px;
  }

  .benefit-item {
    margin-bottom: 15px;
    justify-content: flex-start;
    width: 70vw;
    margin: auto;
  }

  .benefit-label {
    font-size: 14px;
  }

  .benefits-btn {
    width: 230px;
    padding: 12px;
    font-size: 12px;
    margin: 0 auto;
    display: block;
  }

  .benefits-photo-wrap {
    max-width: 250px;
    margin-top: 30px;
  }

  /* ASHRAM SECTION */
  .ashram-section {
    padding: 60px 0 80px;
  }

  .ashram-logo {
    max-width: 120px;
    margin-bottom: 20px;
  }

  .ashram-title {
    font-size: 26px;
    margin-bottom: 30px;
    color: white;
  }

  .ashram-card {
    width: 90%;
    padding: 20px 25px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .ashram-card p {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Small Phones to Tablets: 321px - 767px */
@media (min-width: 321px) and (max-width: 767px) {

  /* TRANSFORM SECTION */
  .transform-section {
    padding: 50px 0;
  }

  .section-title {
    width: 100%;
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
  }

  .transform-card {
    padding: 30px 25px;
    margin-bottom: 25px;
    border-radius: 18px;
  }

  .card-icon {
    width: 40%;
    height: auto;
    margin-bottom: 20px;
  }

  .transform-card .card-heading {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 15px;
  }

  .transform-card .card-paragraph {
    font-size: 13px;
    line-height: 1.7;
  }

  /* BENEFITS SECTION */
  .benefits-section {
    padding: 50px 0;
  }

  .benefits-left {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .benefits-illustration {
    display: none;
  }

  .benefits-illustration img {
    max-height: 250px;
    width: 100%;
  }

  .benefits-title-small {
    font-size: 20px;
  }

  .benefits-title-highlight {
    font-size: 32px;
    line-height: 1.5;
  }

  .benefits-text {
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
  }

  .benefits-list {
    margin-bottom: 25px;
  }

  .benefit-item {
    margin-bottom: 20px;
    justify-content: flex-start;
    width: 60vw;
    margin: auto;
  }

  .benefit-label {
    font-size: 15px;
  }

  .benefits-btn {
    width: 280px;
    padding: 14px;
    font-size: 13px;
    margin: 0 auto;
    display: block;
  }

  .benefits-photo-wrap {
    max-width: 300px;
    margin-top: 35px;
  }

  /* ASHRAM SECTION */
  .ashram-section {
    padding: 80px 0 100px;
  }

  .ashram-logo {
    max-width: 150px;
    margin-bottom: 25px;
  }

  .ashram-title {
    font-size: 32px;
    margin-bottom: 35px;
    color: rgb(255, 255, 255);
  }

  .ashram-card {
    width: 100%;
    padding: 25px 35px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }

  .ashram-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* Tablets to Small Laptops: 768px - 1200px */
@media (min-width: 768px) and (max-width: 1200px) {

  /* TRANSFORM SECTION */
  .transform-section {
    padding: 70px 0;
  }

  .section-title {
    width: 80%;
    font-size: 36px;
    margin-bottom: 50px;
  }

  .transform-card {
    padding: 35px 30px;
  }

  .card-icon {
    width: 35%;
    margin-bottom: 25px;
  }

  .transform-card .card-heading {
    font-size: 21px;
    margin-bottom: 25px;
    margin-top: 20px;
  }

  .transform-card .card-paragraph {
    font-size: 14px;
    line-height: 1.75;
  }

  /* BENEFITS SECTION */
  .benefits-section {
    padding: 70px 0;
  }

  .benefits-left {
    gap: 28px;
  }

  .benefits-illustration {
    display: none;
  }

  .benefits-illustration img {
    max-height: 320px;
  }

  .benefits-title-small {
    font-size: 22px;
  }

  .benefits-title-highlight {
    font-size: 42px;
    line-height: 1.8;
  }

  .benefits-text {
    font-size: 14.5px;
    margin-bottom: 30px;
  }

  .benefits-btn {
    width: 230px;
    padding: 15px;
    font-size: 13.5px;
  }

  .benefits-photo-wrap {
    max-width: 400px;
  }

  /* ASHRAM SECTION */
  .ashram-section {
    padding: 120px 0 140px;
  }

  .ashram-logo {
    max-width: 180px;
    margin-bottom: 30px;
  }

  .ashram-title {
    font-size: 48px;
    margin-bottom: 45px;
  }

  .ashram-card {
    width: 70%;
    padding: 35px 50px;
    border-top-right-radius: 70px;
    border-bottom-left-radius: 70px;
  }

  .ashram-card p {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* Medium Laptops: 1201px - 1440px */
@media (min-width: 1201px) and (max-width: 1440px) {

  /* TRANSFORM SECTION */
  .transform-section {
    padding: 80px 0;
  }

  .section-title {
    width: 75%;
    font-size: 38px;
    margin-bottom: 55px;
  }

  .transform-card {
    padding: 38px 35px;
  }

  .card-icon {
    width: 32%;
    margin-bottom: 28px;
  }

  .transform-card .card-heading {
    font-size: 21.5px;
    margin-bottom: 28px;
    margin-top: 22px;
  }

  .transform-card .card-paragraph {
    font-size: 14.2px;
  }

  /* BENEFITS SECTION */
  .benefits-section {
    padding: 80px 0;
  }

  .benefits-left {
    gap: 30px;
  }

  .benefits-illustration img {
    max-height: 340px;
  }

  .benefits-title-small {
    font-size: 23px;
  }

  .benefits-title-highlight {
    font-size: 45px;
  }

  .benefits-text {
    font-size: 14.8px;
    margin-bottom: 35px;
  }

  .benefits-btn {
    width: 240px;
    padding: 16px;
    font-size: 13.8px;
  }

  .benefits-photo-wrap {
    max-width: 430px;
  }

  /* ASHRAM SECTION */
  .ashram-section {
    padding: 20% 0 150px 0;
  }

  .ashram-logo {
    max-width: 190px;
    margin-bottom: 35px;
  }

  .ashram-title {
    font-size: 52px;
    margin-bottom: 50px;
  }

  .ashram-card {
    width: 65%;
    padding: 38px 55px;
  }

  .ashram-card p {
    font-size: 14.2px;
    line-height: 1.9;
  }
}

/* Large Laptops: 1441px - 1640px */
@media (min-width: 1441px) and (max-width: 1640px) {

  /* TRANSFORM SECTION */
  .transform-section {
    padding: 90px 0;
  }

  .section-title {
    width: 70%;
    font-size: 40px;
    margin-bottom: 60px;
  }

  .transform-card {
    padding: 40px 40px;
  }

  .card-icon {
    width: 30%;
    margin-bottom: 30px;
  }

  .transform-card .card-heading {
    font-size: 22px;
    margin-bottom: 30px;
    margin-top: 25px;
  }

  .transform-card .card-paragraph {
    font-size: 14.5px;
  }

  /* BENEFITS SECTION */
  .benefits-section {
    padding: 90px 0;
  }

  .benefits-left {
    gap: 32px;
  }

  .benefits-illustration img {
    max-height: 360px;
  }

  .benefits-title-small {
    font-size: 24px;
  }

  .benefits-title-highlight {
    font-size: 48px;
  }

  .benefits-text {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .benefits-btn {
    width: 250px;
    padding: 18px;
    font-size: 14px;
  }

  .benefits-photo-wrap {
    max-width: 450px;
  }

  /* ASHRAM SECTION */
  .ashram-section {
    padding: 20% 0 160px 0;
  }

  .ashram-logo {
    max-width: 200px;
    margin-bottom: 40px;
  }

  .ashram-title {
    font-size: 56px;
    margin-bottom: 55px;
  }

  .ashram-card {
    width: 60%;
    padding: 40px 60px;
  }

  .ashram-card p {
    font-size: 14.5px;
  }
}

/* Desktop Monitors: 1641px - 1920px */
@media (min-width: 1641px) and (max-width: 1920px) {

  /* TRANSFORM SECTION */
  .transform-section {
    padding: 100px 0;
  }

  .section-title {
    width: 65%;
    font-size: 44px;
    margin-bottom: 65px;
  }

  .transform-card {
    padding: 45px 45px;
  }

  .card-icon {
    width: 28%;
    margin-bottom: 35px;
  }

  .transform-card .card-heading {
    font-size: 24px;
    margin-bottom: 35px;
    margin-top: 28px;
  }

  .transform-card .card-paragraph {
    font-size: 15px;
    line-height: 2;
  }

  /* BENEFITS SECTION */
  .benefits-section {
    padding: 100px 0;
  }

  .benefits-left {
    gap: 36px;
  }

  .benefits-illustration img {
    max-height: 380px;
  }

  .benefits-title-small {
    font-size: 26px;
  }

  .benefits-title-highlight {
    font-size: 52px;
  }

  .benefits-text {
    font-size: 15.5px;
    margin-bottom: 45px;
  }

  .benefits-btn {
    width: 260px;
    padding: 20px;
    font-size: 14.5px;
  }

  .benefits-photo-wrap {
    max-width: 470px;
  }

  /* ASHRAM SECTION */
  .ashram-section {
    padding: 20% 0 170px;
  }

  .ashram-logo {
    max-width: 220px;
    margin-bottom: 45px;
  }

  .ashram-title {
    font-size: 60px;
    margin-bottom: 60px;
  }

  .ashram-card {
    width: 55%;
    padding: 45px 65px;
  }

  .ashram-card p {
    font-size: 15px;
  }
}

/* Large Monitors: 1921px - 2560px */
@media (min-width: 1921px) and (max-width: 2560px) {

  /* TRANSFORM SECTION */
  .transform-section {
    padding: 120px 0;
  }

  .section-title {
    width: 60%;
    font-size: 48px;
    margin-bottom: 75px;
  }

  .transform-card {
    padding: 50px 50px;
  }

  .card-icon {
    width: 25%;
    margin-bottom: 40px;
  }

  .transform-card .card-heading {
    font-size: 26px;
    margin-bottom: 40px;
    margin-top: 32px;
  }

  .transform-card .card-paragraph {
    font-size: 16px;
    line-height: 2;
  }

  /* BENEFITS SECTION */
  .benefits-section {
    padding: 120px 0;
  }

  .benefits-left {
    gap: 40px;
  }

  .benefits-illustration img {
    max-height: 400px;
  }

  .benefits-title-small {
    font-size: 28px;
  }

  .benefits-title-highlight {
    font-size: 56px;
  }

  .benefits-text {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .benefits-btn {
    width: 280px;
    padding: 22px;
    font-size: 15px;
  }

  .benefits-photo-wrap {
    max-width: 500px;
  }

  /* ASHRAM SECTION */
  .ashram-section {
    padding: 160px 0 180px;
  }

  .ashram-logo {
    max-width: 240px;
    margin-bottom: 50px;
  }

  .ashram-title {
    font-size: 64px;
    margin-bottom: 65px;
  }

  .ashram-card {
    width: 50%;
    padding: 50px 70px;
  }

  .ashram-card p {
    font-size: 16px;
  }
}

/* Extra Large Monitors: 2561px and above */
@media (min-width: 2561px) {

  /* TRANSFORM SECTION */
  .transform-section {
    padding: 140px 0;
  }

  .section-title {
    width: 55%;
    font-size: 52px;
    margin-bottom: 85px;
  }

  .transform-card {
    padding: 55px 55px;
  }

  .card-icon {
    width: 22%;
    margin-bottom: 45px;
  }

  .transform-card .card-heading {
    font-size: 28px;
    margin-bottom: 45px;
    margin-top: 35px;
  }

  .transform-card .card-paragraph {
    font-size: 17px;
    line-height: 2;
  }

  /* BENEFITS SECTION */
  .benefits-section {
    padding: 140px 0;
  }

  .benefits-left {
    gap: 44px;
  }

  .benefits-illustration img {
    max-height: 420px;
  }

  .benefits-title-small {
    font-size: 30px;
  }

  .benefits-title-highlight {
    font-size: 60px;
  }

  .benefits-text {
    font-size: 17px;
    margin-bottom: 55px;
  }

  .benefits-btn {
    width: 300px;
    padding: 24px;
    font-size: 16px;
  }

  .benefits-photo-wrap {
    max-width: 550px;
  }

  /* ASHRAM SECTION */
  .ashram-section {
    padding: 180px 0 200px;
  }

  .ashram-logo {
    max-width: 260px;
    margin-bottom: 55px;
  }

  .ashram-title {
    font-size: 68px;
    margin-bottom: 70px;
  }

  .ashram-card {
    width: 45%;
    padding: 55px 75px;
  }

  .ashram-card p {
    font-size: 17px;
  }
}

/* Layout adjustments for mobile */
@media (max-width: 767px) {
  .benefits-section .row {
    flex-direction: column;
  }

  .benefits-section .col-lg-8,
  .benefits-section .col-lg-4 {
    width: 100%;
  }

  .benefits-section .col-lg-4 {
    /* order: 1; */
    margin-bottom: 30px;
  }
}

/* BRAMARISHI SECTION */
.bramarishi-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;

  background-image: url('./assets/home/slice_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}


/* Title fonts */
.bramarishi-title {
  font-family: "Basics Serif Free", serif;
  font-size: 60px;
  color: #000;
  margin-bottom: 10px;
}

.bramarishi-subtitle {
  font-family: "Basics Serif Free", serif;
  font-size: 16px;
  letter-spacing: 4px;
  font-weight: 400;
  margin-bottom: 32px;
  color: #000;
}

/* Quote */
.bramarishi-quote {
  font-family: "Instrument Serif", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
  color: #444;
  margin-bottom: 28px;
  font-weight: 500;
}

/* Description */
.bramarishi-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  width: 500px;
  margin-bottom: 32px;
}

/* Button */
.bramarishi-btn {
  background: #7b3450;
  color: #fff;
  padding: 12px 34px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: background 0.3s ease;
  text-decoration: none;
  display: block;
  width: fit-content;
}

.bramarishi-btn:hover {
  background: #61293e;
}

/* =====================================
   IMAGE WRAPPER + ROTATING BACKGROUND
====================================== */
.bramarishi-image-wrapper {
  width: 100%;
  height: 600px;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  background: none;
}

/* Rotating mandala background */
.bramarishi-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/images/bg-om.svg") center/contain no-repeat;
  background-size: 400px 400px;
  opacity: 1;
  z-index: 1;
  right: -28%;
  animation: rotateBG 30s linear infinite;
  margin-top: -30%;
}

@keyframes rotateBG {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.bramarishi-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-top: 20%;
  transform: translateY(3%);
  z-index: 999;
}

/* Media Queries for Bramarishi Section */

/* Very Small Phones: 200px - 320px */
@media (min-width: 200px) and (max-width: 320px) {
  .bramarishi-section {
    /* padding: 40px 0; */
    background-image: none;
  }

  .bramarishi-title {
    font-size: 28px;
    margin-bottom: 8px;
    text-align: center;
  }

  .bramarishi-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-align: center;
  }

  .bramarishi-quote {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
  }

  .bramarishi-desc {
    font-size: 12px;
    line-height: 1.5;
    width: 100%;
    margin-bottom: 24px;
    text-align: center;
  }

  .bramarishi-btn {
    padding: 10px 40px;
    font-size: 14px;
    display: block;
    margin: 0 auto;
  }

  .bramarishi-image-wrapper {
    height: 300px;
    margin: 30px auto 0;
  }

  .bramarishi-image-wrapper::before {
    margin-top: -20%;
    background-size: 80%;
    right: 0%;
  }

  .bramarishi-image-wrapper img {
    padding-top: 15%;
    transform: translateY(12%);
    transform: translateX(-2rem);
  }

  .wrapper-1 {
    margin-left: 3% !important;
    margin-right: 3% !important;
  }

  .bramarishi-section .col-lg-6 {
    padding-top: 2rem;
  }
}

/* Small Phones to Tablets: 321px - 767px */
@media (min-width: 321px) and (max-width: 767px) {
  .bramarishi-section {
    /* padding: 50px 0; */
    background-image: none;
  }

  .bramarishi-title {
    font-size: 34px;
    margin-bottom: 10px;
    text-align: center;
  }

  .bramarishi-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 28px;
    text-align: center;
  }

  .bramarishi-quote {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: center;
  }

  .bramarishi-desc {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
    margin-bottom: 28px;
    text-align: center;
    padding: 0 15px;
  }

  .bramarishi-btn {
    padding: 12px 70px;
    font-size: 15px;
    display: block;
    margin: 0 auto;
  }

  .bramarishi-image-wrapper {
    height: 400px;
    margin: 40px auto 0;
  }

  .bramarishi-image-wrapper::before {
    /* margin-top: -25%; */
    background-size: 100%;
    right: 0%;
  }

  .bramarishi-image-wrapper img {
    padding-top: 18%;
    transform: translateY(2.5%);
    transform: translateX(-3rem);
  }

  .wrapper-1 {
    margin-left: 4% !important;
    margin-right: 4% !important;
  }

  .bramarishi-section .col-lg-6 {
    padding-top: 2rem;
  }

  .right-content {

    margin-left: 0% !important;
  }

  .eyebrow {
    font-family: "Basics Serif Free", serif;
    font-size: 22px !important;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.98);
  }

  .big-title {
    font-size: 20px !important;
  }
}

/* Tablets to Small Laptops: 768px - 1200px */
@media (min-width: 768px) and (max-width: 1200px) {
  /* .bramarishi-section {
    padding: 60px 0 0 0;
  } */

  .bramarishi-title {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .bramarishi-subtitle {
    font-size: 14px;
    letter-spacing: 3.5px;
    margin-bottom: 30px;
  }

  .bramarishi-quote {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 26px;
  }

  .bramarishi-desc {
    font-size: 15px;
    line-height: 1.6;
    width: 90%;
    margin-bottom: 30px;
  }

  .bramarishi-btn {
    padding: 14px 32px;
    font-size: 15px;
  }

  .bramarishi-image-wrapper {
    height: 500px;
  }

  .bramarishi-image-wrapper::before {
    margin-top: -28%;
    right: 0;
  }

  .bramarishi-image-wrapper img {
    padding-top: 5%;
    transform: translateY(-8%);
    transform: translateX(-4rem);
  }

  .wrapper-1 {
    margin-left: 5% !important;
  }
}

/* Medium Laptops: 1201px - 1440px */
@media (min-width: 1201px) and (max-width: 1440px) {
  /* .bramarishi-section {
    padding: 70px 0 0 0;
  } */

  .bramarishi-title {
    font-size: 56px;
    margin-bottom: 12px;
  }

  .bramarishi-subtitle {
    font-size: 15px;
    letter-spacing: 3.8px;
    margin-bottom: 32px;
  }

  .bramarishi-quote {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 28px;
  }

  .bramarishi-desc {
    font-size: 15px;
    line-height: 1.6;
    width: 80%;
    margin-bottom: 32px;
  }

  .bramarishi-btn {
    padding: 15px 34px;
    font-size: 16px;
  }

  .bramarishi-image-wrapper {
    height: 500px;
  }

  .bramarishi-image-wrapper::before {
    background-size: 300px 300px;
    margin-top: -29%;
    right: -55%;
  }

  .bramarishi-image-wrapper img {
    padding-top: 19.5%;
    transform: translateY(2.9%);
    transform: translateX(20%);
  }

  .wrapper-1 {
    margin-left: 6% !important;
  }
}

/* Large Laptops: 1441px - 1640px */
@media (min-width: 1441px) and (max-width: 1640px) {
  /* .bramarishi-section {
    padding: 80px 0 0 0;
  } */

  .bramarishi-title {
    font-size: 60px;
    margin-bottom: 12px;
  }

  .bramarishi-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 32px;
  }

  .bramarishi-quote {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 28px;
  }

  .bramarishi-desc {
    font-size: 16px;
    line-height: 1.6;
    width: 500px;
    margin-bottom: 32px;
  }

  .bramarishi-btn {
    padding: 16px 36px;
    font-size: 16px;
  }

  .bramarishi-image-wrapper {
    height: 600px;
  }

  .bramarishi-image-wrapper::before {
    background-size: 300px 300px;
    margin-top: -30%;
    right: -55%;
  }

  .bramarishi-image-wrapper img {
    padding-top: 20%;
    transform: translateY(3%);
    transform: translateX(15%);
  }

  .wrapper-1 {
    margin-left: 8% !important;
  }
}

/* Desktop Monitors: 1641px - 1920px */
@media (min-width: 1641px) and (max-width: 1920px) {
  /* .bramarishi-section {
    padding: 90px 0 0 0;
  } */

  .bramarishi-title {
    font-size: 64px;
    margin-bottom: 14px;
  }

  .bramarishi-subtitle {
    font-size: 17px;
    letter-spacing: 4.2px;
    margin-bottom: 36px;
  }

  .bramarishi-quote {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 32px;
  }

  .bramarishi-desc {
    font-size: 17px;
    line-height: 1.6;
    width: 550px;
    margin-bottom: 36px;
  }

  .bramarishi-btn {
    padding: 18px 40px;
    font-size: 17px;
  }

  .bramarishi-image-wrapper {
    height: 750px;
  }

  .bramarishi-image-wrapper::before {
    margin-top: -32%;
    right: -50%;
    background-size: 350px 350px;
  }

  .bramarishi-image-wrapper img {
    padding-top: 21%;
    transform: translateY(3%);
    transform: translateX(15%);
  }

  .wrapper-1 {
    margin-left: 10% !important;
  }
}

/* Large Monitors: 1921px - 2560px */
@media (min-width: 1921px) and (max-width: 2560px) {
  /* .bramarishi-section {
    padding: 100px 0 0 0;
  } */

  .bramarishi-title {
    font-size: 72px;
    margin-bottom: 16px;
  }

  .bramarishi-subtitle {
    font-size: 18px;
    letter-spacing: 4.5px;
    margin-bottom: 40px;
  }

  .bramarishi-quote {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 36px;
  }

  .bramarishi-desc {
    font-size: 18px;
    line-height: 1.6;
    width: 600px;
    margin-bottom: 40px;
  }

  .bramarishi-btn {
    padding: 20px 44px;
    font-size: 18px;
  }

  .bramarishi-image-wrapper {
    height: 700px;
  }

  .bramarishi-image-wrapper::before {
    margin-top: -20%;
    right: -60%;
  }

  .bramarishi-image-wrapper img {
    padding-top: 22%;
    transform: translateY(3.4%);
    transform: translateX(25%);
  }

  .wrapper-1 {
    margin-left: 12% !important;
  }
}

/* Extra Large Monitors: 2561px and above */
@media (min-width: 2561px) {
  /* .bramarishi-section {
    padding: 120px 0 0 0;
  } */

  .bramarishi-title {
    font-size: 80px;
    margin-bottom: 18px;
  }

  .bramarishi-subtitle {
    font-size: 20px;
    letter-spacing: 5px;
    margin-bottom: 48px;
  }

  .bramarishi-quote {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 42px;
  }

  .bramarishi-desc {
    font-size: 20px;
    line-height: 1.6;
    width: 650px;
    margin-bottom: 48px;
  }

  .bramarishi-btn {
    padding: 22px 48px;
    font-size: 20px;
  }

  .bramarishi-image-wrapper {
    height: 800px;
  }

  .bramarishi-image-wrapper::before {
    margin-top: -36%;
  }

  .bramarishi-image-wrapper img {
    padding-top: 23%;
    transform: translateY(3.6%);
  }

  .wrapper-1 {
    margin-left: 15% !important;
  }
}

/* Text alignment adjustments for mobile */
@media (max-width: 767px) {
  .bramarishi-section {
    background-position: center top;
  }

  .bramarishi-section .row {
    flex-direction: column-reverse;
  }

  .bramarishi-section .col-lg-6,
  .bramarishi-section .col-lg-5 {
    width: 100%;
    text-align: center;
  }

  .bramarishi-section .col-lg-6 {
    order: 2;
  }

  .bramarishi-section .col-lg-5 {
    order: 1;
  }
}

/* For tablets and above - reset text alignment */
@media (min-width: 768px) {

  .bramarishi-section .col-lg-6,
  .bramarishi-section .col-lg-5 {
    text-align: left;
  }

  .bramarishi-desc {
    text-align: left;
  }
}

/* CLASSES SECTION */
.classes-section {
  padding: 70px 0;
  background-image: url('./assets/images/mountain__bg_2.svg');
  background-repeat: no-repeat;
  background-position: right center;
  position: relative;
  background-size: cover;
  /* overflow: hidden; */
}

.classes-section .wrapper {
  position: relative;
  overflow: visible;
}

.swiper.classesSwiper {
  position: relative !important;
}

.classes-section .swiper-wrapper {
  width: 100%;
  display: flex;
}

.classes-section .swiper-slide {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  text-decoration: none;
}

.first-button,
.second-button {
  position: absolute;
  top: 60%;
  /* transform: translateY(-50%); */
  z-index: 20;

  background: #ffffff;
  border: 1px solid #ddd;
  color: #333;

  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 20px;
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

/* Left button */
.first-button {
  left: 4px;
  /* Adjust if needed */
}

/* Right button */
.second-button {
  right: 4px;
}


/* section head */
.section-head {
  gap: 16px;
}

.section-heading .kicker {
  display: inline-block;
  background: #DA947F;
  color: #fff;
  border: 1px solid #E1EDE4;
  width: auto;
  padding: 1% 2%;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.section-heading .title {
  font-family: "Basics Serif Free", sans-serif;
  font-size: 30px;
  width: 80%;
  line-height: 1.8;
  margin: 0;
  color: #0e0a08;
  font-weight: 400;
}

/* right-side All Classes button */
.all-classes-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.all-classes-btn {
  background: #DA947F;
  border: none;
  color: white;
  border-radius: 30px;
  width: 130px;
  /* padding: 6% 4%; */
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-decoration: none;
  text-align: center;
}

/* card */
.class-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(159, 191, 175, 0.18);
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.class-card:hover {
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* image / media */
.card-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* body */
.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

/* meta row */
.meta-row {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #9fbfaf;
  font-size: 13px;
  flex-wrap: nowrap;
}

.meta-item {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.meta-icon {
  display: block;
  opacity: 0.9;
}

.meta-text {
  color: #C1CDC3;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

/* title */
.card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  margin: 6px 0;
  color: #11141B;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  /* flex-safe */
  max-width: 100%;
}

/* members */
.members-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.member-badges {
  display: flex;
  gap: 6px;
  align-items: center;
}

.members-text {
  color: #C1CDC3;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  margin-top: auto;
  margin-bottom: auto;
}

/* description */
.card-desc {
  color: #A5A5A7;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  text-align: left;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%; */
}

/* CTA aligned bottom */
.card-cta {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.start-class-btn {
  background: #7b3450;
  color: #fff;
  width: 100%;
  padding: 2%;
  border-radius: 28px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(123, 52, 80, 0.12);
  text-decoration: none;
  display: block;
  text-align: center;
}

/* SWIPER Navigation */

/* COURSES SECTION */
.courses-section {
  background: #592936;
  padding: 72px 0 90px;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.courses-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.kicker-pill {
  display: inline-block;
  background: #DA947F;
  color: #fff;
  width: auto;
  padding: 1% 2%;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.courses-title {
  font-family: "Basics Serif Free", sans-serif;
  color: #fff;
  font-size: 32px;
  line-height: 1.6;
  margin: 0;
}

/* SWIPER container visual adjustments */
.courses-section .swiper {
  padding-top: 8px;
  padding-bottom: 6px;
}

/* Slide / card base */
.coursesSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto !important;
  text-decoration: none;
}

.course-card {
  width: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  border-radius: 18px;
}

/* top peach band */
.card-top {
  background: #e8a994;
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.card-top-decor {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  background: url('./assets/logo-white-small.png') center/contain no-repeat;
  opacity: .85;
}

.card-hero {
  width: 160px;
  height: 160px;
  object-fit: contain;
  transform: translateY(30%);
  z-index: 2;
}

/* body */
.card-body {
  padding: 26px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
  text-decoration: none;
}

.course-title {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0 6px;
  color: #111;
  font-family: "Plus Jakarta Sans", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  /* flex-safe */
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.course-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #8f8f8f;
  font-size: 13px;
  margin-top: 6px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.course-meta .meta-text {
  color: #A5A5A7;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

/* description / CTA */
.course-desc {
  color: #151515;
  font-size: 13px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4px;
  margin-bottom: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%; */
}

.card-cta {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.learn-more-btn {
  width: 60%;
  border-radius: 5px;
  background: #7b3450;
  color: #fff;
  padding: 4%;
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}

/* ==================== MEDIA QUERIES ==================== */

/* Very Small Phones: 200px - 320px */
@media (min-width: 200px) and (max-width: 320px) {
  .classes-section {
    background-image: url('./assets/images/printed-bg.png');
    background-position: center center;
    background-size: cover;
  }

  /* CLASSES SECTION */
  .classes-section {
    padding: 0;
  }

  .section-head {
    flex-direction: column;
    gap: 15px;
  }

  .section-heading .kicker {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 10px;
  }

  .section-heading .title {
    font-size: 20px;
    width: 100%;
    line-height: 1.4;
    text-align: left;
  }

  .all-classes-btn {
    width: 120px;
    padding: 10px;
    font-size: 13px;
  }


  .card-media {
    height: 160px;
  }

  .card-body {
    padding: 16px;
    gap: 8px;
  }

  .card-title {
    font-size: 16px;
  }

  .meta-row {
    gap: 12px;
    font-size: 11px;
  }

  .card-desc {
    font-size: 12px;
    line-height: 1.4;
  }

  .start-class-btn {
    padding: 10px;
    font-size: 14px;
  }

  /* COURSES SECTION */
  .courses-section {
    padding: 40px 0 60px;
  }

  .courses-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }

  .kicker-pill {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 10px;
  }

  .courses-title {
    font-size: 20px;
    line-height: 1.4;
    text-align: left;
  }


  .course-card {
    width: 100%;
    max-width: 280px;
  }

  .card-top {
    height: 130px;
  }

  .card-hero {
    width: 130px;
    height: 130px;
    transform: translateY(25%);
  }

  .card-body {
    padding: 20px 8px;
  }

  .course-title {
    font-size: 17px;
  }

  .course-meta {
    font-size: 11px;
    gap: 10px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .course-desc {
    font-size: 12px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .learn-more-btn {
    width: 70%;
    padding: 10px;
    font-size: 13px;
  }
}

/* Small Phones to Tablets: 321px - 767px */
@media (min-width: 321px) and (max-width: 767px) {
  .classes-section {
    background-image: url('./assets/images/printed-bg.png');
    background-position: center center;
    background-size: cover;
  }

  /* .classes-section::before {
    content: "";
    display: block;
    height: 80vh;
  } */

  /* CLASSES SECTION */
  .classes-section {
    overflow: hidden;
    padding: 0;
  }

  .section-head {
    flex-direction: column;
    gap: 20px;
  }

  .section-heading .kicker {
    font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 12px;
  }

  .section-heading .title {
    font-size: 24px;
    width: 100%;
    line-height: 1.5;
    text-align: left;
  }

  .all-classes-btn {
    width: 130px;
    padding: 12px;
    font-size: 14px;
  }

  .card-media {
    height: 180px;
  }

  .card-body {
    padding: 18px;
    gap: 10px;
  }

  .card-title {
    font-size: 18px;
  }

  .meta-row {
    gap: 14px;
    font-size: 12px;
  }

  .card-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .start-class-btn {
    padding: 12px;
    font-size: 15px;
  }

  /* COURSES SECTION */
  .courses-section {
    padding: 50px 0 70px;
  }

  .courses-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .kicker-pill {
    font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 12px;
  }

  .courses-title {
    font-size: 24px;
    line-height: 1.5;
    text-align: left;
  }


  .course-card {
    width: 100%;
    max-width: 300px;
  }

  .card-top {
    height: 140px;
  }

  .card-hero {
    width: 140px;
    height: 140px;
    transform: translateY(28%);
  }

  .card-body {
    padding: 22px 10px;
  }

  .course-title {
    font-size: 18px;
  }

  .course-meta {
    font-size: 12px;
    gap: 12px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .course-desc {
    font-size: 13px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .learn-more-btn {
    width: 65%;
    padding: 12px;
    font-size: 14px;
  }
}

/* Tablets to Small Laptops: 768px - 1200px */
@media (min-width: 768px) and (max-width: 1200px) {

  /* CLASSES SECTION */
  .classes-section {
    padding: 0;
    background-image: url('./assets/images/printed-bg.png');
    background-position: center center;
    background-size: cover;
  }

  /* .classes-section::before {
    content: "";
    display: block;
    height: 33rem;
  } */
  .section-heading .kicker {
    font-size: 13px;
    padding: 10px 18px;
  }

  .section-heading .title {
    font-size: 28px;
    width: 90%;
    line-height: 1.7;
  }

  .all-classes-btn {
    width: 140px;
    padding: 14px;
    font-size: 15px;
  }

  .card-media {
    height: 200px;
  }

  .card-body {
    padding: 20px;
  }

  .card-title {
    font-size: 19px;
  }

  .meta-row {
    gap: 16px;
    font-size: 12.5px;
  }

  .card-desc {
    font-size: 13.5px;
  }

  /* COURSES SECTION */
  .courses-section {
    padding: 60px 0 80px;
  }

  .courses-title {
    font-size: 28px;
  }

  .course-card {
    width: 290px;
  }

  .card-top {
    height: 145px;
  }

  .card-hero {
    width: 150px;
    height: 150px;
  }

  .course-title {
    font-size: 19px;
  }

  .course-desc {
    font-size: 13px;
  }

  .learn-more-btn {
    padding: 14px;
    font-size: 14px;
  }
}

/* Medium Laptops: 1201px - 1440px */
@media (min-width: 1201px) and (max-width: 1440px) {

  /* Left button */
  .classes-section .first-button {
    top: 75%;
    left: 2rem;
  }

  /* Right button */
  .classes-section .second-button {
    top: 75%;
    right: 2rem;
  }

  .courses-section .first-button {
    left: 2rem;
  }

  /* Right button */
  .courses-section .second-button {
    right: 2rem;
  }

  /* CLASSES SECTION */
  .classes-section {
    padding: 0 0 70px 0;
    background-position: center center;
  }

  .classes-section::before {
    content: "";
    display: block;
    height: 90vh;
  }

  .section-heading .title {
    font-size: 32px;
    width: 85%;
  }

  .section-head {
    margin-top: 4%;
  }


  .all-classes-btn {
    padding: 8px 24px 10px 24px;
    width: 12rem;
    font-size: 13px;
  }

  .card-media {
    height: 220px;
  }

  .card-body {
    padding: 22px;
  }

  .card-title {
    font-size: 20px;
  }

  /* COURSES SECTION */
  .courses-section {
    padding: 72px 0 90px;
  }

  .courses-title {
    font-size: 32px;
  }

  .course-card {
    width: 320px;
  }

  .card-top {
    height: 150px;
  }

  .card-hero {
    width: 160px;
    height: 160px;
  }

  .learn-more-btn {
    font-size: 15px;
  }
}

/* Large Laptops: 1441px - 1640px */
@media (min-width: 1441px) and (max-width: 1640px) {

  /* Left button */
  .classes-section .first-button {
    top: 80%;
    left: 4rem;
  }

  /* Right button */
  .classes-section .second-button {
    top: 80%;
    right: 4rem;
  }

  .courses-section .first-button {
    left: 4rem;
  }

  /* Right button */
  .courses-section .second-button {
    right: 4rem;
  }

  /* CLASSES SECTION */
  .classes-section {
    padding: 0 0 70px 0;
    background-position: center center;
  }

  .classes-section::before {
    content: "";
    display: block;
    height: 85vh;
  }

  .section-heading .title {
    font-size: 34px;
    width: 80%;
  }

  .all-classes-btn {
    padding: 10px 22px;
    font-size: 16px;
  }

  .card-media {
    height: 230px;
  }

  .card-body {
    padding: 24px;
  }

  .card-title {
    font-size: 21px;
  }

  /* COURSES SECTION */
  .courses-section {
    padding: 80px 0 100px;
  }

  .courses-title {
    font-size: 34px;
  }

  .course-card {
    width: 340px;
  }

  .card-top {
    height: 160px;
  }

  .card-hero {
    width: 170px;
    height: 170px;
  }

  .learn-more-btn {
    font-size: 16px;
  }
}

/* Desktop Monitors: 1641px - 1920px */
@media (min-width: 1641px) and (max-width: 1920px) {


  .classes-section::before {
    content: "";
    display: block;
    height: 100vh;
  }

  /* Left button */
  .classes-section .first-button {
    top: 80%;
    left: 8rem;
  }

  /* Right button */
  .classes-section .second-button {
    top: 80%;
    right: 8rem;
  }

  .courses-section .first-button {
    left: 8rem;
  }

  /* Right button */
  .courses-section .second-button {
    right: 8rem;
  }

  /* CLASSES SECTION */
  .classes-section {
    padding: 0 0 90px 0;
  }

  .section-heading .title {
    font-size: 36px;
    width: 75%;
  }

  .all-classes-btn {
    padding: 8px;
    width: 12rem;
    font-size: 17px;
  }


  .card-media {
    height: 240px;
  }

  .card-body {
    padding: 26px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-desc {
    font-size: 15px;
  }

  /* COURSES SECTION */
  .courses-section {
    padding: 90px 0 110px;
  }

  .courses-title {
    font-size: 36px;
  }

  .course-card {
    width: 360px;
  }

  .card-top {
    height: 170px;
  }

  .card-hero {
    width: 180px;
    height: 180px;
  }

  .course-title {
    font-size: 22px;
  }

  .course-desc {
    font-size: 14px;
  }

  .learn-more-btn {
    font-size: 17px;
  }
}

/* Large Monitors: 1921px - 2560px */
@media (min-width: 1921px) and (max-width: 2560px) {
  .classes-section {
    background-position: center center;
  }

  .classes-section::before {
    content: "";
    display: block;
    height: 90vh;
  }

  /* Left button */
  .classes-section .first-button {
    left: 8rem;
  }

  /* Right button */
  .classes-section .second-button {
    right: 8rem;
  }

  .courses-section .first-button {
    left: 8rem;
  }

  /* Right button */
  .courses-section .second-button {
    right: 8rem;
  }

  /* CLASSES SECTION */
  .classes-section {
    padding: 100px 0;
  }

  .section-heading .title {
    font-size: 40px;
    width: 70%;
  }

  .all-classes-btn {
    padding: 22px;
    font-size: 18px;
  }

  .card-media {
    height: 260px;
  }

  .card-body {
    padding: 28px;
  }

  .card-title {
    font-size: 24px;
  }

  .card-desc {
    font-size: 16px;
  }

  .start-class-btn {
    font-size: 18px;
  }

  /* COURSES SECTION */
  .courses-section {
    padding: 100px 0 120px;
  }

  .courses-title {
    font-size: 40px;
  }

  .course-card {
    width: 380px;
  }

  .card-top {
    height: 180px;
  }

  .card-hero {
    width: 190px;
    height: 190px;
  }

  .course-title {
    font-size: 24px;
  }

  .course-desc {
    font-size: 15px;
  }

  .learn-more-btn {
    font-size: 18px;
  }
}

/* Extra Large Monitors: 2561px and above */
@media (min-width: 2561px) {
  .classes-section {
    background-position: center center;
  }

  .classes-section::before {
    content: "";
    display: block;
    height: 80vh;
  }

  /* Left button */
  .classes-section .first-button {
    left: 8rem;
  }

  /* Right button */
  .classes-section .second-button {
    right: 8rem;
  }

  .courses-section .first-button {
    left: 8rem;
  }

  /* Right button */
  .courses-section .second-button {
    right: 8rem;
  }

  /* CLASSES SECTION */
  .classes-section {
    padding: 120px 0;
  }

  .section-heading .title {
    font-size: 44px;
    width: 65%;
  }

  .all-classes-btn {
    padding: 24px;
    font-size: 20px;
  }

  .card-media {
    height: 280px;
  }

  .card-body {
    padding: 30px;
  }

  .card-title {
    font-size: 26px;
  }

  .card-desc {
    font-size: 17px;
  }

  .start-class-btn {
    font-size: 20px;
  }

  /* COURSES SECTION */
  .courses-section {
    padding: 120px 0 140px;
  }

  .courses-title {
    font-size: 44px;
  }

  .course-card {
    width: 400px;
  }

  .card-top {
    height: 190px;
  }

  .card-hero {
    width: 200px;
    height: 200px;
  }

  .course-title {
    font-size: 26px;
  }

  .course-desc {
    font-size: 16px;
  }

  .learn-more-btn {
    font-size: 20px;
  }
}

/* Swiper Responsive Adjustments */
@media (max-width: 767px) {
  /* .swiper {
    overflow: visible !important;
  } */

  .swiper-wrapper {
    padding: 0 10px;
  }
}

/* Container adjustments for mobile */
@media (max-width: 767px) {

  .wrapper,
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .classes-section {
    overflow: hidden;
  }

  .classes-section .wrapper {
    padding: 0 15px;
    overflow: hidden;
  }

  .classes-section .swiper {
    padding: 10px 10px 40px;
    /* Add side padding */
    margin: 0 -10px;
    /* Compensate for padding */
    /* overflow: hidden !important; */
  }

  .classes-section .swiper-wrapper {
    padding: 0 5px;
    /* Small padding inside wrapper */
  }


  /* Ensure cards don't overflow */
  .classes-section .class-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Update the navigation button styles for mobile */
@media (max-width: 767px) {
  .swiper.classesSwiper {
    padding: 10px 40px 40px !important;
    /* Add side padding for arrows */
  }

  .right-left1 {
    top: 50%;
    transform: translateY(-50%);
  }


  /* Make sure swiper doesn't hide arrows */
  .classes-section .swiper {
    overflow: visible !important;
  }

  /* Pagination dots */
  .swiper-pagination {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    margin: 0 4px;
  }

  .swiper-pagination-bullet-active {
    background: #7b3450;
  }

  /* Make swiper container have some padding for buttons */
  .classesSwiper,
  .coursesSwiper {
    padding: 0 20px;
    margin: 0 -20px;
  }
}

/* For tablets */
@media (min-width: 768px) and (max-width: 991px) {

  .classes-section .swiper {
    padding: 10px 5px 30px;
  }
}

/* Hide pagination on desktop */
@media (min-width: 992px) {
  .swiper-pagination {
    display: none;
  }

  .classes-section .swiper {
    padding: 10px 0 30px;
  }
}


.life-section {
  background: #faf8f6;
  padding: 0;
  overflow: hidden;
  color: #1a1a1a;
  font-family: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial;
}

/* make the two-column layout take a taller appearance on desktop */
.life-row {
  align-items: stretch;
  /* allow left image column to be tall */
  min-height: 560px;
}

/* LEFT column: big portrait area */
.life-left {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-color: #26382f;
  /* fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 35%;
}

.life-left .portrait {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background-image: url('./assets/home/life-bg2.png');
  /* replace */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  filter: saturate(.9) contrast(.92);
  /* optional subtle overlay */
  position: relative;
}

.life-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(38, 56, 47, 0.25) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(0, 0, 0, 0.10) 100%);
  pointer-events: none;
}

/* RIGHT column content */
.life-right {
  padding: 3% 6% 3% 2%;
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leaf-text {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: flex-start;
  position: relative;
}

.leaf-text-image {
  position: absolute;
  width: 6rem;
  height: 6rem;
  left: 18rem;
  top: -1rem;
}

.leaf-text-image img {
  width: 100%;
  height: 100%;
}

.life-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 95px;
  line-height: 1.02;
  margin-top: auto;
  width: 50%;
}

.life-title1 {
  color: #F37B7B;
  display: inline-block;
  width: 18rem;
  font-size: 95px;
}

.life-title2 {
  background: linear-gradient(180deg,
      #F37B7B 0%,
      #F16670 32%,
      #A33A4A 65%,
      #4A0E1C 92%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.life-desc {
  color: #333;
  font-size: 14.5px;
  line-height: 1.4;
  max-width: 640px;
  width: 75%;
  /* margin-bottom: 8px; */
}

/* image group on the right column */
.life-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 8px;
  width: 100%;
}

.life-gallery .big {
  grid-column: 1 / -1;
  /* big image spans both columns */
  border-radius: 18px;
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: center;
  position: relative;
}

.life-gallery img {
  width: 100%;
  height: 100%;
  display: block;
}

.leaf-center {
  width: 10rem;
  height: 14rem;
  margin-bottom: 1rem;
  position: absolute;
  left: 1rem;
}

.leaf-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-wrap {
  width: 80%;
  grid-column: 2;
  margin-left: auto;
}

.image-wrap2 {
  width: 50%;
  grid-column: 2;
  position: absolute;
  bottom: -50%;
  left: -10%;
}





/* RIGHT SMALL IMAGE */
.life-gallery .small {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  grid-column: 2;
  width: 80%;
  margin-left: auto;

}

.life-gallery img {
  width: 100%;
  height: 100%;
  display: block;
}

/* decorative leaf outline (optional) */
.life-decor {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 68px;
  height: 68px;
  opacity: 0.12;
  pointer-events: none;
}

/* CTA learn more (optional) */
.life-cta {
  margin-top: 20px;
  width: fit-content;
}

.btn-life {
  background: #7b3450;
  color: #fff;
  border-radius: 6px;
  padding: 10px 18px;
  border: none;
  font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .leaf-text-image {
    display: none;
  }

  .life-title {
    font-size: 36px;
    margin-top: 6px;
    width: 100%;
  }

  .life-title1 {
    font-size: 38px;
  }

  .life-row {
    min-height: auto;
  }

  .life-left {
    min-height: 280px;
    flex: 0 0 100%;
  }

  .life-right {
    padding: 28px 18px;
    flex: 0 0 100%;
  }

  .leaf-center {
    display: none;
  }

  .life-gallery {
    display: flex;
    flex-direction: column;
  }

  .life-gallery .big {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .image-wrap {
    width: 80vw;
  }

  .image-wrap2 {
    position: relative !important;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    width: 80vw;
  }

  .life-gallery .small {
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
  }

  .life-desc {
    width: 100%;
  }

  .life-section {
    padding: 2% 0;
  }
}

@media (max-width: 575.98px) {
  .leaf-text-image {
    display: none;
  }

  .life-title {
    font-size: 34px;
    width: 100%;
  }

  .life-title1 {
    font-size: 36px;
  }

  .leaf-center {
    display: none;
  }

  .life-gallery {
    display: inline-flex;
    flex-direction: column;
  }

  .image-wrap2 {
    position: relative;
    height: 100%;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .image-wrap {
    width: 80vw;
  }

  .image-wrap2 {
    position: relative !important;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    width: 80vw;
  }

  .life-gallery .small {
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
  }

  .life-left {
    flex: 0 0 100%;
  }

  .life-right {
    margin-left: auto;
    margin-right: auto;
    flex: 0 0 100%;
  }

  .life-desc {
    width: 100%;
  }
}

/* CONTRIBUTIONS SECTION - FOLLOWING YOUR MEDIA QUERY PATTERN */
.contributions {
  color: white;
  padding: 5% 0;
}

.contribute-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: #5A303E;
  border-radius: 30px;
  min-height: 500px;
  overflow: hidden;
  align-items: stretch;
}

.contribute-1 {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}

.your-contribution {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  padding: 8%;
  height: 100%;
}

.Volunteer-button {
  color: black;
  -webkit-text-fill-color: black;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.volunteer-actual-button {
  width: fit-content;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 2% 5%;
  background-color: #ffffff;
  border: 1px solid #f1f1f1;
}



.contribute-text {
  color: #FFEFC5;
  font-family: 'Basics Serif Free';
  font-size: 40px;
  font-weight: 400;
  margin: 10px 0;
}

.change-life {
  font-family: "Quintessential", cursive;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}

.contribute-join a {
  background-color: #FFEEC3;
  border-radius: 20px;
  border: transparent;
  font-weight: 500;
  font-size: 14px;
  padding: 0.75rem 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  text-decoration: none;
  color: black;
}

/* CONTRIBUTION SUPPORT CARDS */
.contribution-support {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 8%;
  justify-content: center;
  height: 100%;
}

.contribution-support1,
.contribution-support2 {
  border: 1px solid #FFEFC5;
  border-radius: 13px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contribution-support1 h1,
.contribution-support2 h1 {
  font-size: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  margin: 0;
  color: white;
}

.contribution-support1 p,
.contribution-support2 p {
  font-size: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* RIGHT SIDE - IMAGE (DEFAULT DESKTOP STYLES) */
.contribute-2 {
  background-color: #5A303E;
  border-bottom-right-radius: 30px;
  /* border-top-right-radius: 30px; */
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  /* Default height for desktop */
  align-self: flex-end;
  margin-top: auto;
  width: 100%;
}

.contribute-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  display: block;
}

/* ==================== MEDIA QUERIES ==================== */

/* Very Small Phones: 200px - 320px */
@media (min-width: 200px) and (max-width: 320px) {
  .contribute-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border-radius: 20px;
    min-height: auto;
    gap: 0;
  }

  .contribute-1 {
    grid-template-columns: 1fr;
    order: 1;
    padding: 20px 0;
    gap: 20px;
    height: auto;
  }

  .contribute-2 {
    order: 2;
    border-radius: 0 0 20px 20px;
    height: 250px;
    margin-top: 0;
    align-self: stretch;
    /* Reset for mobile */
    width: 100%;
  }

  .contribute-2 img {
    object-fit: cover;
    object-position: center;
  }

  .your-contribution {
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 20px;
    height: auto;
  }

  .Volunteer-button {
    padding: 1rem 0;
  }

  .Volunteer-button p {
    font-size: 12px;
    padding: 0.4rem 1rem;
  }

  .volunteer-actual-button {
    font-size: 12px;
  }

  .contribute-text {
    font-size: 24px;
    text-align: center;
  }

  .change-life {
    font-size: 16px;
    text-align: center;
  }

  .contribute-join a {
    font-size: 12px;
    padding: 0.5rem 1rem;
    width: 110px;
  }

  .contribution-support {
    padding: 20px;
    gap: 0.75rem;
    height: auto;
  }

  .contribution-support1,
  .contribution-support2 {
    padding: 1rem;
  }

  .contribution-support1 h1,
  .contribution-support2 h1 {
    font-size: 16px;
  }

  .contribution-support1 p,
  .contribution-support2 p {
    font-size: 11px;
  }
}

/* Small Phones to Tablets: 321px - 767px */
@media (min-width: 321px) and (max-width: 767px) {
  .contribute-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border-radius: 25px;
    min-height: auto;
    gap: 0;
  }

  .contribute-1 {
    grid-template-columns: 1fr;
    order: 1;
    padding: 25px 0;
    gap: 25px;
    height: auto;
  }

  .contribute-2 {
    order: 2;
    border-radius: 0 0 25px 25px;
    height: 300px;
    margin-top: 0;
    align-self: stretch;
    /* Reset for mobile */
    width: 100%;
  }

  .contribute-2 img {
    object-fit: cover;
    object-position: center;
  }

  .Volunteer-button {
    padding: 1rem 0;
  }

  .your-contribution {
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 25px;
    height: auto;
  }

  .volunteer-actual-button {
    font-size: 13px;
  }

  .Volunteer-button p {
    font-size: 13px;
    padding: 0.5rem 2rem;
  }

  .contribute-text {
    font-size: 28px;
    text-align: center;
  }

  .change-life {
    font-size: 18px;
    text-align: center;
  }

  .contribute-join {
    font-size: 13px;
    padding: 0.6rem 1.25rem;
    width: 170px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .contribute-join a {
    font-size: 13px;
  }

  .contribution-support {
    padding: 25px;
    gap: 1rem;
    height: auto;
  }

  .contribution-support1,
  .contribution-support2 {
    padding: 1.25rem;
  }

  .contribution-support1 h1,
  .contribution-support2 h1 {
    font-size: 17px;
  }

  .contribution-support1 p,
  .contribution-support2 p {
    font-size: 12px;
  }
}

/* Tablets to Small Laptops: 768px - 1200px */
@media (min-width: 768px) and (max-width: 1200px) {
  .contribute-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .contribute-1 {
    grid-template-columns: 1fr;
    padding: 30px 0;
    order: 1;
    gap: 30px;
    height: auto;
  }

  .contribute-2 {
    order: 2;
    height: 100%;
    border-radius: 0 0 30px 30px;
    margin-top: 0;
    align-self: stretch;
    /* Reset for mobile */
    width: 100%;
  }

  .contribute-2 img {
    object-fit: cover;
    object-position: center;
  }

  .your-contribution {
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 30px;
    height: auto;
  }

  .volunteer-actual-button {
    font-size: 14px;
  }

  .Volunteer-button p {
    font-size: 14px;
    padding: 0.6rem 1.5rem;
  }

  .contribute-text {
    font-size: 32px;
    text-align: center;
  }

  .change-life {
    font-size: 20px;
    text-align: center;
  }

  .contribute-join a {
    font-size: 14px;
    padding: 0.75rem 1.5rem;
    width: 130px;
  }

  .contribution-support {
    padding: 30px;
    gap: 1.25rem;
    height: auto;
  }

  .contribution-support1,
  .contribution-support2 {
    padding: 1.5rem;
  }

  .contribution-support1 h1,
  .contribution-support2 h1 {
    font-size: 18px;
  }

  .contribution-support1 p,
  .contribution-support2 p {
    font-size: 13px;
  }
}

/* Medium Laptops: 1201px - 1440px */
@media (min-width: 1201px) and (max-width: 1440px) {
  .contribute-section {
    min-height: 450px;
  }

  .contribute-2 {
    height: 100%;
  }

  .contribute-text {
    font-size: 36px;
  }

  .change-life {
    font-size: 20px;
  }

  .volunteer-actual-button {
    font-size: 14px;
  }

  .Volunteer-button p {
    font-size: 14px;
    /* width: 14rem; */
  }

  .contribute-join a {
    font-size: 14px;
  }

  .contribution-support1 h1,
  .contribution-support2 h1 {
    font-size: 18px;
  }

  .contribution-support1 p,
  .contribution-support2 p {
    font-size: 12px;
  }
}

/* Large Laptops: 1441px - 1640px */
@media (min-width: 1441px) and (max-width: 1640px) {
  .contribute-section {
    min-height: 500px;
  }

  .contribute-2 {
    height: 100%;
  }

  .contribute-text {
    font-size: 38px;
  }

  .change-life {
    font-size: 22px;
  }

  .volunteer-actual-button {
    font-size: 15px;
  }

  .Volunteer-button p {
    font-size: 15px;
  }

  .contribute-join a {
    font-size: 15px;
  }

  .contribution-support1 h1,
  .contribution-support2 h1 {
    font-size: 19px;
  }

  .contribution-support1 p,
  .contribution-support2 p {
    font-size: 13px;
  }
}

/* Desktop Monitors: 1641px - 1920px */
@media (min-width: 1641px) and (max-width: 1920px) {
  .contribute-section {
    min-height: 550px;
  }

  .contribute-2 {
    height: 100%;
  }

  .contribute-text {
    font-size: 42px;
  }

  .change-life {
    font-size: 24px;
  }

  .volunteer-actual-button {
    font-size: 16px;
  }

  .Volunteer-button p {
    font-size: 16px;
  }

  .contribute-join a {
    font-size: 16px;
  }

  .contribution-support1 h1,
  .contribution-support2 h1 {
    font-size: 20px;
  }

  .contribution-support1 p,
  .contribution-support2 p {
    font-size: 14px;
  }
}

/* Large Monitors: 1921px - 2560px */
@media (min-width: 1921px) and (max-width: 2560px) {
  .contribute-section {
    min-height: 600px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .contribute-2 {
    height: 100%;
  }

  .contribute-text {
    font-size: 46px;
  }

  .change-life {
    font-size: 26px;
  }

  .volunteer-actual-button {
    font-size: 17px;
  }

  .Volunteer-button p {
    font-size: 17px;
  }

  .contribute-join a {
    font-size: 17px;
  }

  .contribution-support1 h1,
  .contribution-support2 h1 {
    font-size: 21px;
  }

  .contribution-support1 p,
  .contribution-support2 p {
    font-size: 15px;
  }
}

/* Extra Large Monitors: 2561px and above */
@media (min-width: 2561px) {
  .contribute-section {
    min-height: 700px;
    max-width: 1800px;
    margin: 0 auto;
  }

  .contribute-2 {
    height: 100%;
  }

  .contribute-text {
    font-size: 52px;
  }

  .change-life {
    font-size: 30px;
  }

  .volunteer-actual-button {
    font-size: 18px;
  }

  .Volunteer-button p {
    font-size: 18px;
  }

  .contribute-join a {
    font-size: 18px;
    width: 140px;
  }

  .contribution-support1 h1,
  .contribution-support2 h1 {
    font-size: 22px;
  }

  .contribution-support1 p,
  .contribution-support2 p {
    font-size: 16px;
  }
}

/* ADDITIONAL UTILITY CLASSES FOR FONT SIZES */
.fs-giant {
  font-size: 40px;
}

.fs-sm-giant {
  font-size: 24px;
}

.fs-md-giant {
  font-size: 32px;
}

.fs-lg-giant {
  font-size: 42px;
}

.fs-xl-giant {
  font-size: 52px;
}

/* Media queries for font size utility classes */
@media (max-width: 320px) {
  .fs-lg-giant {
    font-size: 1.4rem;
  }
}

@media (min-width: 321px) and (max-width: 767px) {
  .fs-sm-giant {
    font-size: 28px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .fs-sm-giant {
    font-size: 32px;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .fs-sm-giant {
    font-size: 40px;
  }
  .profile-quote1-bot{
  margin-top: 2.5rem;
}

}

@media (min-width: 1441px) and (max-width: 1640px) {
  .fs-sm-giant {
    font-size: 38px;
  }
  .profile-quote1-bot{
  margin-top: 2.5rem;
}

}

@media (min-width: 1641px) and (max-width: 1920px) {
  .fs-sm-giant {
    font-size: 42px;
  }
  .profile-quote1-bot{
  margin-top: 2.5rem;
}

}

@media (min-width: 1921px) and (max-width: 2560px) {
  .fs-sm-giant {
    font-size: 46px;
  }
}

@media (min-width: 2561px) {
  .fs-sm-giant {
    font-size: 52px;
  }
}

.bg-wrapper {
  background-image: url('./assets/home/dev-man-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}

@media (max-width: 767px) {
  .bg-wrapper {
    background-position: left top;
  }
}


/*Learner Section*/
.learners-section {
  position: relative;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: white;
  /* background-image: url('./assets/home/dev-man-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; */
  z-index: 1;
  padding: 70px 0;
}

.learners {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 5;
}

.learn-head h1 {
  font-size: 40px;
  font-weight: 400;
  font-family: 'Basics Serif Free';
  margin: 0 0 20px 0;
  color: #fff;
}

.learn-grid1 {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.quote,
.profile-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #DCB9B9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-quote {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.profile-quote p {
  text-align: left;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.quote-grid1 {
  background-color: #7B3F50;
  border-radius: 20px;
  height: 350px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 8%;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-text {
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.img-grid1 {
  border-radius: 20px;
  height: 350px;
  overflow: hidden;
}

.img-grid1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.learn-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.quote-grid2 {
  background-color: #FBFAF8;
  border-radius: 20px;
  height: 350px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 8%;
  gap: 1.5rem;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.quote-grid3 {
  background-color: #3B252C;
  border-radius: 20px;
  height: 350px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 8%;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.img-grid2 {
  height: 350px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.img-grid2 img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.quote-grid2 .quote-text {
  color: rgba(0, 0, 0, 0.8);
}

.quote-grid2 .profile-quote p {
  color: #111;
}

.quote-grid3 .quote-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer Section */
.footer {
  color: #DCB9B9;
  font-family: "Plus Jakarta Sans", sans-serif;

  background-image: url('./assets/home/Footer.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;

  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-contents {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: 3rem; */
}

.rangoli-div {
  position: absolute;
  opacity: 0.05;
  right: 45%;
  bottom: 0;
  width: 60vw;
  z-index: 1;
}

.rangoli {
  height: 100%;
  width: 100%;
}

.rangoli img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 40% 30% 30%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  z-index: 2;
  position: relative;
}

.foot-grid1 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.links {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  padding: 1rem 0;
  margin: 0;
}

.links a {
  font-size: 16px;
  font-weight: 400;
  color: #DCB9B9;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.links a:hover {
  color: #fff;
}

.service-list {
  color: #DCB9B9;
}

.foot-cont1 {
  width: 100%;
}

.foot-cont1 p {
  line-height: 1.8;
  font-size: 16px;
  color: #DCB9B9;
  margin: 0;
}

.foot-logo {
  width: 120px;
  height: 120px;
}

.foot-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.foot-mail {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.mail-logo-cont {
  width: 48px;
  height: 48px;
  /* border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* .mail-logo {

} */

.mail-logo img {
  width: 100%;
  height: 100%;
}

.mail-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mail-links a {
  margin: 4px 0;
  font-size: 16px;
  color: #DCB9B9;
  text-decoration: none;
}

.mail-links a:hover {
  color: white;
}

.footer-sec2 {
  padding: 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
  position: relative;
}

.footer-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-line {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  margin: 0;
  margin-top: 0.5rem;
}

.designed-images {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.designed-images img {
  width: 100%;
  height: auto;
  display: block;
}

.foot-grid2 h3,
.foot-grid3 h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem 0;
}



.social-media h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon {
  text-decoration: none;
  color: #DA947F;
}


.social-icon:hover {
  background: #e0e0e0;
  transform: translateY(-3px);
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}


/* ==================== MEDIA QUERIES ==================== */

/* Very Small Phones: 200px - 320px */
@media (min-width: 200px) and (max-width: 320px) {

  /* Learners Section */
  .learners-section {
    padding: 40px 0;
  }

  .learn-head h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }

  .learn-grid1 {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .learn-grid2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quote-grid1,
  .quote-grid2,
  .quote-grid3,
  .img-grid1,
  .img-grid2 {
    height: 300px;
  }

  .quote,
  .profile-img {
    width: 40px;
    height: 40px;
  }

  .quote-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .profile-quote p {
    font-size: 14px;
  }

  /* Footer Section */
  .footer {
    padding: 40px 0 20px;
    background-image: none;
    background-color: #7B3F50;
  }

  .footer-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .foot-grid1 {
    gap: 1.25rem;
  }

  .foot-logo {
    width: 100px;
    height: 100px;
  }

  .foot-cont1 p {
    font-size: 14px;
    line-height: 1.6;
  }

  .mail-logo-cont {
    width: 40px;
    height: 40px;
  }

  .mail-logo {
    width: 40px;
    height: 40px;
  }

  .mail-links a {
    font-size: 14px;
  }

  .foot-grid2 h3,
  .foot-grid3 h3 {
    font-size: 18px;
  }

  .links a {
    font-size: 14px;
  }

  .footer-text {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .copy_rights {
    font-size: 12px;
  }

  .designed-images {
    height: 100px;
  }

  .social-media {
    margin-top: 25px;
  }

  .social-media h3 {
    font-size: 17px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .social-icon img {
    width: 18px;
    height: 18px;
  }
}

/* Small Phones to Tablets: 321px - 767px */
@media (min-width: 321px) and (max-width: 767px) {

  /* Learners Section */
  .learners-section {
    padding: 50px 0;
  }

  .learners {
    gap: 1.5rem;
  }

  .learn-head h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
  }

  .learn-grid1 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .learn-grid2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .quote-grid1,
  .quote-grid2,
  .quote-grid3,
  .img-grid1,
  .img-grid2 {
    height: 320px;
  }

  .quote,
  .profile-img {
    width: 44px;
    height: 44px;
  }

  .quote-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .profile-quote p {
    font-size: 15px;
  }

  /* Footer Section */
  .footer {
    padding: 50px 0 25px;
    background-image: none;
    background-color: #7B3F50;
  }

  .footer-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .foot-grid1 {
    gap: 1.5rem;
  }

  .foot-logo {
    width: 110px;
    height: 110px;
  }

  .foot-cont1 p {
    font-size: 15px;
    line-height: 1.6;
  }

  .mail-logo-cont {
    width: 44px;
    height: 44px;
  }

  .mail-logo {
    width: 44px;
    height: 44px;
  }

  .mail-links a {
    font-size: 15px;
  }

  .foot-grid2 h3,
  .foot-grid3 h3 {
    font-size: 19px;
  }

  .links a {
    font-size: 15px;
  }

  .footer-text {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .copy_rights {
    font-size: 13px;
  }

  .designed-images {
    height: 120px;
  }

  .social-media {
    margin-top: 25px;
  }

  .social-media h3 {
    font-size: 17px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .social-icon img {
    width: 18px;
    height: 18px;
  }
}

/* Tablets to Small Laptops: 768px - 1200px */
@media (min-width: 768px) and (max-width: 1200px) {

  /* Learners Section */
  .learners-section {
    padding: 60px 0;
  }

  .learners {
    gap: 2rem;
  }

  .learn-head h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .learn-grid1 {
    grid-template-columns: 60% 40%;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .learn-grid2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .quote-grid1,
  .quote-grid2,
  .quote-grid3,
  .img-grid1,
  .img-grid2 {
    height: 340px;
  }

  .quote,
  .profile-img {
    width: 46px;
    height: 46px;
  }

  .quote-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .profile-quote p {
    font-size: 16px;
  }

  /* Footer Section */
  .footer {
    padding: 60px 0 30px;
    height: 100vh;
    background-image: none;
    background-color: #7B3F50;
  }

  .footer-hero {
    grid-template-columns: 45% 25% 30%;
    gap: 2rem;
  }

  .foot-grid1 {
    gap: 1.5rem;
  }

  .foot-logo {
    width: 120px;
    height: 120px;
  }

  .foot-cont1 p {
    font-size: 16px;
    line-height: 1.7;
  }

  .mail-logo-cont {
    width: 46px;
    height: 46px;
  }

  .mail-logo {
    width: 46px;
    height: 46px;
  }

  .mail-links a {
    font-size: 16px;
  }

  .foot-grid2 h3,
  .foot-grid3 h3 {
    font-size: 20px;
  }

  .links a {
    font-size: 16px;
  }

  .copy_rights {
    font-size: 14px;
  }

  .designed-images {
    height: 150px;
  }

  .social-media {
    margin-top: 30px;
  }

  .social-media h3 {
    font-size: 18px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }
}

/* Medium Laptops: 1201px - 1440px */
@media (min-width: 1201px) and (max-width: 1440px) {

  /* Learners Section */
  .learners-section {
    padding: 70px 0;
  }

  .learn-head h1 {
    font-size: 36px;
  }

  .learn-grid1 {
    grid-template-columns: 65% 35%;
  }

  .quote-grid1,
  .quote-grid2,
  .quote-grid3,
  .img-grid1,
  .img-grid2 {
    height: 350px;
  }

  /* Footer Section */
  .footer {
    padding: 70px 0 30px 0;
    height: 100vh;
  }

  .foot-logo {
    width: 120px;
    height: 120px;
  }

  .foot-cont1 p {
    font-size: 16px;
  }

  .mail-links a {
    font-size: 16px;
  }

  .social-media {
    margin-top: 0;
  }

  .social-media h3 {
    font-size: 18px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }
}

/* Large Laptops: 1441px - 1640px */
@media (min-width: 1441px) and (max-width: 1640px) {

  /* Learners Section */
  .learners-section {
    padding: 80px 0;
  }

  .learn-head h1 {
    font-size: 38px;
  }

  .learn-grid1 {
    grid-template-columns: 70% 30%;
  }

  .quote-grid1,
  .quote-grid2,
  .quote-grid3,
  .img-grid1,
  .img-grid2 {
    height: 360px;
  }

  /* Footer Section */
  .footer {
    padding: 80px 0 35px;
    height: 100vh;
  }

  .foot-logo {
    width: 130px;
    height: 130px;
  }

  .foot-cont1 p {
    font-size: 17px;
  }

  .mail-links a {
    font-size: 17px;
  }

  .social-media {
    margin-top: 0;
  }

  .social-media h3 {
    font-size: 19px;
  }

  .social-icons {
    gap: 18px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }

  .social-icon img {
    width: 22px;
    height: 22px;
  }
}

/* Desktop Monitors: 1641px - 1920px */
@media (min-width: 1641px) and (max-width: 1920px) {

  /* Learners Section */
  .learners-section {
    padding: 90px 0;
  }

  .learn-head h1 {
    font-size: 42px;
  }

  .learn-grid1 {
    grid-template-columns: 70% 30%;
  }

  .quote-grid1,
  .quote-grid2,
  .quote-grid3,
  .img-grid1,
  .img-grid2 {
    height: 380px;
  }

  .quote-text {
    font-size: 20px;
  }

  /* Footer Section */
  .footer {
    padding: 90px 0 40px;
    height: 80vh;
  }

  .foot-logo {
    width: 140px;
    height: 140px;
  }

  .foot-cont1 p {
    font-size: 18px;
    line-height: 1.8;
  }

  .mail-links a {
    font-size: 18px;
  }

  .foot-grid2 h3,
  .foot-grid3 h3 {
    font-size: 22px;
  }

  .links a {
    font-size: 17px;
  }

  .social-media {
    margin-top: 0;
  }

  .social-media h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-icon img {
    width: 24px;
    height: 24px;
  }
}

/* Large Monitors: 1921px - 2560px */
@media (min-width: 1921px) and (max-width: 2560px) {

  /* Learners Section */
  .learners-section {
    padding: 100px 0;
  }

  .learn-head h1 {
    font-size: 46px;
  }

  .learn-grid1 {
    grid-template-columns: 70% 30%;
  }

  .quote-grid1,
  .quote-grid2,
  .quote-grid3,
  .img-grid1,
  .img-grid2 {
    height: 400px;
  }

  .quote-text {
    font-size: 22px;
  }

  .profile-quote p {
    font-size: 18px;
  }

  /* Footer Section */
  .footer {
    padding: 100px 0 45px;
    height: 70vh;
  }

  .foot-logo {
    width: 150px;
    height: 150px;
  }

  .foot-cont1 p {
    font-size: 19px;
    line-height: 1.8;
  }

  .mail-links a {
    font-size: 19px;
  }

  .foot-grid2 h3,
  .foot-grid3 h3 {
    font-size: 24px;
  }

  .links a {
    font-size: 18px;
  }

  .copy_rights {
    font-size: 16px;
  }

  .social-media {
    margin-top: 0;
  }

  .social-media h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .social-icons {
    gap: 22px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .social-icon img {
    width: 26px;
    height: 26px;
  }
}

/* Extra Large Monitors: 2561px and above */
@media (min-width: 2561px) {

  /* Learners Section */
  .learners-section {
    padding: 120px 0;
  }

  .learn-head h1 {
    font-size: 52px;
  }

  .learn-grid1 {
    grid-template-columns: 70% 30%;
    gap: 2rem;
  }

  .learn-grid2 {
    gap: 2rem;
  }

  .quote-grid1,
  .quote-grid2,
  .quote-grid3,
  .img-grid1,
  .img-grid2 {
    height: 450px;
  }

  .quote-text {
    font-size: 24px;
    line-height: 1.7;
  }

  .profile-quote p {
    font-size: 20px;
  }

  .quote,
  .profile-img {
    width: 60px;
    height: 60px;
  }

  /* Footer Section */
  .footer {
    padding: 120px 0 50px;
    max-width: 1600px;
    margin: 0 auto;
    height: 60vh;
  }

  .foot-logo {
    width: 160px;
    height: 160px;
  }

  .foot-cont1 p {
    font-size: 20px;
    line-height: 1.8;
  }

  .mail-links a {
    font-size: 20px;
  }

  .foot-grid2 h3,
  .foot-grid3 h3 {
    font-size: 26px;
  }

  .links a {
    font-size: 19px;
  }

  .copy_rights {
    font-size: 17px;
  }

  .mail-logo-cont {
    width: 56px;
    height: 56px;
  }

  .mail-logo {
    width: 56px;
    height: 56px;
  }

  .social-media {
    margin-top: 0;
  }

  .social-media h3 {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .social-icons {
    gap: 25px;
  }

  .social-icon {
    width: 52px;
    height: 52px;
  }

  .social-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1921px) and (max-width: 2560px) {}



.can_change_life {
  font-family: "Basics Serif Free", serif !important;
  font-size: 14px;
}

@media (min-width: 200px) and (max-width: 320px) {
  .can_change_life {
    font-size: 12px;
  }
}



@media (min-width: 321px) and (max-width: 767px) {
  .can_change_life {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .can_change_life {
    font-size: 14px;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .can_change_life {
    font-size: 10px !important;
  }
}

@media (min-width: 1441px) and (max-width: 1640px) {
  .can_change_life {
    font-size: 14px;
  }
}

@media (min-width: 1641px) and (max-width: 1920px) {
  .can_change_life {
    font-size: 14px;
  }
}

@media (min-width: 1921px) and (max-width: 2560px) {
  .can_change_life {
    font-size: 14px;
  }
}

@media (min-width: 2561px) {
  .can_change_life {
    font-size: 14px;
  }
}


/* PARALLAX SECTION - VERTICAL CAROUSEL */
.healing-parallax-wrapper {
  position: relative;
  height: 300vh;
}

.healing-parallax {
  position: sticky;
  top: 0;
  overflow: hidden;
  height: 100vh;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* background layer */
.parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/parallax-bg.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
  filter: contrast(.95) saturate(.95);
}

/* carousel wrapper */
.healing-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 10% 0%;
}

/* individual slides */
.healing-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.healing-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.healing-slide.prev {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

/* main content container on top of background */
.parallax-inner {
  position: relative;
  z-index: 6;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 4%;
}

/* layout row */
.content-row {
  display: flex;
  gap: 48px;
  align-items: center;
  min-height: auto;
  padding: 40px 0;
}

/* left image with curved top-right corner */
.left-image {
  width: 460px;
  height: 30rem;
  margin: 0;
  position: relative;
  z-index: 3;
  will-change: transform;
}

.left-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-top-right-radius: 120px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* right content */
.right-content {
  width: 50%;
  color: #fff;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  margin-left: 5%;
}

.eyebrow {
  font-family: "Basics Serif Free", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0;

  color: rgba(255, 255, 255, 0.98);
}

.big-title {
  font-family: "Basics Serif Free", serif;
  font-size: 36px;
  /* margin: 4px 0 6px; */
  color: #fff;
  letter-spacing: 0.4px;
  font-weight: 400;
  padding-bottom: 3%;
}

.desc {
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  color: #ffffff;
  width: 70%;
  line-height: 1.4;
  padding-bottom: 3%;
  letter-spacing: 0.6px;
}


.cta-outline {
  margin-top: auto;
  /* pushes CTA to bottom */
  display: flex;
  justify-content: left;
  padding-top: 6px;
}

.cta-outline-btn {
  /* background: #7b3450; */
  color: #fff;
  /* width: 40%; */
  padding: 2%;
  border-radius: 28px;
  border: 1px solid white;
  background-color: transparent;
  font-size: 14px;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  width: 50%;
}

.cta-outline-btn a {
  text-decoration: none;
  color: white;
}

/* pagination vertical dots */
.healing-dots {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.healing-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.healing-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.healing-dots .dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

/* small screens: stack and simplify parallax behavior */
@media (max-width: 992px) {
  .cta-outline-btn {
    width: 15rem;
    padding: 4%;
  }

  .content-row {
    flex-direction: column;
    gap: 28px;
    min-height: auto;
    padding: 36px 0;
  }

  .left-image {
    width: 86%;
    max-width: 760px;
    height: 20rem;
  }

  .right-content {
    width: 100%;
    text-align: center;
    align-items: center;
  }



  .parallax-bg {
    background-attachment: scroll;
  }

  /* disable fixed-like behavior */
}

/* safety: reduce heavy shadows on mobile */
@media (max-width: 576px) {
  .left-image img {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-radius: 18px;
  }

}

@media (min-width: 1640px) {
  .left-image {
    height: 40rem;
  }
}


.values-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 0 90px;
  /* top/bottom padding */
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial;
  color: #fff;
}

/* background image fullbleed (replace path) */
.values-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Video element styling */
.values-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  
  /* Ensure video covers the entire area */
  object-fit: cover;
  
  /* Performance optimization */
  will-change: transform;
  pointer-events: none;
}

/* Fallback if video doesn't load/play */
.video-fallback {
  position: absolute;
  inset: 0;
  background-image: url('./assets/home/bg_namaskar.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* soft peach overlay to match screenshot tone */
.values-overlay {
  position: absolute;
  inset: 0;
  background: rgb(218, 118, 93);
  /* peach tint; tweak as needed */
  mix-blend-mode: overlay;
  z-index: 1;
}

/* content container */
.values-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* centered paragraph */
.values-copy {
  width: 70%;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 44px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;

  font-weight: 400;
}

/* thin vertical rule (centered) — implemented as narrow rectangle */
.values-divider {
  width: 2px;
  height: 64px;
  background: rgba(255, 255, 255, 0.45);
  margin: 0 auto 34px;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) inset;
}

/* features list */
.values-list {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-right: 2rem;
}

/* single item */
.value-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  max-width: 220px;
}

/* icons */
.value-icon {
  width: 46px;
  height: 46px;
  color: #fff;
  stroke: rgba(255, 255, 255, 0.98);
  fill: none;
  transition: transform .18s ease, color .18s ease;
}

/* .value-item:hover .value-icon,
.value-item:focus-within .value-icon{
  transform: translateY(-6px);
  color: #fff;
} */

/* labels */
.value-label {
  display: block;
  font-size: 13px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

/* responsive */
@media (max-width: 992px) {
  .values-copy {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .values-list {
    gap: 28px;
  }

  .value-item {
    max-width: 160px;
  }
}

@media (max-width: 640px) {
  .values-section {
    padding: 48px 0;
  }

  .values-copy {
    font-size: 16px;
    text-align: center;
  }

  .values-divider {
    height: 46px;
    margin-bottom: 20px;
  }

  .values-list {
    flex-direction: column;
    gap: 18px;
    margin-left: 2rem;
    align-items: center;
  }

  .value-icon {
    width: 48px;
    height: 48px;
  }
}


.life-section {
  background: #faf8f6;
  padding: 0;
  overflow: hidden;
  color: #1a1a1a;
  font-family: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial;
}

/* make the two-column layout take a taller appearance on desktop */
.life-row {
  align-items: stretch;
  /* allow left image column to be tall */
  min-height: 560px;
}

/* LEFT column: big portrait area */
.life-left {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-color: #26382f;
  /* fallback */
  display: flex;
  align-items: center;
  justify-content: center;
}

.life-left .portrait {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background-image: url('./assets/home/life-bg2.png');
  /* replace */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  filter: saturate(.9) contrast(.92);
  /* optional subtle overlay */
  position: relative;
}

.life-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(38, 56, 47, 0.25) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(0, 0, 0, 0.10) 100%);
  pointer-events: none;
}

/* RIGHT column content */
.life-right {
  padding: 48px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.life-title {
  font-family: "Playfair Display", serif;
  color: #b02b3b;
  /* gradient-like feel, tweak as desired */
  font-weight: 700;
  font-size: 56px;
  line-height: 1.02;
  margin-bottom: 12px;
}

.life-title1 {
  color: #F37B7B;
  display: inline-block;
  width: 18rem;
  font-size: 95px;
}

.life-desc {
  color: #333;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 28px;
}

/* image group on the right column */
.life-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 8px;
  width: 100%;
}

.life-gallery .big {
  grid-column: 1 / -1;
  /* big image spans both columns */
  border-radius: 18px;
  /* overflow: hidden;
      box-shadow: 0 18px 40px rgba(0,0,0,0.08); */
}

.life-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.life-gallery .small {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* decorative leaf outline (optional) */
.life-decor {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 68px;
  height: 68px;
  opacity: 0.12;
  pointer-events: none;
}

/* CTA learn more (optional) */
.life-cta {
  margin-top: 20px;
  width: fit-content;
}

.btn-life {
  background: #7b3450;
  color: #fff;
  border-radius: 6px;
  padding: 10px 18px;
  border: none;
  font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .life-title {
    font-size: 36px;
    margin-top: 6px;
  }

  .life-title1 {
    font-size: 95px;
  }

  .life-row {
    min-height: auto;
  }

  .life-left {
    min-height: 280px;
  }

  .life-right {
    padding: 28px 18px;
  }

  .life-gallery {
    display: inline-flex;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .life-title {
    font-size: 28px;
  }

  .life-title1 {
    font-size: 32px;
  }

  .life-gallery {
    gap: 12px;
  }

  .life-gallery {
    display: inline-flex;
    flex-direction: column;
  }
}