:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

p {
  font-size: 16px;
  line-height: 29px;
  color: #000;
  text-align: justify;
}

.notice-bar {
  position: relative;
  width: 100%;
  height: 35px;
  background-color: #fff8e1;
  border-top: 1px solid #f0e6c0;
  border-bottom: 1px solid #f0e6c0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-wrapper {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

.notice-text {
  display: flex;
}

.notice-text li {
  list-style: none;
  display: inline-block;
  padding: 0 12px;
  color: #000;
  border-right: 1px solid #ccc;
  margin-top: 12px;
}

.notice-text a {
  color: #630000;
  text-decoration: none;
  font-size: 14px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about p {
  text-align: center;
  font-size: 17px;
  width: 90%;
  margin: 0 auto;
}

h2 {
  position: relative;
  font-size: 25px;
  font-weight: 700;
  color: #630000;

  margin-bottom: 0;
}

.section-header img {
  width: 25%;
  margin-bottom: 10px;
}

h3 {
  font-size: 27px;
}
.about h2 {
  font-size: 24px;
}
h3,
h4,
h5,
h6 {
  color: #000;
}
.all-events {
  text-align: right;
  margin-bottom: 10px;
}
.anshan img {
  border-radius: 5px;
}

.andolan .card {
  min-height: 280px;
}

.andolan .card p {
  text-align: center;
}

.banner {
  position: relative;
  display: inline-block;
  width: 100%;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

.banner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2; /* Ensures text appears above the overlay */
  font-size: 27px;
  font-weight: 600;
  text-align: center;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 20px 0;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #630000;
}

#hero .carousel .carousel-control-prev,
#hero .carousel .carousel-control-next {
  background-color: transparent;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
}

#hero .carousel .carousel-control-prev {
  left: 8%;
}
#hero .carousel .carousel-control-next {
  right: 8%;
}
.book-store {
  background: linear-gradient(to left, #fff3f3 4%, #f8f5f5 46%, #ffffff 100%);
}

#card-1 .card-img {
  height: 648px;
}
.home-gllery .col-md-5 {
  padding-right: 0px;
}
.home-gllery .col-md-6,
.home-gllery .col-md-7 {
  padding-right: 0px;
}
.home-gllery .row.mt-3 {
  margin-top: 11px !important;
}

.bottom-galllery img {
  height: 236px;
  width: 100%;
}
.viral-title {
  width: 100%;
  padding: 20px;
}
.viral-title .btn-read-more {
  color: #ffffff;
  font-weight: 500;
  background: #630000;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  width: 100%;
}
.viral-title h6 {
  font-size: 15px;
  min-height: 47px;
  line-height: 22px;
}
.vid-btn {
  text-align: center;
  position: absolute;
  top: 20%;
  margin: auto;
  transform: translate(-50%, -50%);
  left: 34%;
  right: 50px;
  width: 14%;
}
.vid-btn .bi-play {
  font-size: 36px;
  margin-left: 5px;
  margin-top: 3px;
  float: left;
  line-height: 34px;
}
.vid-btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}
.vid-btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s;
}
.vid-btn a {
  display: inline-block;
  width: 41px;
  height: 41px;
  line-height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #ff6015;
  position: relative;
  z-index: 1;
}
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

#hero .carousel .carousel-control-prev,
#hero .carousel .carousel-control-next {
  top: 50% !important;
}
.viral-video p {
  display: none !important;
}

/* .viral-video p{
  font-size: 14px;
  line-height: 20px;
} */

.section-header {
  text-align: center;
  margin-bottom: 10px;
}

.section-header h2 {
  letter-spacing: 1px;
}

.viral-title .btn-read-more:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .section-header p {
    line-height: 24px;
  }

  .hero .custom-carousel-control i {
    font-size: 15px;
    padding: 2px 5px !important;
  }

  .hero .carousel-control-prev {
    right: 42px;
  }

  .header .logo img {
    max-height: 45px !important;
  }

  .header .logo span {
    font-size: 15px !important;
  }

  .events-section .events-box .event-content h4 {
    font-size: 18px !important;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.banner img {
  width: 100%;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #630000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #dad4b5;
  color: #630000;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  p {
    font-size: 15px !important;
    width: 100% !important;
  }

  h2 {
    font-size: 20px !important;
  }

  .owl-carousel .owl-nav button.owl-prev span,
  .news .owl-nav button.owl-next span {
    top: 21% !important;
    left: 50% !important;
    font-size: 40px !important;
    width: 18px;
    height: 30px;
  }

  .news .owl-carousel .owl-nav button.owl-prev,
  .news .owl-carousel .owl-nav button.owl-next {
    width: 36px !important;
    height: 36px !important;
  }

  .about {
    padding: 20px !important;
  }

  .about .btn-read-more span,
  .btn-read-more,
  .btn-read-more i {
    font-size: 15px;
  }

  .news .owl-carousel .owl-nav {
    top: -12px !important;
  }
  .viral .card img {
    max-height: 250px !important;
  }
}

