/*** 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 ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}
.row{
    padding:0px;
   margin:0px;
}
/*** Button Start ***/
.btn {
  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(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  color: var(--bs-primary);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  padding-top: 11px;
  border: 0;
  transition: 0.5s;
  opacity: 1;
}

/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-white);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
  color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.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(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark);
  }

  .navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-dark);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@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: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    width: 2px;
    height: 12px;
  }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
  object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  bottom: 30px;
  left: 30px;
  margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
  bottom: 30px;
  left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-light);
  color: var(--bs-primary);
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding-top: 120px;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header-carousel .header-carousel-item .carousel-caption {
    padding-top: 45px;
  }
}

@media (max-width: 767px) {
  .header-carousel .owl-nav .owl-prev {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -45px;
  }

  .header-carousel .owl-nav .owl-next {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 45px;
  }
}

.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% {
    height: 100%;
    opacity: 0.9;
  }

  25% {
    height: 110%;
    opacity: 0.5;
  }

  50% {
    height: 115%;
    opacity: 1;
  }

  75% {
    height: 110%;
    opacity: 0.5;
  }

  100% {
    height: 100%;
    opacity: 0.9;
  }
}
/*** 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: 140px 0 60px 0;
  transition: 0.5s; */
}
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  height: 400px; /* adjust as you like */
}

.bg-breadcrumb .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bg-breadcrumb .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: 1;
}

