* {
  margin: 0;
  font-family: sans-serif;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  /* background-color: rgba(255, 246, 194, 0.4); */
  background-color: rgba(255, 249, 217, 0.6);
}
section {
  padding: 30px 0;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  line-height: 8mm;
  margin-top: 8mm;

}

.heading h1 {
  font-size: 30px;
  text-transform: uppercase;
}

.heading h1::before,
.heading h1::after {
  content: "";
  width: 50px;
  height: 2px;
  background: rgb(46, 111, 64);
  display: inline-block;
}

.heading h1::before {
  margin: 0 15px 10px 0;
}

.heading h1::after {
  margin: 0 0 10px 15px;
}

.heading p {
  font-style: italic;
  font-family: Arial, Helvetica, sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  opacity: 1;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #68ba74;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  text-decoration: none;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2e6f40;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);

}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 22px 0;
}

#header .logo img {
  height: 2cm;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}
#header .logo h1 span{
  display: none;
}
#header .navbar h1{
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  /* text-align: center; */
  margin-left: 25px;
  margin-bottom: -1mm;
  color: #e65213;
  padding-bottom: 5px;
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}
/* @media (max-width: 1200px) {
  #header .logo h1 {
    font-size: 16px;
  }
  #header .logo h1 span{
    margin-left: -6mm;
  }
} */
@media (max-width: 768px) {

  /* Reduce header padding on mobile */
  #header {
    padding: 15px 0;
  }

  /* Adjust logo size for smaller screens */
  #header .logo img {
    height: 1.5cm;
  }

  /* Decrease font size for the header text */
  #header .logo h1 {
    font-size: 24px;
  }

  /* Ensure the logo title remains centered on mobile */
  #header .logo h1 {
    text-align: center;
  }
  #header .logo h1 span{
    display: unset;
  }
  #header .navbar h1{
    display: none;
  }

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  display: block;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  height: 2cm;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: 600;
  color: #555555;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

/* .navbar a::before{
  content: '';
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 3mm;
  background-color: #222222;
} */
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: rgb(104, 186, 116);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: rgb(104, 186, 116);
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: rgb(104, 186, 116);
}



@media (max-width: 1366px) {
  .navbar ul {
    height: unset;
  }

  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}


.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: rgba(0, 146, 129, 0.8);
  ;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* hero */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/hero-background.jpg');
  background-position-y: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  color: #fff;
  text-align: center;
  margin-top: 2cm;
}

.hero .hero-content {
  position: relative;
  margin-left: 10%;
  z-index: 2;
}

.hero .hero-content h1 {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: monospace;
}

.hero .hero-content h6 {
  font-size: 1.3rem;
  margin-top: 10px;
  font-weight: 400;
  font-family: cursive;
}

.hero .hero-content a {
  text-decoration: none;
}

.hero .hero-content a button {
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  padding: 20px;
  width: 50%;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 8mm;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.5s;
}

.hero .hero-content a button:hover {
  background-color: #fff;
}

.hero .quotes {
  width: 30%;
  font-style: italic;
  line-height: 8mm;
  margin-top: 10%;
}

.hero .quotes p {
  font-size: 18px;
  text-align: justify;
}

.hero .quotes i {
  float: right;
}

/* why choose us*/
.choose-us .content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: justify;
  height: 10cm;
  padding: 20px;
}

.choose-us .content img {
  width: 25%;
  height: 100%;
}

.choose-us .content div {
  width: 45%;
  line-height: 8mm;
  font-size: 15px;
  font-family: sans-serif;
}

.choose-us .view-more {
  background: none;
  outline: none;
  border: none;
  padding: 5px;
  width: 30%;
  color: #fff;
  background: #333333;
  transition: 0.5s;
  font-weight: bold;
}

.choose-us .view-more:hover {
  background: #000;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
  margin: 1cm 0 0 0;
}

.counts img {
  border-radius: 50% 50% 0 50%;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #2e6f40;
  float: left;
  line-height: 0;
}

.counts .content .count-box span {
  font-size: 40px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #484848;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #6f6f6f;
}

/* Upcoming Events */
.upcoming-events .card {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 8mm;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
}

.upcoming-events .card .cover-img {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: stretch;
  cursor: pointer;
}

.upcoming-events .card .cover-img img {
  width: 100%;
  height: 100%;
}

.upcoming-events .card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.upcoming-events .card .content h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 8mm;
}

