:root {
  --primary: #7a9254;
  --secondary: #bccb99;
  --light: #f5f8ed;
  --tertiary : #FED955;
  --dark: #000000;
  --font-clr: #5c792f;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/
html,
body {
  overflow-x: hidden;
  /* font-family: "Nunito", sans-serif; */
}
body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark);
  background-color: var(--light);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media(max-width:922px){
    body {
         font-size: 1rem;
    }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif", serif;
  color: var(--font-clr);
}

h1 {
  font-size: 3rem;
  font-weight: normal;
}
h2 {
  font-size: 3rem;
  font-weight: normal;
}
h3{  font-size: 2rem;
  font-weight: normal;
}
h4 {
  font-size: 1.5rem;
  font-weight: normal;
}
h5 {
  font-size: 1.25rem;
  font-weight: normal;
}
h6 {
  font-size: 1rem;
  font-weight: normal;
}
@media(max-width:768px){
    h1 {
      font-size: 3rem;
      font-weight: normal;
    }
    h2 {
      font-size: 2.75rem;
      font-weight: normal;
    }

    h3 {
      font-size: 2rem;
      font-weight: normal;
    }
    h4 {
      font-size: 1.75rem;
      font-weight: normal;
    }
    h5 {
      font-size: 1.50rem;
      font-weight: normal;
    }
    h6 {
      font-size: 1rem;
      font-weight: normal;
    }    
}
/*** Heading End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}
.text-white{
    color:var(--light)!important;
}
/*** Button Start ***/
.btn {
  border-radius: 15px!important;
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--light);
  border: none;
  font-family: "Nunito", sans-serif;
}

.btn.btn-primary:hover {
  background: var(--font-clr);
}

.btn.btn-light {
  color: var(--secondary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--light);
  background: var(--primary);
}

.btn.btn-dark {
  color: var(--light);
  border: none;
}

.btn.btn-dark:hover {
  color: var(--primary);
  background: var(--light);
}
a {
  color: var(--primary);
}
a:hover {
  color: var(--secondary);
}

.social-media-icon {
  width: 18px;
  height: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
.btn.social-media-icon {
  font-size: 0.7rem;
  color: var(--light);
  background: var(--primary);
  border-radius: 50%;
  margin-right: 20px;
}
.btn.social-media-icon:last-child {
  margin-right: 0;
}

/*** Navbar Start ***/

.sticky-top {
  transition: 0.5s;
  /*transition: all 0.5s ease;*/
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin: 0 30px;
  padding: 35px 0;
  letter-spacing: 3px;
  color: var(--dark);
  font-size: 19px;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 15px 0;
  color: var(--dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--font-clr);
}

.navbar-light .navbar-brand {
  min-width: 170px;
}
.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--primary);
  color: var(--light);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 0px !important;
  background: var(--light);
  transition: 0.5s;
  opacity: 1;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 0px !important;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--primary);
    color: var(--primary);
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }
}

body.act-home .nav-link.act-home,
body.act-about .nav-link.act-about,
body.act-founder .nav-link.act-founder,
body.act-studio .nav-link.act-studio,
body.act-retreat .nav-link.act-retreat,
body.act-contact .nav-link.act-contact,
body.act-termsandcondition .nav-link.act-termsandcondition {
    font-weight: 700 !important;
    color:var(--font-clr) !important
}

/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
  object-fit: cover;
}

@media (min-width: 1200px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    height: 625px;
  }
}

@media (max-width: 1199px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 450px;
    }
} 

.header-carousel .owl-nav .owl-prev {
  display: none;
}

.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -60px;
  right: 50%;
  transform: translateY(-50%);
  margin-right: -60px;
  border-radius: 60px;
  background: var(--primary);
  color: var(--light);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--light);
  color: var(--font-clr);
}

.header-carousel .owl-nav .owl-next i {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: carousel-next-btn;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  transition: 1s;
}