@media (min-width: 992px) {
  .bg-breadcrumb {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 991px) {
  .bg-breadcrumb {
    padding: 60px 0 60px 0;
  }
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .service-item {
  background: var(--bs-light);
  border-radius: 10px;
  transition: 0.5s;
}

.service .service-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.service .service-item .service-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-img img {
  transform: scale(1.2);
}
/*** Service End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  background: var(--bs-white);
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.blog .blog-item a {
  transition: 0.5s;
}

.blog .blog-item:hover a:hover {
  color: var(--bs-primary);
}

.blog .blog-item .blog-img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 208, 132, 0.1);
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
  opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
  color: var(--bs-white);
  background: var(--bs-primary);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
  color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
  margin-top: 58px;
}

.blog .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
  background: var(--bs-dark);
  color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
  background: var(--bs-dark);
  color: var(--bs-primary);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  padding: 0 25px 25px 25px;
  border-radius: 10px;
  transition: 0.5s;
}

.team .team-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--bs-light);
  border-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.team .team-item:hover::before {
  height: 0;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.team .team-item:hover::after {
  height: 100%;
  background: var(--bs-primary);
}

.team .team-item .team-img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: relative;
  margin-top: 50%;
  transform: translateY(-50%);
  margin-bottom: -50%;
  display: flex;
  justify-content: center;
  border: 4px solid var(--bs-primary);
  border-style: dotted;
  padding: 4px;
  background: var(--bs-white);
  transition: 0.5s;
}

.team .team-item:hover .team-img {
  border: 4px solid var(--bs-white);
  border-style: dotted;
  background: 0;
}

.team .team-item .team-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: 0.5s;
}

.team .team-item .team-title {
  padding: 25px 0 25px 0;
  text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
  transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
  color: var(--bs-white);
}

.team .team-item .team-icon {
  display: flex;
  justify-content: center;
}

.team .team-item .team-icon a {
  transition: 0.5s;
}

.team .team-item:hover .team-icon a {
  color: var(--bs-dark);
  background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
  color: var(--bs-primary);
  background: var(--bs-dark);
}
/*** Team End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-secondary);
}

.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(--bs-primary);
}

.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(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  background: var(--bs-dark);
}
/*** copyright end ***/

/* -- Impact Start -- */

.blog-item {
  min-height: 460px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.counter {
  font-size: 2.2rem;
  font-weight: 800;
}

.blog-title .btn {
  background: #198754;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  font-size: 14px;
}

.blog-title .btn i {
  font-size: 14px;
}

.blog p {
  font-size: 15px;
  line-height: 1.6;
}

/* -- Footer Link Hover CSS -- */

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #4caf50;
  /* text-decoration: underline; */
  padding-left: 4px;
}


/* -- Core Values Section Start -- */
.icon-circle {
  background: rgba(25, 135, 84, 0.1);
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.hover-card {
  transition: all 0.35s ease;
  background: #fff;
}

.hover-card:hover {
  transform: translateY(-8px);
  background: #f9fff9;
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.15);
}

/* Hero Section */
.canteen-hero {
  background: linear-gradient(135deg, #df802e 0%, #ffffff 100%);
  padding: 100px 0;
}

/* Value & Highlight Cards */
.value-card,
.highlight-card {
  transition: all 0.3s ease;
}
.value-card:hover,
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-warning {
  background-color: #ffb84d;
  border: none;
  transition: 0.3s;
}
.btn-warning:hover {
  background-color: #ff9f1a;
}

/* Hero Card Image */
.hero-card img {
  border: 5px solid #fff7e6;
  transition: transform 0.4s ease;
}
.hero-card:hover img {
  transform: scale(1.03);
}

/* Counters */
#impact h1 {
  font-size: 3rem;
}

/* Eco Section */
.eco-section .object-fit-cover {
  object-fit: cover;
}

@media (max-width: 768px) {
  .eco-section .col-md-5 .row.g-1 .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
}

@media (max-width: 480px) {
  .eco-section .col-md-5 .row.g-1 .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 600px) {
 .display-4{
           font-size: Unset; 
     font-weight: Unset; 
     line-height: Unset;
  }
  .carousel-caption .fs-5{
          font-size: 1rem !important;
  }
}
.row > * {
    padding-right: unset;
    padding-left: unset;
}
}

/* ========== Hospitality Section Image Layout ========== */
.hospitality-section .object-fit-cover {
  object-fit: cover;
}

/* Make vertical image stretch full height */
.hospitality-section .h-100 img {
  height: 100%;
}

/* Adjust image proportions and spacing */
.hospitality-section .row.g-2 {
  align-items: stretch;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .hospitality-section .row.g-2 {
    flex-direction: column;
  }

  .hospitality-section .col-6 {
    width: 100%;
  }

  .hospitality-section .d-flex.flex-column {
    flex-direction: row;
    gap: 0.5rem;
  }

  .hospitality-section .d-flex.flex-column > div {
    flex: 1;
  }
}

/* =============================
   Dhaba Section Image Layout
   ============================= */
.dhaba-section .object-fit-cover {
  object-fit: cover;
}

.dhaba-section .h-100 img {
  height: 100%;
}

.dhaba-section .row.g-2 {
  align-items: stretch;
}

/* ✅ Hover zoom effect (optional but stylish) */
.dhaba-section img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.dhaba-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ✅ Responsive layout for tablets & mobile */
@media (max-width: 768px) {
  .dhaba-section .row.g-2 {
    flex-direction: column;
  }

  .dhaba-section .col-6 {
    width: 100%;
  }

  .dhaba-section .d-flex.flex-column {
    flex-direction: row;
    gap: 0.5rem;
  }

  .dhaba-section .d-flex.flex-column > div {
    flex: 1;
  }
}

/* 🌿 Global Styles */
.adventure-section,
.adventure-split,
.cultural-section,
.eco-stay,
.adventure-vision {
  padding-top: 80px;
  padding-bottom: 80px;
}
h2,
h5 {
  font-weight: 600;
}

/* 🌄 Hero Section */
.adventure-hero {
  background: linear-gradient(to right, #df802e, #ffffff),
    url("img/adventure-hero.jpg") center/cover no-repeat;
  color: white;
  padding: 150px 0;
}

/* 🧊 Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.glass-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.glass-card .content {
  padding: 20px;
  color: #333;
}
.glass-card:hover {
  transform: translateY(-8px);
}

/* 🏕️ Split Section */
.custom-list li {
  list-style: none;
  margin-bottom: 10px;
}
.custom-list i {
  color: #2e7d32;
  margin-right: 8px;
}

/* 🧭 Flip Cards */
.flip-card {
  perspective: 1000px;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  color: white;
}
.flip-front {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 15px;
  font-weight: bold;
  font-size: 18px;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.3);
}
.flip-back {
  background: #2e7d32;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* 🏞️ Eco Stay Cards */
.stay-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.stay-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.stay-card h5 {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 15px;
  border-radius: 6px;
}
.stay-card:hover {
  transform: scale(1.05);
}

/* 🌍 Vision Section */
.adventure-vision {
  background: linear-gradient(135deg, #df802e 0%, #ffffff 100%);
  color: white;
}
.eco-btn {
  background: #fff;
  color: #1b5e20;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  transition: 0.3s;
}
.eco-btn:hover {
  background: #c8e6c9;
}

/* Responsive */
@media (max-width: 768px) {
  .flip-inner {
    height: 220px;
  }
  .stay-card img {
    height: 200px;
  }
}

/* tousistAdventure & Tourism Projects */
.glass-card .content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.glass-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.glass-bg {
  background: linear-gradient(to bottom right, #f1f8e9, #e8f5e9);
  border-radius: 0;
}
.fixed-bg-section {
  position: relative;
  background: url("../img/about-1.jpg") center center / cover no-repeat;
  background-attachment: fixed; /* makes image stay fixed during scroll */
  color: #fff;
  padding: 120px 20px;
  overflow: hidden;
}

.fixed-bg-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15); /* light overlay */
  backdrop-filter: brightness(0.8); /* subtle dim for readability */
  z-index: 0;
}

.fixed-bg-section .container {
  position: relative;
  z-index: 2;
}

.fixed-bg-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.fixed-bg-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Methodology Section Styles */

/* General Section */
.methodology-section {
  background-color: #f8f9fa;
}
.methodology-section h2 {
  color: #0d6efd;
}

/* Colored Section */
.methodology-colored, .facts {
  background: linear-gradient(135deg, #df802e, #ffff);
}
.method-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Impact Section */
.methodology-impact {
  background: linear-gradient(135deg, #f3aa6aa2, #df802e);
}
.impact-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.impact-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .methodology-hero {
    height: 50vh;
  }
  .impact-box h3 {
    font-size: 2rem;
  }
}

/* Methodology Points Section */
.methodology-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 30px;
}
.point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  transition: all 0.3s ease;
  color: #333;
  font-size: 1rem;
}
.point i {
  font-size: 1.3rem;
  color: #df802e;
}
.point:hover {
  transform: translateY(-5px);
  color: #fff;
  background: linear-gradient(135deg, #f3aa6aa2, #df802e);
}

/* Responsive */
@media (max-width: 768px) {
  .intro-text {
    font-size: 1rem;
  }
  .point {
    width: 100%;
    justify-content: flex-start;
    color: #000;
  }
}
/* Multi-image layout (1 vertical + 2 horizontal) */
.multi-image-grid {
  display: flex;
  gap: 10px;
  align-items: stretch;
  height: 100%;
}

.multi-image-grid .vertical-img {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.multi-image-grid .vertical-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.multi-image-grid .horizontal-imgs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.multi-image-grid .horizontal-imgs img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

/* Responsive (Stack layout for small screens) */
@media (max-width: 768px) {
  .multi-image-grid {
    flex-direction: column;
  }

  .multi-image-grid .horizontal-imgs img {
    height: auto;
  }
}

/* Partnership Section Styles */
.partnership-hero {
  background: linear-gradient(135deg, #f3aa6aa2, #df802e);
}

/* About Section */
.partnership-about p {
  line-height: 1.7;
}

/* Networking Intro */
.networking-intro {
  background: linear-gradient(135deg, #f3aa6aa2, #df802e);
}

/* Institute Cards */
.institute-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  padding: 25px;
  transition: 0.4s ease;
  height: 100%;
}
.institute-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.institute-card h5 {
  color: #1a4d2e;
  font-weight: 700;
  margin-bottom: 8px;
}
.institute-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Partnership Vision */
.partnership-vision {
  background: linear-gradient(135deg, #f3aa6aa2, #df802e);
  padding: 100px 0;
}
.partnership-vision h2 {
  font-size: 2rem;
}
.partnership-vision p {
  color: #eee;
  margin-top: 15px;
}

.partners-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.partnership-list li {
  font-size: 16px;
  color: #333;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 2px 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.partnership-list li:hover {
  background: linear-gradient(135deg, #f3aa6aa2, #df802e);
  transform: translateY(-3px);
  color: #fff;
}

@media (max-width: 767px) {
  .partnership-list li {
    font-size: 15px;
  }
}
.stats-section {
  background: linear-gradient(135deg, #f8fafc, #eef3f7);
  overflow: hidden;
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.counter {
  font-size: 2.5rem;
  transition: color 0.3s ease;
}

.stat-card:hover .counter {
  color: #0d6efd;
}
/* ===============================
   Stats Section Styling
   =============================== */

.stats-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.stats-section .section-header h2 {
  font-weight: 700;
  font-size: 2rem;
}

.stats-section .stat-card {
  transition: all 0.4s ease;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #eee;
}

.stats-section .stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}

.stats-section .counter {
  font-size: 2.8rem;
  line-height: 1;
}

.stats-section p {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .stats-section .counter {
    font-size: 2rem;
  }

  .stats-section .stat-card {
    min-height: 150px;
  }
}

/* Hero Section */
.impact-hero {
  background: linear-gradient(135deg, #f3aa6aa2, #df802e);
}
.impact-hero .container {
  position: relative;
  z-index: 2;
}

/* Stats Section */
.impact-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}
.impact-card:hover {
  transform: translateY(-8px);
}
.impact-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Community Section */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.image-grid img:first-child {
  grid-column: span 2;
}
.impact-list li {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* Sustainability Section */
.impact-sustainability {
  background: linear-gradient(135deg, #f3aa6aa2, #df802e);
}
.sustain-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
}
.sustain-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
}
.sustain-card i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffd54f;
}
.impact-outcomes-gradient {
  background: linear-gradient(135deg, #df802e 0%, #ffffff 100%);
}
.impact-outcomes-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.impact-outcomes-card:hover {
  transform: translateY(-8px);
}
.impact-outcomes-icon {
  font-size: 2.5rem;
  color: #28a745;
  margin-bottom: 12px;
}

.impact-outcomes-list li {
  color: #fff;
}
.impact-outcomes-list i {
  color: #28a745;
}

/* Gallery Section Styles */
.gallery-intro,
.related-gallery {
  background: linear-gradient(135deg, #df802e 0%, #ffffff 100%);
}

.partners-slider img,
.resort-gallery img,
.adventure-gallery img,
.related-gallery img {
  transition: transform 0.3s ease;
}
.partners-slider img:hover,
.resort-gallery img:hover,
.adventure-gallery img:hover,
.related-gallery img:hover {
  transform: scale(1.05);
}

.resort-gallery {
  background: url("img/bg-light-texture.jpg") center center / cover no-repeat
    fixed;
  /* light image background that stays fixed */
  position: relative;
  z-index: 1;
}
.partners-slider .swiper-slide img {
  width: 100%;
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.partners-slider .swiper-slide img:hover {
  transform: scale(1.05);
}

.partners-slider {
  overflow: hidden;
}

.resort-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    255,
    255,
    255,
    0.7
  ); /* soft white overlay for better contrast */
  z-index: -1;
}

.resort-gallery h2 {
  color: #1a3c34;
  text-transform: uppercase;
}

.resort-gallery img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resort-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-header,
.Newsletter,
.partners-slider {
  background: linear-gradient(135deg, #df802e 0%, #ffffff 100%);
}
.gallery-img {
  width: 100%;
  height: 230px; /* uniform height for all images */
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.related-gallery .swiper-slide img {
  width: 100%;
  height: 220px; /* You can adjust height as per your layout */
  object-fit: cover; /* ensures image scales & crops nicely */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-gallery .swiper-slide img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Optional: make spacing between slides even */
.related-gallery .swiper-slide {
  padding: 5px;
}


.fixed-bg-section {
  position: relative;
  background: url('../img/Sustainability.jpg') center center / cover no-repeat;
  color: #fff;
}

.fixed-bg-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.custom-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

.flip-card {
  background: transparent;
  perspective: 1000px;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 250px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}
.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 15px;
}
.flip-back {
  background: rgba(0, 0, 0, 0.85);
  transform: rotateY(180deg);
}