.upcoming-events .card .content .discription {
  font-size: 14px;
  margin-bottom: 10px;
  /* Adds spacing between elements */
}

.upcoming-events .card .content .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8mm;
}

.upcoming-events .card .content .row .col {
  border-left: 1px solid rgba(17, 17, 17, 0.3);
  padding-left: 10px;
  flex: 1;
  min-width: 0;
  text-align: center;
  height: fit-content;
}

.upcoming-events .card .content .row .col:first-child {
  border-left: none;
}

.upcoming-events .card .content .row .cover {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upcoming-events .card .content .row .cover i {
  font-size: 35px;
  color: #2e6f40;
}

.upcoming-events .card .content .row .cover .card-text {
  font-size: 12px;
  padding-left: 5px;
}

.upcoming-events .card .content .register-link {
  margin-top: auto;
  text-align: right;
}

.upcoming-events .card .content .register-link a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #007bff;
  transition: color 0.3s ease-in-out;
}

.upcoming-events .card .content .register-link a:hover {
  color: #0056b3;
}

/* Responsive Fixes */
@media (max-width: 1000px) {
  .upcoming-events .card {
    flex-direction: column;
  }

  .upcoming-events .card .cover-img {
    max-height: 250px;
    overflow: hidden;

  }

  .upcoming-events .card .content .row {
    flex-direction: column;
    gap: 5px;
  }

  .upcoming-events .card .content .row .col {
    border-left: none;
    border-top: 1px solid #111;
    padding-top: 5px;
  }

  .upcoming-events .card .content .row .col:first-child {
    border-top: none;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: rgb(207, 255, 220);
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: linear-gradient(45deg, #68ba74, #68ba74);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #68ba74;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #111;
}

.services .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #68ba74;
}

/* about yoga */
.about-yoga .content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: justify;
  height: 8cm;
  padding: 20px;
}

.about-yoga .content img {
  height: 100%;
}

.about-yoga .content div {
  width: 45%;
  line-height: 8mm;
  font-size: 15px;
  font-family: sans-serif;
}

/*--------------------------------------------------------------
# Mobile Responsiveness
--------------------------------------------------------------*/

/* General mobile styles */
@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }


  section {
    padding: 20px 0;
  }

  /* Heading Container */
  .heading {
    padding: 15px;
    margin-top: 5mm;
  }

  /* Heading */
  .heading h1 {
    font-size: 24px;
    text-align: center;
  }

  /* Horizontal Line in Heading */
  .heading h1::before,
  .heading h1::after {
    width: 30px;
  }

  .heading h1::before {
    margin: 0 10px 8px 0;
  }

  .heading h1::after {
    margin: 0 0 8px 10px;
  }

  /* Paragraph under Heading */
  .heading p {
    font-size: 14px;
    text-align: center;
  }

  /* Hero Section */
  .hero {
    height: auto;
    margin-top: 2cm;
    padding: 20px;
    flex-direction: column;
    background-position-x: 100%;
    background-size: cover;
  }

  .hero .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero .hero-content h6 {
    font-size: 1.1rem;
  }

  .hero .hero-content a button {
    width: 80%;
    padding: 15px;
    font-size: 14px;
  }

  .hero .quotes {
    width: 100%;
    margin-top: 20px;
  }

  .hero .quotes p {
    font-size: 16px;
  }

  /* Why Choose Us Section */
  .choose-us .content {
    flex-direction: column;
    height: auto;
  }

  /* Adjust image size to fit within mobile layout */
  .choose-us .content img {
    width: 100%;
    height: 50vh;
    margin-bottom: 20px;
  }

  /* Adjust the text section width and font size */
  .choose-us .content div {
    width: 100%;
    font-size: 14px;
    line-height: 6mm;
  }

  /* Make the "view more" button full-width on mobile */
  .choose-us .view-more {
    margin-top: 20px;
  }

  /* Counts Section */
  .counts .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 15px;
  }

  .counts .image img {
    height: 200px;
  }

  .counts .content .count-box {
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
    text-align: center;
  }

  .counts .content .count-box i {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .counts .content .count-box span {
    font-size: 30px;
  }

  /* Upcoming Events */
  .upcoming-events .card {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .upcoming-events .card .cover-img {
    height: 250px;
  }

  .upcoming-events .card .content .row {
    flex-direction: column;
    padding: 10px;
  }

  .upcoming-events .card .content .row .col {
    border-left: none;
    border-top: 1px solid rgba(17, 17, 17, 0.3);
    padding-top: 5px;
    text-align: center;
    padding: 10px;
  }

  .upcoming-events .card .content .register-link {
    text-align: center;
  }

  /* Services Section */
  .services .icon-box {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
  }

  .services .icon-box::before {
    width: 80px;
    height: 80px;
  }

  .services .icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .services .title {
    font-size: 16px;
  }

  .services .description {
    font-size: 12px;
  }

  /* About Yoga Section */
  .about-yoga .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
  }

  .about-yoga .content img {
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    order: 1;
  }

  .about-yoga .content div {
    width: 90%;
    font-size: 14px;
    line-height: 6mm;
    margin-top: 15px;
    order: 2;
    border-bottom: 1px #dddcdc solid;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-wrapper {
  padding: 1cm 0 1cm 0;
}

.contact {
  margin-top: 3cm;
  padding: 0;
}

.contact .contact-about h3 {
  font-size: 28px;
  margin: 0 0 8mm 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
}

.contact .info .contact-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5mm;
}