@keyframes carousel-next-btn {
  0% {
    margin-top: 35%;
  }
  50% {
    margin-bottom: 70%;
  }
  100% {
    margin-top: 35%;
  }
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
}

.carousel-caption .ticket-form {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

/* .header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}

    25% {width: 115%; height: 115%;}

    50% {width: 130%; height: 130%;}

    75% {width: 120%; height: 120%;}

    100% {width: 100%; height: 100%;}
} */
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--light);
}
/*** Single Page Hero Header End ***/

/*** Our Offerings Start ***/
#our-offerings a p{
color: var(--dark);
}
#our-offerings img{
    width:75%;
    height:auto;
}
@media (max-width: 568px) {
    #our-offerings img{
        width:90%;
        height:auto;
    }
}
@media (max-width: 768px) {
    #our-offerings img{
        width:100%;
        height:auto;
    }
}

/*** Why Choose ***/
#why-choose {
  position: relative;
}
#why-choose h1 {
  font-size: 3.12rem;
  font-weight: normal;
  color: var(--font-clr);
}
#why-choose p {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  padding-bottom: 30px;
  margin-bottom: 0px;
  text-align: justify;
}
@media (min-width: 1400px) {
  #why-choose p {
    font-size: 22px;
  }
}
#why-choose .why-choose-right-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92% !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  #why-choose .why-choose-right-img img {
    width: 100%;
    height: 100% !important;
    position: relative;
    object-fit: contain;
  }
}
#why-choose .why-choose-left-img {
  width: 100%;
  height: 250px;
  display: block;
  padding: 0;
}
@media (min-width: 1400px) {
  #why-choose .why-choose-left-img {
    height: 300px;
  }
}
#why-choose .why-choose-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*** Why Choose End ***/


/**** Avbout Us ****/
#about-section {
  position: relative;
}
#about-section {
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}
/* Left decoration */
#about-section::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  bottom: 0;
  width: 120px; /* adjust size */
  background: url('../img/abstract-right.png') left center no-repeat;
  background-size: contain;
  opacity: 0.8; /* make it subtle */
  pointer-events: none; /* keep form clickable */
  z-index: 1;
}

/* Right decoration */
#about-section::after {
  content: "";
  position: absolute;
  top: -45%;
  right: 0;
  bottom: 0;
  width: 120px; /* adjust size */
  background: url('../img/abstract-left.png') right center no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.vision-mission-section {
  position: relative;
      background: var(--primary);
}

.vision-mission-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px; /* adjust size */
  background: url('../img/abstract-left.png') right center no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.vision-mission-section .top-image {
  background-color: var(--primary); /* Green header area */
  padding: 0.5rem 0 0rem;
}