.news-updates .box {
  padding: 8px 8px 10px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
  height: 598px;
}

.news-updates .box img {
  width: 100%;
  max-height: 300px;
  border-radius: 6px;
}

.news-updates .box-content {
  padding: 6px;
  border-bottom: 1px dashed #dfa0a08f;
}

.news-updates .box-content h6 {
  font-size: 15px;
}

.news-updates .box-content h5 {
  padding: 10px 0px 0px;
  font-size: 18px;
  color: #630000;
  font-weight: 600;
  margin-bottom: 15px;
}

.news-updates .box-content p {
  font-size: 14px !important;
  line-height: 23px !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.news-updates .btn-buy {
  display: inline-block;
  padding: 5px 13px 5px 13px;
  border-radius: 10px;
  color: #760202;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  transition: 0.3s;
  border: 1px solid #760202;
}

.news-updates .col-lg-4 {
  padding: 6px;
}

.news-date p {
  padding: 2px;
  font-size: 11px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.top-header {
  width: 100%;
  background: #f9e0b9;
  color: #fff;
  padding: 3px;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Vertically center both sides */
  flex-wrap: wrap; /* Makes it responsive on smaller screens */
}

.top-headleft,
.top-headrgt {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-headleft i {
  font-size: 13px;
  color: #000;
}

.top-headrgt i {
  font-size: 12px;
  color: #000; /* Set it to black for consistency */
}

.top-headleft a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  margin-left: 3px;
}

.top-headrgt .social-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #000;
}

.top-headrgt .social-links a img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
}

.top-headrgt .getstarted {
  font-weight: bold;
  margin-right: 6px;
}

.header .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 2px 0;
  background-color: #eeebdd;
}

