@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;
}


/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
  overflow: hidden;
  background: #000;
  /* fallback */
}

/* background image layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url('./assets/images/detail1_banner_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  opacity: 0.7;
  /* 👈 reduce image opacity */
  z-index: 0;
}

/* content stays fully visible */
.hero>* {
  position: relative;
  z-index: 1;
}


.wrapper {
  margin-left: 6%;
  margin-right: 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: "Inter", sans-serif;
  font-weight: 400;
  transition: color 0.3s;
}

.custom-nav-menu a:hover {
  color: var(--primary);
}

/* 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: 8px;
  background-color: white;
  position: relative;
  transition: background-color 0.3s;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  width: 45px;
  height: 8px;
  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%;
  }

  .wrapper {
    margin-left: 3%;
    margin-right: 3%;
  }

  .hamburger-btn {
    display: block;
    padding: 15px;
  }

  .hamburger-icon {
    width: 20px;
    height: 3px;
  }

  .hamburger-icon::before,
  .hamburger-icon::after {
    width: 20px;
    height: 3px;
  }

  .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: 1rem;
    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;
    overflow: hidden;
  }

  .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: 1.2rem;
    padding: 12px;
    display: block;
    width: 100%;
  }

  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%;
  }

  .wrapper {
    margin-left: 4%;
    margin-right: 4%;
  }

  .hamburger-btn {
    display: block;
    padding: 18px;
  }

  .hamburger-icon {
    width: 25px;
    height: 4px;
  }

  .hamburger-icon::before,
  .hamburger-icon::after {
    width: 25px;
    height: 4px;
  }

  .hamburger-icon::before {
    top: -12px;
  }

  .hamburger-icon::after {
    top: 12px;
  }

  .custom-nav-logo {
    height: 50px;
  }

  .custom-nav-logo img {
    max-width: 140px;
  }

  /* Mobile Menu */
  .custom-nav-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    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;
    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%;
  }

  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;
  }

  .custom-nav-logo {
    height: 55px;
  }

  .custom-nav-menu {
    gap: 24px;
  }

  .custom-nav-menu a {
    font-size: 14px;
  }
}