.vision-mission-section .center-img {
  max-width: 600px!important;
  margin-bottom: -120px;
  border-radius: 0px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media(max-width:768px){
    .vision-mission-section .center-img {
      max-width: 600px !important;
        width: 90%;
        margin-bottom: -60px;
        border-radius: 0px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

}
.vision-mission-section .section-title {
  color: var(--font-clr);
  font-weight: normal;
  margin: 4rem auto 3rem auto;
}

.vision-mission-section .sub-title {  
  color:  var(--font-clr);
  font-weight: normal;
  margin-bottom: 1rem;
}

.vision-mission-section .border-right {
  border-right: 3px solid var(--primary);
  padding-right: 0rem;
}

.vision-mission-section .row > .col-md-6 {
  padding: 0 2rem 0;
}

@media (min-width: 567px) and (max-width: 767px){
  .vision-mission-section .row > .col-md-6 {
    padding: 0 3rem;
  }
  .vision-mission-section .row > .col-md-6.col-md-6:first-child {
    padding: 0 3rem 0 0;
  }
  .vision-mission-section .row > .col-md-6.col-md-6:last-child {
    padding: 3rem 0 0 0rem;
  }
}
@media (max-width: 767.98px) {
  .vision-mission-section .border-right {
    border-right: none;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

}
/**** /.About Us End ****/


/*** Studio Location Start ***/
.studio-location {
  position: relative;
  background: var(--primary);
}

.studio-location::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px; /* adjust size */
  background: url('../img/abstract-left.png') right center no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}



.studio-location .col-md-6.p-0.text-start {
  background: none !important; /* remove background color if any */
  position: relative;
}

.studio-location .col-md-6.p-0.text-start img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ensure equal height for both columns */
.studio-location .row.align-items-start {
  align-items: stretch !important;
}

/* Optional: If column height shrinks at smaller breakpoints */
@media (max-width: 1400px) {
  .studio-location .col-md-6.p-0.text-start img {
    height: 100%;
    min-height: 100%;
  }
}

.studio-location .row.align-items-start {
  display: flex;
  flex-wrap: wrap;
}
.studio-location .col-md-6 {
  display: flex;
  flex-direction: column;
}





.btn-location {
  font-size:20px;
  background: var(--secondary);
  color: #000;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 8px;
  border: none;
  width: 90%;
  transition: all 0.3s ease-in-out;
}

.btn-location.active {
  background: var(--primary);
  color: var(--light);
}
.btn-location:hover {
  background: var(--primary);
  color: var(--light);
}

/*__quote text css__*/
/* container */
.quote-box {
  position: relative;
  overflow: visible; /* important so pseudo-elements are not clipped */
  color: var(--primary);
}

/* text */
.quote-text {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  font-weight:700;
  display: inline-block; /* helps pseudo-elements position */
  padding: 0.4rem 0 0 0.4rem;
}
/* top quote icon */
.quote-text::before{
  content: "";
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 100px;       /* size of the icon */
  height: 100px;
  display: block;
  pointer-events: none;
  background-image: url('../img/top-quote.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

/* bottom quote icon */
.quote-text::after{
  content: "";
  position: absolute;
  top: -1rem;
  right: -3rem;
  width: 100px;
  height: 100px;
  display: block;
  pointer-events: none;
  background-image: url('../img/bottom-quote.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
@media(max-width:1200px){
    .quote-text {
      position: relative;
      z-index: 2;
      font-size: 1.4rem;
      display: inline-block; /* helps pseudo-elements position */
      padding: 0.4rem 0 0 0.4rem;
    }
    .quote-text::after{
        top: -0.1rem;
    }
}
/*__quote text css end__*/

/*** Studio Location End ***/



/*** Studio Start ***/
.studio {
    background: var(--secondary);
}
.studio h2{
    font-size: 3rem;
}
.studio h3{
    font-size: 2.6rem;
}
@media(max-width:767.98px){
    .studio h3{
        font-size: 2.3rem;
    }
}
.studio p{
    /*font-size: 1.1rem;*/
    text-align:justify;
}

.studio .studio-item {
    display: flex;
    border-radius: 10px;
}


/*** Studios End ***/


/*** Service Start ***/
.service {
  position: relative;
  overflow: hidden;
  background-image: url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.service .service-section {
  position: relative;
  z-index: 5;
}

.service .service-days {
  border-radius: 10px;
  background: var(--light);
}

.service .service-item {
  position: relative;
  height: 100%;
  text-align: center;
  border-radius: 10px;
  background: var(--light);
  z-index: 1;
}

.service .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--primary);
  transition: 0.5s;
  z-index: 2;
}

.service .service-item:hover:after {
  height: 100%;
}

.service .service-item i {
  color: var(--primary);
  transition: 0.5s;
}

.service .service-item:hover i {
  color: var(--light);
}

.service .service-item .service-content {
  position: relative;
  z-index: 3;
}

.service .service-item .service-content p {
  transition: 0.5s;
}

.service .service-item:hover .service-content p {
  color: var(--light);
}

.service .service-item .service-content a.h4 {
  transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
  color: var(--light);
}
/*** Service End ***/

/*** Attractions Start ***/
.attractions {
  position: relative;
  overflow: hidden;
}

.attractions::after {
  content: "";
  width: 100%;
  height: 70%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
  z-index: -2;
  animation-name: attraction-image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes attraction-image-zoom {
  0% {
    width: 100%;
  }

  25% {
    width: 115%;
  }

  50% {
    width: 130%;
  }

  75% {
    width: 120%;
  }

  100% {
    width: 100%;
  }
}

.attractions .attractions-section {
  position: relative;
  z-index: 3;
}

.attractions .attractions-item {
  position: relative;
  border-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.attractions .attractions-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.5s;
  z-index: 2;
}

.attractions .attractions-item:hover:after {
  height: 100%;
}

.attractions .attractions-item .attractions-name {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  color: var(--light);
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
  opacity: 1;
}

.attractions-carousel .owl-stage-outer {
  margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--primary);
  color: var(--light);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
  background: var(--light);
  color: var(--primary);
}

.attractions .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--primary);
  color: var(--light);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
  background: var(--light);
  color: var(--font-clr);
}
/*** Attractions End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  background: var(--light);
  border-radius: 0px;
  min-height: 300px;
  height: 100%;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 0px;
  /*background: var(--light);*/
  transition: 0.5s;
  z-index: 1;
}

.team .team-item:hover:after {
  height: 100%;
}

.team .team-item .team-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.team .team-item .team-content .team-icon {
  background: var(--light);
  border-radius: 0px;
  display: flex;
  display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
  color: var(--font-clr);
}

.team .team-item .team-content p {
  color: var(--dark);
  transition: 0.5s;
}

.team .team-item:hover .team-content p {
  color: var(--dark);
}

/*** Team Carousel ***/
.team-carousel .owl-item img {
  width: 100%;
  height: auto;
}

.team-carousel .owl-item img {
  width: 100%;
  height: auto;
}

.team-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

/*** Desktop Arrows ***/
.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  position: absolute;
  width: 55px;
  height: 55px;
  background: var(--light);
  color: var(--font-clr);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev {
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  z-index: 10;
  background: url(../img/left-arrow.svg) center center no-repeat;
  background-size: cover;
  color: transparent;
}

.team-carousel .owl-nav .owl-next {
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  z-index: 10;
  background: url(../img/right-arrow.svg) center center no-repeat;
  background-size: cover;
  color: transparent;
}

/*** Responsive: Below 992px ***/
@media (max-width: 991px) {
  .team-carousel .owl-nav {
    position: relative;
    margin-top: 50px;          /* closer to carousel */
    display: flex;
    justify-content: center;   /* center align both arrows */
    gap: 50px;                 /* spacing between arrows */
  }

  .team-carousel .owl-nav .owl-prev,
  .team-carousel .owl-nav .owl-next {
    position: relative;        /* reset absolute */
    top: auto;
    left: auto;
    right: auto;
    transform: none;           /* reset transform */
    width: 45px;               /* smaller arrows for mobile */
    height: 45px;
  }
}

/*** Team End ***/


/*** Blog ***/
.blog-carousel .owl-item img {
  width: 100%;
  height: auto;
}

.blog-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

/*** Desktop Arrows ***/
.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
  position: absolute;
  width: 55px;
  height: 55px;
  background: var(--light);
  color: var(--font-clr);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.blog-carousel .owl-nav .owl-prev {
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  z-index: 10;
  background: url(../img/left-arrow-green.svg) center center no-repeat;
  background-size: cover;
  color: transparent;
}

.blog-carousel .owl-nav .owl-next {
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  z-index: 10;
  background: url(../img/right-arrow-green.svg) center center no-repeat;
  background-size: cover;
  color: transparent;
}

/*** Responsive: Below 992px ***/
@media (max-width: 991px) {
  .blog-carousel .owl-nav {
    position: relative;
    margin-top: 50px;          /* closer to carousel */
    display: flex;
    justify-content: center;   /* center align both arrows */
    gap: 50px;                 /* spacing between arrows */
  }

  .blog-carousel .owl-nav .owl-prev,
  .blog-carousel .owl-nav .owl-next {
    position: relative;        /* reset absolute */
    top: auto;
    left: auto;
    right: auto;
    transform: none;           /* reset transform */
    width: 45px;               /* smaller arrows for mobile */
    height: 45px;
  }
}


#blog-details p{
 text-align:justify;
}
#blog-details .disclaimer {
    font-weight:bold;
 text-align:justify;
}
/*** Blog End ***/