.header.header-scrolled {
  background: #fff;
  padding: 2px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.navbar .megamenu ul li {
  border-right: 1px dashed #63000073;
  /* height: 200px; */
}

.navbar .megamenu ul li:last-child {
  border-right: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  padding-left: 20px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 3px;
  padding: 5px;
}

.navbar a:hover,
.navbar .active:focus,
.navbar li:hover > a {
  color: #630000;
}

.navbar .getstarted,
.navbar .getstarted:hover {
  border-radius: 4px;
  color: #fff;
  background: #630000;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 20px;
  margin-left: 10px;
}

.top-headrgt .getstarted:hover,
.top-headrgt .getstarted:focus:hover {
  color: #000;
  background: #dad4b5;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 190px;
}

.navbar .dropdown ul a {
  padding: 4px 7px;
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul li a {
  border-bottom: 1px dashed #63000073;
}

.navbar .dropdown ul li:last-child a {
  border-bottom: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #630000;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin-top: 5px;
  right: 0;
  padding: 10px;
  display: flex;
  background-color: #eeebdd;
  width: 700px;
}

.navbar .megamenu ul li a {
  flex: 1;
  border-bottom: none;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover > a {
  color: #000;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #630000;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul li a {
  border-bottom: 1px dashed #63000073;
}

.navbar .dropdown .dropdown ul li:last-child a {
  border-bottom: none;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #630000;
  transition: 0.3s;
}

.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: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #630000;
}

.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: #630000;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* height: 100vh;
  background: url(../img/hero-bg.png) top center no-repeat; */
  padding: 0;
}

.hero .carousel-control-prev {
  right: 60px;
  left: auto;
}
.hero .custom-carousel-control {
  position: absolute;
  top: 85%;
  transform: translateY(-50%);
  z-index: 5;
  color: #000;
  background-color: transparent;
  border: none;
  font-size: 20px;
}

.hero .custom-carousel-control i {
  border: 3px solid #ffffffd4 !important;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  padding: 5px 10px;
}

.hero .carousel-control-next {
  right: 5px;
}

.hero .hero-img {
  text-align: right;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero .hero-img img {
    width: 100%;
  }

  .top-header {
    display: none;
  }

  .news .card-body p {
    font-size: 15px !important;
  }

  .hist-inr h2,
  .hist-inr p {
    padding: 10px;
  }

  .nepal-trust {
    order: 2;
  }
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  display: none;
}

.header .logo span {
  font-size: 17px;
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.yog-meditation p {
  text-align: justify;
}
.yog-meditation .content {
  /* background-color: #EEEBDD; */
  padding: 40px;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
}

.abt-img {
  position: relative;
  width: 100%;
}

.about {
  background: #fff;
  color: #000;
  background-image: linear-gradient(
      180deg,
      #fffffffa 40%,
      rgb(255 255 255 / 78%) 80%,
      rgba(255, 255, 255, 0)
    ),
    url(../img/about-us.png);
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 50px 30px;
}

.about .btn-read-more {
  line-height: 0;
  /* padding: 15px 40px; */
  border-radius: 4px;
  transition: 0.5s;
  color: #630000;
}

.about .btn-read-more span {
  font-weight: 600;
  /* font-size: 16px; */
  letter-spacing: 1px;
}

.btn-read-more i {
  margin-left: 5px;
  font-size: 16px;
  transition: 0.3s;
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

.abt-inr {
  padding: 30px 30px;
  background-color: #ece6c2;
  min-height: 525px;
}

.abt-txt {
  background-color: #eeebdd;
  padding: 19px 30px;
  height: 525px;
}

.wellness {
  position: relative;
}

.wellness .btn-read-more {
  position: absolute;
  position: absolute;
  top: 80%;
  left: 24%;
  background-color: #630000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 3px;
  transform: translate(-50%, -50%); /* Centers based on both X and Y */
}

.yog-kaksh {
  background: #fff;
  color: #000;
  background-image: linear-gradient(
      180deg,
      #ffffffd1 40%,
      rgb(255 255 255 / 78%) 80%,
      rgba(255, 255, 255, 0)
    ),
    url(../img/yog-kaksha.png);
  background-position: bottom;
  text-align: center;
  padding: 20px 0px;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
}

.yog-inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.yog-inr p {
  font-size: 16px;
  line-height: 32px;
}

.yog-inr-para {
  background: linear-gradient(to left, #fff3f3 4%, #f8f5f5 46%, #ffffff 100%);
  margin-top: -58px;
  padding: 25px;
  border: 1px solid #efeaea;
  text-align: center;
  min-height: 260px;
  border-radius: 10px;
}

.yog-inr-para p {
  text-align: center;
}

.btn-read-more:hover {
  color: #000;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.quotes-img-left {
  opacity: 0.7;
  position: absolute;
  right: -189px;
  width: 403px;
  z-index: 1;
  top: 216px;
  transform: translate(-50%, -50%);
}
.quotes-img-right {
  opacity: 0.7;
  position: absolute;
  left: 118px;
  width: 250px;
  z-index: 1;
  top: 161px;
  transform: translate(-50%, -50%);
}
/* .wellness {
  padding: 0px;
} */
.news {
  position: relative;
}

.values {
  position: relative;
  background: linear-gradient(to left, #fff3f3 4%, #f8f5f5 46%, #ffffff 100%);
}

.viral-udh .item::before {
  position: absolute;
  content: "";
  top: 0px;
  z-index: -1;
  width: 70%;
  left: 60px;
  right: 0px;
  bottom: 0rem;
  border: 3px solid #dedede;
  border-radius: 0px;
}
.recognize ul {
  padding-left: 0px;
  margin: 0;
}

.value-img {
  position: absolute;
  right: 0;
  top: 0%;
  width: 15%;
  z-index: -1;
}

.sewa-img {
  position: absolute;
  left: 0;
  bottom: -5%;
  width: 15%;
  z-index: -1;
}

.values .box {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 0 5px rgb(5 6 6 / 20%);
  transition: 0.3s;
  margin: 10px 0px;
}

/* .values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
} */

.values .box h3 {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}

.intro-title .intro-cat {
  font-size: 18px;
  color: #000;
}

.intro-count {
  background-color: #fff8e4;
  padding: 5px 8px;
  border-radius: 50%;
  font-weight: 800;
}

.values .box p {
  padding: 12px 0px 0px;
  line-height: 30px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.values .box p,
.values .box .btn-read-more {
  padding: 20px;
}

.values .intro-title {
  position: relative;
  margin-bottom: 2px;
  font-weight: 600;
  color: #804533;
  padding: 20px 18px 0px;
}

.values .btn-read-more span,
.values .btn-read-more i {
  color: #804533;
  font-size: 15px;
  font-weight: 600;
}

#textImageSlider {
  position: relative;
  margin: auto;
  padding: 20px;
  transition: all 300ms;
  background-size: cover;
  width: 100%;
  background-attachment: scroll;
}

.txt-image {
  flex-shrink: 0;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.txt-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  opacity: 1;
}

.carousel .slide .carousel-item {
  height: 400px;
  display: flex;
  align-items: center;
}

.abhimat .text-content {
  padding: 40px 40px 60px 0px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  text-align: justify;
}
#textImageSlider .carousel-control-prev,
#textImageSlider .carousel-control-next {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6); /* Light white arrows */
  border-radius: 6px;
  border: none;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
  z-index: 10;
}

/* Hover effect: darker arrow */
#textImageSlider .carousel-control-prev:hover,
#textImageSlider .carousel-control-next:hover {
  color: rgba(255, 255, 255, 0.95); /* Darker white on hover */
  background-color: #630000;
}

/* Positioning */
#textImageSlider .carousel-control-prev {
  left: 48px; /* Arrow on left edge */
}

#textImageSlider .carousel-control-next {
  right: 52px; /* Arrow on right edge */
}

#textImageSlider .carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 1.2rem;
}