/* 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;
  }
}

/* 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;
  }
}

/* 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;
  }
}

/* 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;
  }
}

/* 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;
  }
}

/* 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;
  }
}

/* HERO-CONTENT */
.hero-content {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 100px);
  /* Subtract navbar height */
  justify-content: flex-end;
  /* Push content to bottom */
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Hero title styling */
.hero-title {
  font-family: 'Basics Serif Free';
  font-size: 42px;
  font-weight: 700;
  width: 80%;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

/* Hero text styling */
.hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 30px;
  max-width: 600px;

  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Timings container */
.timings {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

/* Date and time containers */
.date,
.time {
  display: flex;
  align-items: flex-start;
  justify-content: center;

  font-family: "Plus Jakarta Sans", sans-serif;
  gap: 10px;
}

.date-img,
.time-img {
  width: 24px;
  height: 24px;
}

.date-img img,
.time-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Join button */
.join-button {
  display: flex;
  gap: 20px;
}

.join-button button {
  background-color: #7B3F50;
  color: #fff;
  border: none;
  padding: 12px 40px;
  width: 15%;
  font-size: 16px;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;

}

.join-button button:hover {
  background-color: #B8941F;
  /* Darker gold on hover */
}

/* Responsive adjustments for hero content */
@media (min-width: 200px) and (max-width: 320px) {
  .hero-content {
    padding-bottom: 20px;
    height: calc(100vh - 200px);
    /* Adjust for smaller navbar */
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .timings {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    margin-right: auto;
  }

  .join-button button {
    padding: 10px 25px;
    width: 8rem;
    font-size: 14px;
  }

  .sage-servant {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 321px) and (max-width: 767px) {
  .hero-content {
    padding-bottom: 30px;
    height: calc(100vh - 200px);
  }

  .hero-title {
    font-size: 30px;
    width: 100%;
    margin-bottom: 15px;
  }

  .hero-text {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .timings {
    gap: 20px;
    margin-bottom: 25px;
    margin-right: auto;
  }

  .join-button button {
    padding: 12px 28px;
    width: 8rem;
    font-size: 15px;
  }

  .sage-servant {
    margin-left: auto;
    margin-right: auto;
    font-size: 14px !important;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .hero-content {
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
    max-width: 500px;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .hero-content {
    padding-bottom: 60px;
  }



  .hero-text {
    font-size: 17px;
    max-width: 550px;
  }
}

@media (min-width: 1441px) and (max-width: 1640px) {
  .hero-content {
    padding-bottom: 70px;
    height: calc(100vh - 150px);
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text {
    font-size: 18px;
    max-width: 600px;
  }
}

@media (min-width: 1641px) and (max-width: 1920px) {
  .hero-content {
    padding-bottom: 180px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-text {
    font-size: 19px;
    max-width: 650px;
  }
}

@media (min-width: 1921px) and (max-width: 2560px) {
  .hero-content {
    padding-bottom: 180px;
  }

  .hero-title {
    font-size: 84px;
  }

  .hero-text {
    font-size: 20px;
    max-width: 700px;
  }
}

@media (min-width: 2561px) {
  .hero-content {
    padding-bottom: 100px;
  }

  .hero-title {
    font-size: 84px;
  }

  .hero-text {
    font-size: 22px;
    max-width: 750px;
  }
}



/* THE-MYSTIC section */

.the-mystic {
  padding: 8% 0;
  background: url(./assets/images/printed-bg.png);
}

.meet-the-mystic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  color: #000000;
}

.the-mystic-content {}

.mystic-text {
  gap: 2rem;
}

.mystic-title {
  font-family: 'Basics Serif Free';
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 52px;
}

.sage-servant {
  width: 80%;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
}

.the-bramarishi {
  width: 22rem;
  height: 22rem;
  margin-left: auto;
}

.the-bramarishi img {
  width: 100%;
  height: 100%;
}


@media (min-width: 200px) and (max-width: 320px) {
  .meet-the-mystic {
    grid-template-columns: 1fr;
  }

  .mystic-text {
    flex-direction: column;
  }

  .mystic-title {
    text-align: center;
    font-size: 30px;
  }

  .the-bramarishi {
    width: 15rem;
    height: 15rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 321px) and (max-width: 767px) {
  .meet-the-mystic {
    grid-template-columns: 1fr;
  }

  .mystic-text {
    flex-direction: column;
  }

  .mystic-title {
    text-align: center;
    font-size: 30px;
  }

  .the-bramarishi {
    width: 15rem;
    height: 15rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .meet-the-mystic {
    grid-template-columns: 1fr;
  }

  .mystic-text {
    flex-direction: column;
  }

  .mystic-title {
    text-align: center;
  }

  .the-bramarishi {
    width: 15rem;
    height: 15rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .mystic-title {
    font-size: 60px;
  }
}

@media (min-width: 1441px) and (max-width: 1640px) {
  .mystic-title {
    font-size: 60px;
  }
}

@media (min-width: 1641px) and (max-width: 1920px) {
  .mystic-title {
    font-size: 70px;
  }

  .unconditional-love,
  .sage-servant {
    font-size: 18px;
  }
}

@media (min-width: 1921px) and (max-width: 2560px) {
  .mystic-title {
    font-size: 70px;
  }

  .unconditional-love,
  .sage-servant {
    font-size: 18px;
  }
}

@media (min-width: 2561px) {
  .mystic-title {
    font-size: 70px;
  }

  .unconditional-love,
  .sage-servant {
    font-size: 18px;
  }
}


/* Quote Section */
.quote-by-bramarishi {
  background-color: #FAD998;
  min-height: 70vh;
  /* 🔥 important */
  padding: 2rem 0;
  align-items: center;
}

.quote-by-bramarishi .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.quote-div {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
}

.quote-ques {
  margin: 0;
  font-size: 20px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Instrument Serif", serif;
  font-weight: 500;
  font-style: italic;
}

.quote-by {
  margin: 0;
  font-size: 22px;

  padding-top: 5%;
  font-family: 'Basics Serif Free';
  font-weight: 600;
}


@media (max-width: 320px) {
  .quote-by-bramarishi {
    display: flex;
    align-items: center;
  }

  .quote-ques {
    font-size: 16px;
    line-height: 1.5;
  }

  .quote-ans {
    font-size: 15px;
  }

  .quote-by {
    font-size: 14px;
  }

}

@media (min-width: 321px) and (max-width: 767px) {
  .quote-by-bramarishi {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .quote-ques {
    font-size: 18px;
    line-height: 1.6;
  }

  .quote-ans {
    font-size: 16px;
  }

  .quote-by {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .quote-by-bramarishi {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quote-ques {
    font-size: 22px;
    line-height: 1.7;
  }

  .quote-ans {
    font-size: 18px;
  }

  .quote-by {
    font-size: 16px;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .quote-by-bramarishi {
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .quote-ans {
    font-size: 20px;
  }

  .quote-by {
    font-size: 17px;
  }
}

@media (min-width: 1441px) {
  .quote-ques {
    font-size: 22px;
    line-height: 1.2;
  }

  .quote-ans {
    font-size: 22px;
  }

  .quote-by {
    font-size: 18px;
  }

  .quote-by-bramarishi {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


/* event-grid section */
.event-highlights {
  padding: 4% 0;
}

.event-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.event-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.event-highlight-text {
  font-family: 'Basics Serif Free';
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 4%;
}

.event-grid {
  position: relative;
  height: 25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.event-grid img {
  width: 100%;
  height: 100%;
  object-fit: 100%;
  border-radius: 15px;
}

.event-text {
  position: absolute;
  bottom: 0;
}

.event-head {
  font-size: 18px;
  font-weight: 600;
  width: 90%;
  font-family: 'Basics Serif Free';
  margin-left: auto;
  margin-right: auto;
}

.event-para {
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}


@media (min-width: 200px) and (max-width: 320px) {
  .event-wrap {
    align-items: flex-start;
  }

  .event-highlight-text {
    font-size: 40px;
  }

  .event-grid-list {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }
}

@media (min-width: 321px) and (max-width: 767px) {
  .event-wrap {
    align-items: flex-start;
  }

  .event-highlight-text {
    font-size: 32px;
    width: 100%;
    margin-left: auto;
    text-align: center;
    margin-right: auto;
    margin-bottom: 10% !important;
  }

  .event-grid-list {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .event-highlights {
    padding: 10% 0;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .event-grid-list {
    display: grid;
    grid-template-columns: repeat(2, 40%);
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {}

@media (min-width: 1441px) and (max-width: 1640px) {
  .event-text {
    position: absolute;
    bottom: 1rem;
  }

  .event-grid {
    position: relative;
    height: 30rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: white;
  }

  .event-head {
    font-size: 18px;
    font-weight: 700;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .event-para {
    font-size: 14px;
    font-weight: 400;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 1641px) and (max-width: 1920px) {
  .event-text {
    position: absolute;
    bottom: 1rem;
  }

  .event-grid {
    position: relative;
    height: 35rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: white;
  }

  .event-head {
    font-size: 20px;
    font-weight: 700;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .event-para {
    font-size: 15px;
    font-weight: 400;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 1921px) and (max-width: 2560px) {
  .event-grid {
    position: relative;
    height: 45rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: white;
  }

  .event-head {
    font-size: 22px;
    font-weight: 700;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .event-para {
    font-size: 20px;
    font-weight: 400;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 2561px) {
  .event-grid {
    position: relative;
    height: 30rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: white;
  }

  .event-head {
    font-size: 24px;
    font-weight: 700;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .event-para {
    font-size: 21px;
    font-weight: 400;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}



/* DETAIL BENEFITS */
/* DETAIL BENEFITS */
.detail-benefits {
  position: relative;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.detail-benefits-bg {
  position: relative;
  height: 120vh;
  background-image: url("./assets/details/detail-benefits-bg.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY PANEL */
.benefits-overlay {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  color: #fff;
}

/* TITLE */
.benefits-title {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Basics Serif Free';
  margin-bottom: 2rem;
  text-align: center;
}

/* GRID - CONVERTED TO CSS GRID */
.benefits-grid {
  display: grid;
  gap: 0;
  width: 100%;
}

/* CARD */
.benefit-card {
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
}

/* ICON */
.benefit-card img {
  width: 34px;
  margin-bottom: 0.5rem;
}

/* TEXT */
.benefit-card p {
  font-size: 12px;
  line-height: 1.3;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* OUTER CORNERS ONLY */
.benefits-grid>*:nth-child(1) .benefit-card {
  border-top-left-radius: 14px;
}

.benefits-grid>*:nth-child(3) .benefit-card {
  border-top-right-radius: 14px;
}

.benefits-grid>*:nth-child(7) .benefit-card {
  border-bottom-left-radius: 14px;
}

.benefits-grid>*:nth-child(9) .benefit-card {
  border-bottom-right-radius: 14px;
}

/* FLOATING LEAF */
.floating-leaf {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
}

/* RESPONSIVE BREAKPOINTS */

/* Extra small screens: 2 columns */
@media (min-width: 200px) and (max-width: 320px) {
  .detail-benefits-bg {
    height: 100%;
    min-height: auto;
    padding: 2rem 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card {
    height: 90px;
    padding: 0.8rem;
  }

  .benefits-overlay {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transform: none;
    margin: auto;
    padding: 0;
    height: 80%;
  }

  .benefits-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

/* Small screens: 2 columns */
@media (min-width: 321px) and (max-width: 767px) {
  .detail-benefits-bg {
    height: 100%;
    min-height: auto;
    padding: 2rem 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-overlay {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transform: none;
    margin: auto;
    padding: 0 0 10% 0;
  }

  /* Reset border radii for 2-column layout */
  .benefits-grid>*:nth-child(1) .benefit-card {
    border-top-left-radius: 14px;
  }

  .benefits-grid>*:nth-child(2) .benefit-card {
    border-top-right-radius: 14px;
  }

  .benefits-grid>*:nth-child(odd):last-child .benefit-card,
  .benefits-grid>*:nth-child(even):last-child .benefit-card {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
  }

  /* Specifically for 9 items in 2 columns */
  .benefits-grid>*:nth-child(7) .benefit-card {
    border-bottom-left-radius: 0;
  }

  .benefits-grid>*:nth-child(8) .benefit-card {
    border-bottom-right-radius: 0;
  }

  .benefits-grid>*:nth-child(9) .benefit-card {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    grid-column: span 2;
  }

  .benefits-title {
    font-size: 32px !important;
    padding-top: 5%;
    margin-bottom: 1.5rem;
  }
}

/* Medium screens: 3 columns */
@media (min-width: 768px) and (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-benefits-bg {
    height: 80vh;
    padding: 3rem 0;
  }

}

/* Large screens: 3 columns */
@media (min-width: 1201px) and (max-width: 1440px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-overlay {
    width: 45%;
    right: 5%;
  }
}

/* Extra large screens: 3 columns */
@media (min-width: 1441px) and (max-width: 1640px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-overlay {
    width: 40%;
    right: 5%;
  }

  .benefit-card {
    height: 120px;
  }
}

/* 2K screens: 3 columns */
@media (min-width: 1641px) and (max-width: 1920px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-overlay {
    width: 35%;
    right: 8%;
  }

  .benefit-card {
    height: 130px;
    padding: 1.5rem;
  }

  .benefits-title {
    font-size: 3rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }
}

/* 2.5K screens: 3 columns */
@media (min-width: 1921px) and (max-width: 2560px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-overlay {
    width: 30%;
    right: 10%;
    padding: 3rem;
  }

  .benefit-card {
    height: 150px;
    padding: 2rem;
  }

  .benefits-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }

  .benefit-card p {
    font-size: 1rem;
  }

  .benefit-card img {
    width: 32px;
  }
}

/* 4K+ screens: 3 columns */
@media (min-width: 2561px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-overlay {
    width: 25%;
    right: 12%;
    padding: 4rem;
  }

  .benefit-card {
    height: 180px;
    padding: 2.5rem;
  }

  .benefits-title {
    font-size: 4rem;
    margin-bottom: 4rem;
  }

  .benefit-card p {
    font-size: 1.2rem;
  }

  .benefit-card img {
    width: 40px;
    margin-bottom: 1rem;
  }
}



/* 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;
  }

  /* Adjust footer background to show through the overlap */
  .footer::before {
    content: '';
    position: absolute;
    top: -20%;
    /* Adjust based on how much of the footer bg you want to show above */
    left: 0;
    right: 0;
    height: 120%;
    /* Extend the background upward */
    background: inherit;
    /* Inherit the footer's background */
    z-index: -1;
  }

  .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;
  }

  /* Adjust footer background to show through the overlap */
  .footer::before {
    content: '';
    position: absolute;
    top: -20%;
    /* Adjust based on how much of the footer bg you want to show above */
    left: 0;
    right: 0;
    height: 120%;
    /* Extend the background upward */
    background: inherit;
    /* Inherit the footer's background */
    z-index: -1;
  }

  .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;
  }

  /* Adjust footer background to show through the overlap */
  .footer::before {
    content: '';
    position: absolute;
    top: -20%;
    /* Adjust based on how much of the footer bg you want to show above */
    left: 0;
    right: 0;
    height: 120%;
    /* Extend the background upward */
    background: inherit;
    /* Inherit the footer's background */
    z-index: -1;
  }

  .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;
  }

  /* Adjust footer background to show through the overlap */
  .footer::before {
    content: '';
    position: absolute;
    top: -20%;
    /* Adjust based on how much of the footer bg you want to show above */
    left: 0;
    right: 0;
    height: 120%;
    /* Extend the background upward */
    background: inherit;
    /* Inherit the footer's background */
    z-index: -1;
  }

  .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;
  }

  /* Adjust footer background to show through the overlap */
  .footer::before {
    content: '';
    position: absolute;
    top: -20%;
    /* Adjust based on how much of the footer bg you want to show above */
    left: 0;
    right: 0;
    height: 120%;
    /* Extend the background upward */
    background: inherit;
    /* Inherit the footer's background */
    z-index: -1;
  }

  .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;
  }

  /* Adjust footer background to show through the overlap */
  .footer::before {
    content: '';
    position: absolute;
    top: -20%;
    /* Adjust based on how much of the footer bg you want to show above */
    left: 0;
    right: 0;
    height: 120%;
    /* Extend the background upward */
    background: inherit;
    /* Inherit the footer's background */
    z-index: -1;
  }

  .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) {}

/* Enrollment modal + OTP flow */
.enroll-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 2000;
}

.enroll-modal.active {
  opacity: 1;
  visibility: visible;
}

.enroll-modal__content {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  max-height: 92vh;
  overflow-y: auto;
}

.enroll-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #7B3F50;
  cursor: pointer;
  line-height: 1;
}

.enroll-modal__header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 4px 0 8px;
}

.enroll-modal__eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: #a45d6a;
  margin-bottom: 2px;
  font-weight: 700;
}

.enroll-modal__course {
  color: #7B3F50;
  font-weight: 600;
  margin-bottom: 8px;
}

.enroll-modal__subtitle {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.enroll-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.enroll-form label {
  font-weight: 600;
  color: #2d2d2d;
  font-size: 14px;
}

.enroll-form input {
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enroll-form input:focus {
  border-color: #7B3F50;
  box-shadow: 0 0 0 3px rgba(123, 63, 80, 0.15);
}

.enroll-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #7B3F50 0%, #b36b78 100%);
  cursor: pointer;
  margin-top: 4px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.enroll-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(123, 63, 80, 0.25);
}

.enroll-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  min-height: 22px;
  margin-top: 8px;
  font-size: 14px;
}

.message {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.message.success {
  background: #eaf7ef;
  color: #1f7a51;
  border-color: #b6dfc8;
}

.message.error {
  background: #fff1f1;
  color: #c0392b;
  border-color: #f3c7c5;
}

.loading {
  width: 18px;
  height: 18px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #7B3F50;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .enroll-modal__content {
    padding: 22px;
  }

  .enroll-modal__header h3 {
    font-size: 22px;
  }
}

/* Map section - push it down by 80% of footer height */
.detail-benefits {
  position: relative;
  z-index: 1;
  height: 100%;
  margin-bottom: -5%;
  /* Creates the overlap - adjust this value to control overlap amount */
}

/* Map iframe adjustments */
.map iframe {
  display: block;
}

/* Footer section - bring it up to overlap with map */
.footer {
  position: relative;
  z-index: 2;
  /* Remove any negative margins if previously set */
  margin-top: 0;
}


/* Optional: Add a smooth transition between map and footer */
.footer .wrapper {
  padding-top: 40px;
  /* Adjust this to create space for the overlapped content */
}

/* For better visual appearance */
.map {
  overflow: hidden;
  border-radius: 0;
  /* Remove any rounded corners if present */
}

.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: 12px !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;
  }
}