/*** Our Founder Start ***/
#our-founder {
    background: var(--primary);
}
#our-founder p{
    color:var(--light);
    text-align:justify;
}
#our-founder .yellow-text{
    color:var(--tertiary)!important;
}
.founder-white-patch {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    max-width: 450px;
    max-height: 400px;
    left: -130px;
    top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    z-index: -1;

}
@media (min-width: 992px) and (max-width: 1200px){
    .founder-white-patch {
        max-width: 350px;
        max-height: 300px;
        left: -150px;
        top: 150px;
    }
}
@media (min-width: 1199.99px) {
    .founder-white-patch {
        max-width: 450px;
        max-height: 400px;
        left: -130px;
        top: 150px;
    }
}

/*** Our Founder End ***/


/**** Contact Us ****/
#contact-us {
  position: relative;
  overflow: hidden; /* ensures image doesn't break layout */
  /*background-color: #f8f9fa; */
  font-weight: 400;
}

/* Left decoration */
#contact-us::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  bottom: 0;
  width: 120px; /* adjust size */
  background: url('../img/abstract-right.png') left center no-repeat;
  background-size: contain;
  opacity: 0.8; /* make it subtle */
  pointer-events: none; /* keep form clickable */
}

/* Right decoration */
#contact-us::after {
  content: "";
  position: absolute;
  top: -35%;
  right: 0;
  bottom: 0;
  width: 120px; /* adjust size */
  background: url('../img/abstract-left.png') right center no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
}