#textImageSlider .txt-image {
  padding-top: 60px;
}
.carousel-item.active .text-content {
  opacity: 1;
  transform: translateY(0);
}

.carousel .slide.carousel-item img {
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.carousel .slide.carousel-item.active img {
  transform: scale(1.05);
}

.text-content h6 {
  color: #630000;
  font-weight: 600;
}

/* Position the control container on the right side */
.carousel .carousel-controls-right {
  position: absolute;
  top: 10px; /* Adjust for vertical positioning */
  right: 10px; /* Align to the right side */
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  gap: 10px; /* Space between buttons */
  z-index: 1;
}

/* Style the previous and next buttons */
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  background-color: #63000085;
  color: #fff;
  width: 42px;
  height: 42px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 18px;
  margin: 8px;
}

.carousel-control-prev-icon {
  color: #fff;
}

.carousel-control-prev {
  left: 80%;
}

.carousel-control-next {
  right: 12%;
}

.carousel .carousel-control-prev-icon,
.carousel .carousel-control-next-icon {
  filter: invert(0); /* Inverts icon color if needed */
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #textImageSlider {
    height: auto;
    padding: 20px;
  }

  .txt-image {
    width: 50%;
    height: 200px;
    margin-bottom: 20px;
  }

  .carousel-item {
    height: auto;
    flex-direction: row; /* Keep them side-by-side */
    align-items: center;
    justify-content: space-between;
  }

  .carousel-item img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  .carousel-inner {
    flex-direction: column;
  }

  .text-content {
    padding: 10px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-in-out;
  }
}

@media (max-width: 768px) {
  .carousel-item .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .txt-image,
  .text-content {
    width: 100% !important;
  }

  #textImageSlider .txt-image {
    padding-top: 10px;
  }

  .abhimat .text-content {
    padding: 10px;
  }

  .abhimat .text-content h3 {
    font-size: 22px;
  }

  #textImageSlider .carousel-control-next,
  #textImageSlider .carousel-control-prev {
    top: 40%;
    width: 32px;
    height: 32px;
  }

  #textImageSlider .carousel-control-prev {
    left: -1%;
  }
  #textImageSlider .carousel-control-next {
    right: -1%;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .abt-bst-img {
    margin: 10px -8px 0px;
  }

  .banner h1 {
    font-size: 15px;
    text-align: center;
  }

  .about-bst h2 {
    padding-left: 0px !important;
    margin: 10px 0px 0px;
  }

  .second-andolan {
    padding: 20px 0px !important;
  }

  .andolan .card {
    min-height: 180px;
    margin: 8px 0px;
  }

  .slinet-inr ul li,
  .hist-inr ul li,
  .patanjali-yog-samiti ul li,
  .kisan-seva-samiti ul li,
  .andolan ul li,
  .second-andolan ul li {
    font-size: 15px !important;
  }

  .anshan h2 {
    margin: 10px 0px 0px;
  }

  ol li {
    line-height: 30px !important;
    font-size: 15px;
  }

  .anshan h5,
  .patanjali-yog-samiti h2 {
    margin-top: 10px;
  }

  /* .bst-history h2 {
    padding-left: 0px !important;
  } */

  .patanjali-yog-samiti .smart-slide {
    margin-top: 10px;
  }

  .hist-inr {
    padding: 0px !important;
  }

  .sheed-inr .row h4 {
    margin-top: 10px;
  }

  .team .member {
    min-height: 230px !important;
    margin: 10px;
  }

  .mem-heading span {
    font-size: 20px !important;
  }

  .andolan h2 {
    margin-top: 10px;
  }

  /* .anshan h5, .patanjali-yog-samiti h2, .yoga-day h4{
  margin-top: 20px;
} */
  .social-link .age-crieria {
    width: 97% !important;
  }

  .shok-sandesh .age-crieria th,
  .social-link .age-crieria th,
  .social-link .age-crieria td {
    font-size: 14px !important;
  }

  .age-crieria .social img {
    width: 19px !important;
    height: 19px !important;
  }

  .gallery .col-md-3 {
    margin-top: 10px;
  }
}