.contact .info .contact-info i {
  font-size: 25px;
  color: #2e6f40;

}

.contact .info .contact-info a {
  text-decoration: none;
  color: #111;
}

.contact .info .contact-info p {
  line-height: 28px;
  font-size: 14px;
  margin: 0;
  padding-left: 10px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #2e6f40;
  line-height: 1;
  padding: 8px;
  margin-right: 4px;
  border-radius: 50%;
  border: 1px solid rgba(46, 111, 64, 0.9);
  text-align: center;
  transition: 0.3s;
  margin-top: 3mm;
}

.contact .social-links a:hover {
  background: rgba(46, 111, 64);
  color: #fff;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .feedback h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 5mm 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
  background: none;
  border: 1px solid black;

}


.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #2e6f40;
  box-shadow: 0 0 10px rgba(46, 111, 64, 0.5);
}

.contact .php-email-form button[type=submit] {
  border: 1px solid #68ba74;
  background-color: rgba(104, 186, 116);
  width: 50%;
  padding: 10px 24px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-info a {
  text-decoration: none;
}

.contact-info a:hover {
  font-weight: 505;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(104, 186, 116, 0.8);
}

.contact .php-email-form button[type=submit]:focus {
  outline: none;
  border: 1px solid #68ba74;
  background: rgba(104, 186, 116, 0.8);
  box-shadow: 0 0 10px rgba(46, 111, 64, 0.5);
}

.contact .map iframe {
  width: 100%;
  height: 40vh;
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 0 0 1cm 0;
  }

  .contact .contact-about h3 {
    margin-bottom: 5mm;
    text-align: center
  }

  .contact .contact-about p {
    text-align: justify;
  }

  .contact .feedback {
    margin-top: 8mm;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #222222;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  padding-top: 5px;
  color: #222222;
}

#footer .footer-links a {
  color: #222222;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: rgb(104, 186, 116);
}

@media (max-width: 768px) {
  #footer {
    line-height: 8mm;
    font-size: 13px;
    padding: 5px;
  }
}

/* About us */
.about {
  margin-top: 2cm;
}

.about .box {
  margin-bottom: 1cm;
}

.about .content,
.about .vision-mission {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: justify;
  padding: 20px;
  width: 100%;
}

.about .about-us .cover-img {
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
}
.about .content img{
  width: 60%;
}
.about .content img,
.about .vision-mission img,
.about .goals img {
  height: 100%;
}

.about .content div,
.about .vision-mission .cover {
  width: 100%;
  line-height: 8mm;
  font-size: 15px;
}