/* Responsive: hide on small screens */
@media (max-width: 991px) {
  #contact-us::after {
    top: 50%;
    width: 90px;
  }
  #contact-us::before{
    top: -35%;
    width: 90px;
  }
}
/**** /.Contact Us ****/


/**** Terms and condition Us ****/
#terms-condition {
  position: relative;
  overflow: hidden; /* ensures image doesn't break layout */
  /*background-color: #f8f9fa; */
  font-weight: 400;
}

/* Left decoration */
#terms-condition::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  bottom: 0;
  width: 120px; /* adjust size */
  background: url('../img/abstract-right.png') left center no-repeat;
  background-size: contain;
  opacity: 0.8; /* make it subtle */
  pointer-events: none; /* keep form clickable */
}

/* Right decoration */
#terms-condition::after {
  content: "";
  position: absolute;
  top: -35%;
  right: 0;
  bottom: 0;
  width: 120px; /* adjust size */
  background: url('../img/abstract-left.png') right center no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
}

/* Responsive: hide on small screens */
@media (max-width: 991px) {
  #terms-condition::after {
    top: 50%;
    width: 90px;
  }
  #terms-condition::before{
    top: -35%;
    width: 90px;
  }
}
/**** /.Terms and condition ****/




/*** Footer Start ***/
.footer {
  background: var(--light);
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  color: var(--font-clr);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--light);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--font-clr);
}

.footer .footer-item .opening-date {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-item .opening-date .opening-clock {
  display: flex;
  align-items: center;
  line-height: 35px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--secondary);
  color: var(--dark);
}
.copyright a{
  color: var(--dark);
}
.copyright a:hover{
  color: var(--font-clr);
}

/*** copyright end ***/