.about-bst h2 {
  padding-left: 25px;
}

.bst-history h2 {
  padding-left: 20px;
}

.card {
  position: relative;
  padding: 8px;
  /* background-color: #EEEBDD; */
}

.news .card-body p {
  color: #000;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
}

.recognize li {
  list-style: none;
}
.recognize .owl-carousel .owl-stage-outer {
  padding: 20px 0px;
}
.viral-udh .owl-carousel .owl-nav button.owl-prev {
  background-color: #63000054;
  color: #fff;
}

.viral .card {
  border: none;
  position: relative;
}

.viral .card img {
  max-height: 280px;
  width: 100%; /* Ensures responsiveness */
  display: block;
}

.viral .card-body {
  position: absolute;
  left: 12%;
  top: 10%;
  width: 76%;
  padding: 10px;
  border-radius: 5px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 45px;
  height: 40px;
  line-height: 40px;
  border: none;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
  background-color: #63000054;
  color: #fff;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  color: rgba(255, 255, 255, 0.95); /* Darker on hover */
  background-color: #630000;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -14px; /* Adjust position to outside left */
}

.owl-carousel .owl-nav button.owl-next {
  right: -14px; /* Adjust position to outside right */
}

.owl-carousel .owl-nav button span {
  font-size: 40px;
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news .card {
  height: 262px;
}

.news .owl-carousel .owl-dots {
  display: none;
}

.news .recognize .card-book .card-body {
  padding: 0px;
}

.news .card-book .card-body p {
  line-height: 25px;
  font-size: 14px;
  text-align: left;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 20px;
}

.news .card-book .card-body h6 {
  color: #630000;
  font-weight: 600;
}

.news .card-book .card-body .btn-read-more {
  color: #630000;
  font-weight: 600;
  font-size: 14px;
}
.yog-inr img {
  width: 80%;
}

.news .recognize .card-book {
  position: relative;
  border-radius: 5px;
  margin-top: 20px;
  background: white;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.news .recognize .book-center {
  position: relative;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  width: 100%;
  overflow: hidden;
  border: 1px solid #ffecec;
  border-radius: 5px;
  padding: 14px;
}

.news .recognize .book-center img {
  width: 230px;
  height: 300px;
  margin: 0px auto;
  border-radius: 5px;
}

.news .recognize .card-book:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

/* Style the image inside .card-book to have a cut in the bottom-right corner */
.news .recognize .card-book img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  /* clip-path: polygon(0 0, 100% 0, 100% 90%, 85% 100%, 0% 100%);  */
}

.vid-btn {
  /* padding: 6px 0px; */
  justify-content: right;
}

.abt-btn .btn-read-more {
  background-color: #630000;
  color: #fff;
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 15px;
}

.marquee-container {
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

.marquee-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  top: 0;
  animation: scrollUp 12s linear infinite; /* Smooth scrolling */
}

.marquee-content-clone {
  top: 100%; /* Positioned just after the original content */
}
.news-cnt h6 {
  font-size: 20px;
  line-height: 30px;
}
.news-item {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
  color: #4a4a4a;
  display: flex;
}

.news-count {
  padding: 3px;
  border: 2px dashed lightgray;
  width: 58px;
  height: 58px;
  line-height: 58px;
  /* float: left; */
  /* display: flex; */
  padding: 10px;
  font-size: 22px;
  align-items: center;
  font-weight: bold;
  color: #630000;
  text-align: center;
  margin-right: 20px;
  margin-right: 20px;
}

.news-count p {
  font-size: 13px;
  color: #000;
  line-height: 6px;
}

.news-cnt ul {
  padding-left: 20px;
}

.news-cnt h6 a {
  font-weight: 600;
  color: #630000;
}

.news-cnt ul li {
  line-height: 28px;
  font-size: 15px;
  color: #000;
}

.date-time {
  font-weight: bold;
  font-size: 12px;
  color: #630000;
  margin-left: auto;
}

.news-item:hover {
  background-color: #f0f0f0;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.hist-inr {
  background-color: #fff3d6;
  padding: 25px;
}

.main-inr {
  text-align: center;
  width: 90%;
  margin: 0px auto;
}

.slinet-inr {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #ffecec;
  border-radius: 6px;
}

.slinet-inr h5,
.kisan-seva-samiti h5,
.anshan h5 {
  color: #630000;
  font-weight: 600;
  position: relative;
  display: inline-block; /* Ensures the underline only spans the text width */
  margin-bottom: 20px;
}

.slinet-inr h6 {
  color: #630000;
  font-weight: 600;
}

.slinet-inr h5::before,
.kisan-seva-samiti h5:before,
.anshan h5:before {
  content: "";
  position: absolute;
  bottom: -5px; /* Adjust the distance from text */
  left: 0;
  width: 20%;
  height: 3px; /* Adjust the thickness of the underline */
  background-color: #630000; /* Same as text color */
}

.slinet-inr p {
  font-size: 15px;
}

.slinet-inr ol {
  column-count: 2;
  padding-left: 18px;
  line-height: 33px;
}

.slinet-inr ul,
.hist-inr ul,
.patanjali-yog-samiti ul,
.kisan-seva-samiti ul,
.second-andolan ul,
.andolan ul {
  padding-left: 0px;
  list-style-type: disc; /* Apply bullet points to the list */
  list-style: none;
}

.andolan img {
  border-radius: 5px;
}

.slinet-inr ul li,
.hist-inr ul li,
.patanjali-yog-samiti ul li,
.kisan-seva-samiti ul li,
.andolan ul li,
.second-andolan ul li,
.yoga-day ul li {
  background: url(../img/check.png) no-repeat scroll 0 5px transparent;
  background-size: 22px;
  padding-left: 30px;
  list-style: none;
  text-align: justify;
  line-height: 35px;
  font-size: 16px;
  color: #000;
}

.yoga-day ul li {
  margin-left: -35px;
}

.acharya-award h4 {
  font-size: 20px;
  color: #630000;
  font-weight: 600;
  /*   */
}

.award-cerem h5 {
  font-size: 16px;
  margin: 8px;
  color: #630000;
  font-weight: 600;
}

.patanjali-yog-samiti img {
  border-radius: 5px;
}

ol li {
  line-height: 38px;
  color: #000;
}

.info-box a {
  color: #000;
}

#card-1 {
  min-height: 580px;
}