.about .take-next {
  background: linear-gradient(rgba(2, 78, 55, 0.7), rgba(2, 78, 55, 0.7)), url('./images/events.png');
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.about .take-next .heading h1 {
  font-size: 25px;
}

.about .take-next .heading h1::before,
.about .take-next .heading h1::after {
  background-color: rgba(255, 255, 255, 0.5);
}

.about .vision-mission {
  margin-top: 8mm;
}

.about .vision-mission h3 {
  font-weight: 800;
  font-size: 18px;
  color: #111;
}

.about .vision-mission h3::before,
.about .vision-mission h3::after,
.about .goals .wrapper .cover div h3::before {
  content: '';
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 100px;
  background-color: #68ba74;
  margin: 0 0 2px 5px;
}

.about .vision-mission h3::before,
.about .goals .wrapper .cover div h3::before {
  margin: 0 5px 2px 0;
}

.about .goals {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
}

.about .goals .wrapper {
  width: 45%;
}

.about .goals .wrapper h3 {
  font-weight: 800;
  font-size: 18px;
  color: #111;
  width: fit-content;
}

.about .goals .wrapper h3::after {
  content: '';
  display: block;
  height: 2px;
  width: 40%;
  background-color: #68ba74;
  margin: 1mm 0 0 10px;
}

.about .goals .wrapper .cover div h3 {
  font-size: 16px;
  font-weight: 600;
}

.about .goals .wrapper .cover div h3::before {
  height: 8px;
  width: 8px;
  border-radius: 100px 0 0 100px;
}

.about .goals .wrapper .cover div h3::after {
  display: none;
}

.about .goals .wrapper .cover div {
  margin-left: 10px;
}

.about .goals .wrapper .cover div p {
  line-height: 8mm;
  font-size: 14px;
  margin-left: 10px;
}

@media (max-width: 991px) {

  .about .content,
  .about .vision-mission {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: justify;
    padding: 0;
  }

  .about .about-us .cover-img {
    width: 100%;
    margin-bottom: 5mm;
    padding: 20px;
  }

  .about .about-us .cover-img img {
    width: 100%;
    height: 50vh;
  }

  .about .content div,
  .about .vision-mission .cover {
    width: 90%;
    font-size: 14px;
    line-height: 6mm;
  }

  .about .goals {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .about .goals .wrapper {
    width: 90%;
    margin-bottom: 1cm;
  }

  .about .goals .wrapper h3 {
    font-size: 16px;
  }

  .about .goals .wrapper .cover div p {
    font-size: 12px;
  }

  .about .take-next .heading h1 {
    font-size: 20px;
  }

  .about .take-next .heading h1::before,
  .about .take-next .heading h1::after {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .about .vision-mission h3 {
    font-size: 16px;
  }

  .about .vision-mission .cover-img,
  .about .goals .cover-img {
    display: none;
  }
}

/* yoga-practices */
.yoga-practices {
  margin-top: 2cm;
}

.yoga-practices .content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: justify;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.yoga-practices .content img {
  height: 8cm;
}

.yoga-practices .content div {
  width: 45%;
  line-height: 8mm;
  font-size: 15px;
  font-family: sans-serif;
}

.yoga-practices .content div h5 {
  font-weight: bold;
  font-size: 16px;
}

.yoga-practices .content div p {
  margin-left: 5px;
  font-size: 14px;
}

.yoga-practices .content div ol,
.yoga-practices .content div ul {
  line-height: 7mm;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .yoga-practices .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .yoga-practices .content div {
    order: 2;
    border-bottom: 1px #dddcdc solid;
  }

  .yoga-practices .content img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    margin-top: 15px;
    order: 1;
  }

  .yoga-practices .content div {
    width: 100%;
    padding: 15px;
  }

  .yoga-practices .content div h3 {
    font-size: 18px;
  }

  .yoga-practices .content div p {
    font-size: 14px;
    line-height: 1.5;
  }

  .yoga-practices .content div ol,
  .yoga-practices .content div ul {
    text-align: left;
    padding-left: 20px;
  }
}

.gallery {
  margin-top: 2cm;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  z-index: 1000;
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  display: block;
  margin: auto;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.lightbox.show img {
  transform: scale(1);
  opacity: 1;
}

.lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #999;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.lightbox .close-btn i {
  font-size: 30px;
}

.lightbox i {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #999;
  z-index: 1;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.lightbox i:hover {
  color: #fff;
}

.lightbox i:hover {
  transform: scale(1.1);
}

#prev-btn {
  left: 10px;
  transform: translateY(-50%);
}

#next-btn {
  right: 10px;
  transform: translateY(-50%);
}

#gallery-container h3 {
  font-size: 20px;
  font-weight: 600;
}

#gallery-container p {
  font-size: 14px;
}

#gallery-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 15px;
}

#gallery-container img:hover {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  #gallery-container img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 577px) {
  #gallery-container img {
    width: 100%;
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  #gallery-container img {
    max-width: 300px;
  }
}

/* 404 */
.page-404 {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
}

.page-404 h1 {
  font-size: 100px;
}

.page-404 h3 {
  font-size: 30px;
  text-transform: uppercase;
}

.page-404 img {
  height: 150px;
}