#card-1 .card-img img {
  min-height: 648px;
  object-fit: cover;
  border-radius: 10px;
}

.card-2 {
  height: 400px;
  overflow: hidden;
  object-fit: cover;
}
.card-2 img {
  min-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.card-2 .card-img {
  height: 400px;
}
.card-img img {
  border-radius: 10px;
}

.awards .card-body {
  position: absolute;
  color: #fff;
  left: 0%;
  padding: 10px !important;
  bottom: 0%;
  width: 100%;
  border-radius: 10px;
}

.awards h6 {
  font-size: 16px;
  margin-bottom: 4px;
}

/* .awards .card-body p {
  margin-bottom: 0px !important;
  font-size: 11px;
  color: #e8efb0;
  line-height: 20px;
} */

.awards .card {
  padding: 0px;
  background-color: #fff;
  border: none;
}

.awards .card-img::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgb(100 97 94 / 38%) 50%, #121010 100%);
  border-radius: 10px;
  z-index: 9;
}

.awards .card-body p {
  text-shadow: 1px 0px 2px rgb(15 0 0);
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  left: 0%;
  z-index: 99;
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  padding: 0px 10px;
}

.btn-read-more {
  color: #630000;
  font-weight: 600;
}

.second-andolan {
  background: #ffffff;
  color: #000;
  background-image: url(../img/bharat-swabhiman-niyas.png);
  background-position: center;
  padding: 50px 30px;
}

.banner-section .ban-inr {
  object-fit: contain;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ffe3d5;
  margin: 8px auto;
  min-height: 242px;
}

.banner-section .ban-inr img {
  border-radius: 10px;
}

.topper .pdf-icon {
  position: absolute;
  z-index: 9;
  left: -11px;
  top: -1px;
  width: 52px !important;
}

.topper .pdf-icon img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

.downlods-data {
  position: relative;
  background: #fff;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  margin-bottom: 30px;
  border-radius: 35px 0px;
  padding: 20px 20px 20px 20px;
}

.downlods-data .btn-read-more {
  font-weight: 500;
}

.topper .text p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px !important;
  text-align: center;
  font-weight: 600;
  color: #444444;
  margin: 0;
  padding: 0;
  color: #630000;
}

.gllery-text {
  line-height: 26px;
  font-size: 17px;
  padding-bottom: 20px;
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

.portfolio .portfolio-item::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #6300001f;
  border-left: 3px solid #6300001f;
  transition: all 0.5s ease 0s;
  z-index: 9;
}

.prs-inr {
  background: #6300001f;
  padding: 5px;
  height: 350px !important;
  border-radius: 6px;
}

.portfolio .portfolio-item::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #6300001f;
  border-right: 3px solid #6300001f;
  transition: all 0.5s ease 0s;
  z-index: 9;
}

.portfolio .portfolio-item img {
  width: 100%;
  object-fit: cover;
}

.prs-inr img {
  height: 340px !important;
  border-radius: 6px;
}

.portfolio .container h4 {
  padding: 20px 0px 2px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
  top: 0%;
  left: 42%;
  right: 50%;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .portfokio-lightbox,
.portfolio .portfolio-item .portfolio-info .portfokio-lightbox {
  position: absolute;
  top: 50%;
  background: #fff;
  left: 50%;
  font-size: 35px;
  border-radius: 50%;
  color: #630000;
  transition: 0.3s;
  line-height: 0;
}
.home-gallery .col-lg-4 {
  padding: 6px;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #630000;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

.portfolio .portfolio-item img {
  width: 100%;
  height: 213px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery .card {
  background: #fcfff0;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 80px auto 0; /* Added margin on top for spacing */
  height: 220px;
  width: 100%;
  position: relative; /* Needed for absolute positioning inside */
}

.gallery .gallery-img {
  position: absolute;
  top: -35%; /* Adjusted to properly position the image above the card */
  left: 50%;
  transform: translateX(-50%);
}

.gallery .gallery-img img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
}

.gallery-inr {
  position: absolute;
  bottom: 15px; /* Moves text inside the card properly */
  width: 100%;
}

.gallery-inr p {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.gallery-inr p a {
  color: #000;
}

.gallery .card a:hover {
  color: #630000;
}

.vido-slide h5 {
  font-size: 16px;
  background: #630000;
  margin-top: -7px;
  color: #fff;
  padding: 5px;
  font-weight: 400;
  border-radius: 6px;
}

.vido-slide .gallery {
  position: relative;
  padding: 0px;
  margin-bottom: 24px;
}

.vido-slide .gallery h5 {
  position: absolute;
  min-height: 51px;
  z-index: 9;
  bottom: -21px;
  font-size: 15px;
  color: #fff3f1;
  width: 100%;
  left: 0px;
  padding: 10px 18px;
  background-color: #630000;
}

.vido-slide .gallery h5:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  height: 53%;
  width: 2px;
  background-color: #fff;
}

.vido-slide .gallery h5 span {
  float: right;
  font-size: 14px;
  margin-top: 3px;
  color: #ffc000;
}

.vido-slide .gallery h5 a {
  color: #fff;
}

.slog p {
  width: 80%;
  text-align: center;
  margin: 0px auto;
  color: #630000;
}

.yoga-day {
  background: linear-gradient(to left, #fff3f3 90%, #f8f5f5 46%, #ffffff 100%);
}

.yoga-day .col-lg-12 {
  border-radius: 7px;
  background: #fff;
  padding: 30px;
}

.yoga-day img {
  border-radius: 5px;
}

.guru-prnm-inr p {
  text-align: center;
  width: 80%;
  margin: 0px auto 10px;
}

.sheed-inr .row h4 {
  color: #630000;
}

.events-section .events-box {
  border-bottom: 1px dotted #f7f5f3;
  border-radius: 0px;
  padding: 20px !important;
  margin-bottom: 10px;
  background: linear-gradient(
    to left,
    #fff3f39e 90%,
    #f8f5f5 46%,
    #ffffff 100%
  );
}

.events-box .col-lg-3 {
  padding: 5px;
}

.events-section .events-box .img img {
  /* max-height: 400px; */
  width: 100%;
  border-radius: 6px;
}

.events-section .events-box .event-content h4 {
  color: #630000;
  font-size: 20px;
  font-weight: 600;
}

.event-content p {
  margin-bottom: 10px;
}

.event-content h5 {
  font-size: 15px;
  margin-top: 10px;
}

.shok-sandesh table.age-crieria,
.social-link table.age-crieria {
  margin: 10px auto;
}
.social-link .age-crieria {
  width: 70%;
}

.age-crieria .social i {
  color: #fff;
  font-size: 16px;
}

.team .member .social a,
.age-crieria .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 3px;
}

.age-crieria .social img {
  width: 21px;
  height: 21px;
}

.social a {
  font-size: 20px;
}

.age-crieria .social i:hover {
  background-color: #dad4b5;
  color: #fff;
  border-radius: 50px;
  width: 28px;
  height: 28px;
  text-align: center;
  padding: 2px;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 30px;
  height: 30px;

  margin: 3px;
}

tr:nth-child(even) {
  background-color: #fff1f1;
}

.team .member {
  background: linear-gradient(to left, #fceded 4%, #f8f5f5 46%, #ffffff 100%);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  min-height: 300px;
}

.state .member {
  background: linear-gradient(to left, #fceded 4%, #f8f5f5 46%, #ffffff 100%);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  min-height: 200px;
}

.mem-heading h4 {
  font-size: 14px;
  margin-bottom: 2px;
  color: #333;
}

.mem-heading span {
  font-size: 24px;
  font-weight: 600;
  color: #630000;
}

.member-info p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.contact-inline {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.contact-inline a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  color: #222;
}

.contact-inline a i {
  margin-right: 6px;
  background: #630000;
  color: white;
  padding: 5px 8px 5px;
  border-radius: 50%;
  font-size: 14px;
}

.email-block a {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #222;
  text-decoration: none;
}

.email-block a:hover {
  color: #630000;
}

.email-block a i {
  margin-right: 6px;
  background: #630000;
  color: white;
  padding: 5px 8px 5px;
  border-radius: 50%;
  font-size: 14px;
}

.email-block {
  margin-left: -10px;
}

.social {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.social a i {
  background: #630000;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  transition: 0.3s ease;
  padding: 5px 8px 5px;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
  width: 30%;
  border-radius: 50%;
  padding: 12px;
}

.social a {
  background-color: #fff;
}

.mem-heading h3 {
  font-size: 18px;
  font-weight: 600;
}

.rajya-link h4 {
  font-size: 22px;
  font-weight: 600;
  color: #630000;
}

.rajya-link span {
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

.social img {
  width: 30px;
  height: 30px;
  margin: 3px;
}

.btn-sbmt {
  border-radius: 4px;
  color: #fff;
  background: #630000;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 20px;
  border: none;
}

 .error-message {
    color: red;
    font-size: 14px;
    display: none;
  }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fff3f361;
  padding: 30px;
}

.contact .info-box i {
  font-size: 32px;
  line-height: 0;
  color: #630000;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #630000;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

input:focus,
textarea:focus,
select:focus {
  box-shadow: none !important;
  outline: none;
}

.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: #630000;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form input[type="tel"] {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #630000;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #630000;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #ebd571;
  font-size: 14px;
  margin-top: 30px;
}

.footer .footer-top {
  padding-top: 40px;
}

.footer .footer-top h4 {
  font-size: 22px;
  color: #000;
  position: relative;
  padding-bottom: 10px;
}

.footer-line {
  border-bottom: 1px solid #000;
  margin-bottom: 3%;
}

.footer-line i {
  color: #000;
  padding: 3px;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
  color: #000;
  font-size: 14px;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

.social-links img {
  width: 18px;
  height: 18px;
}

.footer .footer-top .social-links a:hover {
  color: #fff;
}

.footer-links .social-links {
  display: flex;
}

.footer-links .social-links p {
  font-size: 13px;
  padding: 0px 4px 0px;
}

.footer-links .social-links a {
  padding: 0px 2px;
}

.footer .footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links p {
  color: #000;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #000;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
  padding: 6px;
  color: #000;
  background-color: #c49706;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}
