@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
            --color1: #1a2b3c;
            --color2: #deebf9;
            --body-color:#333;
            --color4:#fefef4;
            --color5:#464646;
            --body-font: "Poppins", sans-serif;
}

 body {
            
            color: var(--body-color);
            font-family: var(--body-font);
            font-size: 15px;
            line-height: 30px;
        }
        a{text-decoration: none;}
        ul{margin: 0; padding: 0; list-style: none;}
        img{display: block;}
       h1, h2, h3, h4, h5, h6{margin: 0; padding: 0; font-weight: 600;}
       
       
       
       .container { width: 1200px; max-width: 100%; }
       figure{margin: 0;}


/* Default header */
#mainHeader {
  width: 100%;
  z-index: 999;
}



body {
  opacity: 0;
  animation: bodyFade 0.8s ease forwards;
}

/* Logo animations */
.animate-logo {
  opacity: 0;
  filter: blur(6px);
}

.logo-left {
  animation: logoLeft 1s ease forwards;
  animation-delay: 0.3s;
}

.logo-right {
  animation: logoRight 1s ease forwards;
  animation-delay: 0.5s;
}

/* Navbar unfold animation */
.animate-navbar {
  opacity: 0;
  transform: scaleY(0.85);
  transform-origin: top;
  filter: blur(6px);
  animation: navReveal 0.9s cubic-bezier(.4,0,.2,1) forwards;
  animation-delay: 0.8s;
}

/* Menu items stagger */
.animate-nav-item {
  opacity: 0;
  transform: translateY(20px);
}

/* Keyframes */
@keyframes bodyFade {
  to { opacity: 1; }
}

@keyframes logoLeft {
  from {
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes logoRight {
  from {
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes navReveal {
  to {
    opacity: 1;
    transform: scaleY(1);
    filter: blur(0);
  }
}
@keyframes navItemFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Animate top section */
.top-div1 {
  transition:
    opacity 0.6s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* Fixed header on scroll */
#mainHeader.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  animation: headerSlideDown 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Smooth hide of top logo strip */
#mainHeader.fixed-header .top-div1 {
  opacity: 0;
  transform: translateY(-60px);
  pointer-events: none;
  display: none;
}

/* Slide-down animation for fixing */
@keyframes headerSlideDown {
  from {
    transform: translateY(-40px);
  }
  to {
    transform: translateY(0);
  }
}


#mainHeader.fixed-header .navbar-brand{display: block; margin-left: 20px;}

#mainHeader.fixed-header  .navbar{background: #fff; padding: 0;}
#mainHeader.fixed-header .navbar-nav .nav-link{color:var(--color1)}
#mainHeader.fixed-header .navbar-nav .nav-link:hover, #mainHeader.fixed-header .navbar-nav .nav-link.active{color:#426081;}
#mainHeader.fixed-header .navbar-nav .nav-link:hover::before, #mainHeader.fixed-header .navbar-nav .nav-link.active::before{color:var(--color1)}



       .top-div1{background: linear-gradient(to bottom,  #b0c4d9 0%,  #b0c4d9 33%, #ffffff 33%,  #ffffff 100%); padding-top: 10px; padding-bottom: 10px;}

       .navbar{background: var(--color1);}
       .navbar-brand{display: none;}

       .hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
}
.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    left: 0;
    transition: 0.4s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

       .navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 5px 25px !important;
  position: relative;
  transition: color 0.3s ease;
    font-family: var(--font1);
  font-size: clamp(15px, 1vw + 0.2rem, 15px);
   transition: width 0.3s ease;
   
}

 .navbar-nav .nav-link::before {
  content: "\f111"; /* Font Awesome circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
 right  : 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5em;
}
 .navbar-nav .nav-item:last-child .nav-link:before{content: none;}
      .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active{color:#597591}

      .navbar-nav .nav-link:hover::before, .navbar-nav .nav-link.active::before{color:#fff}

      .video-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play button base */
.play-btn {
  width: 80px;
  height: 80px;
  background-color: #000;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0; /* hidden by default */
  pointer-events: none;
  position: relative;
  transition: opacity 0.3s ease, transform 0.2s ease, background-color 0.3s;
}

/* Show on hover of video area */
.video-wrapper:hover .play-btn {
  opacity: 1;
  pointer-events: auto;
}

/* Play icon */
.play-btn.play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* Pause icon */
.play-btn.pause::before,
.play-btn.pause::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 24px;
  background: #fff;
  transform: translateY(-50%);
}

.play-btn.pause::before {
  left: 32px;
}

.play-btn.pause::after {
  right: 32px;
}

/* Hover color */
.play-btn:hover {
  background-color: var(--color1);
  transform: scale(1.1);
}


.video-overlay {
  pointer-events: none; /* 👈 allows clicks to reach video */
}

.play-btn {
  pointer-events: auto; /* button still clickable */
}


.scroll-animate .animate-slide-up,
.scroll-animate .animate-pop-in img {
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  transition: all 0.8s ease;
}

.scroll-animate.visible .animate-slide-up {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-animate.visible .animate-pop-in img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Slide-up text */
.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pop-in icon */
.animate-pop-in img {
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
  animation: popIn 0.8s ease forwards;
  animation-delay: 0.6s;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Hover effects (optional) */
.wel-mob a:hover {
  color: #d62976;
  transform: translateY(-2px);
  transition: color 0.3s ease, transform 0.3s ease;
}

.animate-pop-in img:hover {
  transform: scale(1.1) rotate(5deg);
  transition: all 0.3s ease;
}





.wel-book{background: #f5f5f5; text-align: center; padding-top: 30px; padding-bottom: 30px; text-transform: uppercase;}
.wel-contact{ column-gap: 30px;}
.wel-book-head{font-size: 20px;}
.wel-mob{font-size: 27px; font-weight: 600; }
.wel-mob a{color:var(--color1); transition: color 0.3s ease, transform 0.3s ease;}
.wel-mob a:hover{
  color: #244f7e; /* Instagram pink / accent */
  transform: translateY(-2px);
}

.video-wrapper1{
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper1 iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* Scroll Animate Base */
.scroll-animate .animate-video,
.scroll-animate .animate-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When visible */
.scroll-animate.visible .animate-video,
.scroll-animate.visible .animate-text {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes for staggered effect */
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.9s; }


.wel-info{padding-top: 60px; padding-bottom: 60px; text-align: center;}
.wel-info h1{ color:var(--color1); font-size: 34px; padding-bottom: 20px;}
.wel-det{padding-top: 40px;}
.wel-info p{width: 60%; margin-left: auto; margin-right: auto;}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Scroll Animate Base */
.scroll-animate .animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When visible (added via IntersectionObserver) */
.scroll-animate.visible .animate-fade-up {
  opacity: 1;
  transform: translateY(0);
}


.wel-gallery{background: var(--color2); padding-top: 60px; padding-bottom: 60px; text-align: center;}
.head-block{margin-bottom: 30px;}
.wel-gallery-head{color:#1b1b1b; font-size: 27px;  font-weight: 600; margin-bottom: 10px;}
.head-block p{width: 60%; margin-left: auto; margin-right: auto;}


/* Carousel image */
.homestay-gallery img {
  width: 100%;
  border:7px solid #fff;
  border-radius: 0px;
  cursor: pointer;
}

.homestay-gallery figure {
  position: relative;
  overflow: hidden;
}

.homestay-gallery img {
  width: 100%;
  border: 7px solid #fff;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Zoom + slight darkening */
.homestay-gallery figure:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* Optional overlay icon */
.homestay-gallery figure::after {
  content: "\f002"; /* fa-magnifying-glass */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* required for solid icons */
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.homestay-gallery figure:hover::after {
  opacity: 1;
}


/* Nav positioning */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-nav button {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(26,43,60,0.8) !important;
  pointer-events: auto;
  top:50%;
  transform: translateY(-50%);
}

/* Prev / Next positions */
.owl-nav .owl-prev { left: -60px; }
.owl-nav .owl-next { right: -60px; }

/* Font Awesome icons */
.owl-nav .owl-prev::before,
.owl-nav .owl-next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  line-height: 45px;
  text-align: center;
  display: block;
}

.owl-nav .owl-prev::before {
  content: "\f053"; /* chevron-left */
}

.owl-nav .owl-next::before {
  content: "\f054"; /* chevron-right */
}

.owl-nav button:hover {
  background: rgba(26,43,60,1) !important;
}
.fancybox-infobar {
  display: none !important;
}

.wel-acc{background: var(--color1); color:#fff; padding-top: 60px; padding-bottom: 60px;}
.acc-flex{display: flex; justify-content: space-between;}
.acc-left{width: 50%;}
.acc-head{font-size: 27px;  font-weight: 600; margin-bottom: 30px;}
.acc-right{display: flex; justify-content: space-between; column-gap: 20px;}
.view-more{width: 21%;}
.view-more a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-more a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.view-more a:hover {
  color: var(--color2);
}

.view-more a:hover::after {
  transform: scaleX(0.6);
}

.acc-img{display: flex; column-gap: 20px;}
.acc-img img{border: 7px solid #fff; transition: transform 0.5s ease, box-shadow 0.5s ease;}
.acc-img figure {
  position: relative;
  transition: transform 0.4s ease;
}

.acc-img img {
  border: 7px solid #fff;
  transition: 
    filter 0.4s ease,
    box-shadow 0.4s ease;
}

.acc-img figure:hover {
  transform: translateY(-8px);
}

.acc-img figure:hover img {
  filter: saturate(1.25) contrast(1.15) hue-rotate(-5deg);
  box-shadow: 0 18px 40px rgba(26,43,60, 0.3);
}




.wel-things{background: var(--color2); padding-top: 60px; padding-bottom: 60px; text-align: center;}
.things-head{font-size: 27px;  font-weight: 600;  color:#1b1b1b; margin-bottom: 10px;}
.things-about p{width: 80%; margin-left: auto; margin-right: auto;}
.things-flex{display: flex; justify-content: space-between; column-gap: 20px;}
.things-flex img{border: 7px solid #fff; transition: 
    transform 0.5s ease,
    filter 0.4s ease,
    box-shadow 0.4s ease;
    max-width: 100%;
}
.things-flex p{font-size: 18px;  font-weight: 600;  color:#1b1b1b; margin-top: 20px; transition: color 0.3s ease;}
.thing1{width: 24%;}
.things-flex figure {
  position: relative;
  transition: transform 0.4s ease;
}

/* Hover effects */
.things-flex figure:hover {
  transform: translateY(-8px);
}

.things-flex figure:hover img {
  transform: scale(1.05);
  filter: saturate(1.2) contrast(1.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.things-flex figure:hover p {
  color: var(--color1); /* nature green */
}


.know-more-wrap {
  display: inline-block;
}

.know-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: var(--color1);
  color: #fff;
  border-radius: 30px;

  font-weight: 600;
  cursor: pointer;
  text-decoration: none; /* important for anchor */
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.know-more span:first-child {
  padding: 6px 15px;
  padding-right: 0;
}

.know-more:hover {
  background: #244f7e;
  box-shadow: 0 10px 25px rgba(26,43,60, 0.35);
  color: #fff;
}

/* Arrow circle */
.know-more .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: url(../images/arrow-bg.png) no-repeat left;
  color: var(--color1);
  border-radius: 50%;
  font-size: 18px;
}

/* Arrow animation */
.know-more .arrow i {
  transition: transform 0.35s ease;
}

.know-more:hover .arrow i {
  transform: translateX(6px) rotate(-5deg);
}

/* Optional pulse on load */
@keyframes arrowPulse {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(4px); }
  100% { transform: translateX(0); }
}



.wel-insta{background: linear-gradient(to bottom, #1a2b3c 30%, #fff 30%); padding-top: 60px; padding-bottom: 60px; text-align: center;}
.wel-insta h3{font-size: 27px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}


.fixed-contact-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.contact-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp */
.contact-btn.whatsapp {
  background: #25d366;
}

/* Call */
.contact-btn.call {
  background: #000;
}

.contact-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}



/* ------ BLOG HEADER – clean, no stamp, no counter ------ */
.blog-section{padding-top: 90px; padding-bottom: 90px;}
    .blog-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      border-bottom: 3px solid var(--color1);
      padding-bottom: 0.75rem;
    }

    .blog-header h5 {
      font-weight: 800;
      font-size: 2.8rem;
      color: #1a1a1a;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      letter-spacing: -0.02em;
    }

    .blog-header h1 i {
      font-size: 2.6rem;
      color: var(--color1);
    }

    /* ------ polaroid card – instant photo aesthetic on white ------ */
    .col {
      display: flex;
    }

    .polaroid-card {
      background: var(--polaroid-bg);
      border: none;
      border-radius: 2px 20px 2px 20px;
      box-shadow: 
        6px 8px 0 rgba(241,12,69,0.08),
        0 8px 20px -8px rgba(0,0,0,0.08);
      transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1);
      width: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      transform: rotate(var(--rot, 0deg));
    }

    /* playful rotation – each photo slightly tilted */
    .polaroid-card:nth-child(even) {
      --rot: -1.2deg;
    }
    .polaroid-card:nth-child(odd) {
      --rot: 1deg;
    }
    .polaroid-card:nth-child(3n) {
      --rot: 1.8deg;
    }
    .polaroid-card:nth-child(5n) {
      --rot: -0.7deg;
    }
    .polaroid-card:nth-child(7n) {
      --rot: 2.2deg;
    }

    .polaroid-card:hover {
      transform: rotate(0deg) scale(1.02);
      box-shadow: 
        12px 14px 0 rgba(241,12,69,0.12),
        0 18px 30px -10px rgba(0,0,0,0.15);
      z-index: 10;
    }

    /* polaroid image – instant film frame */
    .polaroid-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
      border-bottom: 12px solid var(--polaroid-bg);
      border-radius: 2px 20px 0 0;
      transition: 0.2s;
    }

    .blog-body {
      padding: 0.8rem 1.2rem 1.4rem 1.2rem;
      background: var(--polaroid-bg);
      border-radius: 0 0 2px 20px;
    }

    /* card title – normal bold font, no handwriting */
    .blog-title {
      font-weight: 700;
      font-size: 1.3rem;
      color: #1e1e1e;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .blog-text {
      font-size: 0.86rem;
      color: #3a3a3a;
      margin-bottom: 1.2rem;
      line-height: 1.55;
      font-weight: 350;
    }

    /* ------ READ STORY BUTTON – solid pink, and stretched link makes whole card clickable ------ */
    .btn-read {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background-color: var(--color1);
      color: white;
      font-weight: 600;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      text-decoration: none;
      border: none;
      transition: 0.15s ease;
      box-shadow: 0 4px 8px rgba(241,12,69,0.2);
      /* stretched link will make the entire card clickable */
    }

    .btn-read i {
      font-size: 1.1rem;
      transition: transform 0.15s;
    }

    .btn-read:hover {
      background-color: #c00a36;
      color: white;
      box-shadow: 0 6px 12px rgba(241,12,69,0.25);
    }

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

    /* closing line – minimal, no numbers */
    .polaroid-colophon {
      margin-top: 4rem;
      text-align: center;
      font-size: 0.95rem;
      font-weight: 400;
      color: rgba(0,0,0,0.5);
      border-top: 1px solid rgba(241,12,69,0.2);
      padding-top: 1.8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    @media (max-width: 576px) {
      
      .blog-header h1 { font-size: 2.2rem; }
.blog-section{padding-top: 30px; padding-bottom: 30px;}
      .blog-header {justify-content: center;}
    }


.footer-div{background: var(--color1); margin-top: 100px; color:#fff; font-size: 18px; padding-bottom: 60px;}
.footer-logo{margin-bottom: 40px;}
.footer-logo img{margin-left: auto; margin-right: auto; margin-top: -100px;}

.footer-head{font-size: 28px; font-weight: 600; margin-bottom: 20px;}
.footer-div a{color:#fff}

/* Make sure Font Awesome 6 CSS is loaded in your <head> */
.footer-address {
  position: relative;
  padding-left: 40px; /* space for the icon */
 
}

/* Add Font Awesome icon as background using ::before */
.footer-address::before {
  content: "\f3c5"; /* Unicode for fa-location-dot in FA6 */
  font-family: "Font Awesome 6 Free"; /* or "Font Awesome 6 Pro" if using Pro */
  font-weight: 900; /* Required for solid icons */
  position: absolute;
  left: 0;
  top: 0%;
  font-size: 18px; /* size of the icon */
  color: #fff; /* icon color */
}

.footer-call {
  position: relative;
  padding-left: 40px; /* space for the icon */
 
}

/* Phone icon */
.footer-call::before {
  content: "\f095"; /* fa-phone (solid) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid icon */
  position: absolute;
  left: 0;
top: 0;
  font-size: 16px;
  color: #fff; /* match your theme */
}

.footer-mail {
  position: relative;
  padding-left: 40px; /* space for the icon */
 
}

/* Phone icon */
.footer-mail::before {
  content: "\f0e0"; /* fa-phone (solid) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid icon */
  position: absolute;
  left: 0;
top: 0;
  font-size: 16px;
  color: #fff; /* match your theme */
}

.footer-list {
  margin: 0;
  padding: 0;
}

.footer-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  list-style: none;
  transition: padding-left 0.25s ease;
}

/* Chevron icon */
.footer-list li::before {
  content: "\f054"; /* fa-chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #fff;
   transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

/* Link style */
.footer-list li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 2px;
}

/* Bottom line */
.footer-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color2);
  transition: width 0.3s ease;
}

/* Hover effects */
.footer-list li::before:hover {
  padding-left: 26px;
}

.footer-list li:hover::before {
  transform: translate(6px, -50%);
  color: var(--color2);
  opacity: 1;
}

.footer-list li:hover a::after {
  width: 100%;
}

.social-link a {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Icon image */
.social-link img {
 
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect */
.social-link a:hover img {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 6px 10px rgba(241, 12, 69, 0.35));
}

.footer-call a {
  position: relative;
  color: #fff;
  text-decoration: none;
  margin-right: 6px;
  transition: color 0.25s ease;
}

/* Animated underline */
.footer-call a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--color2);
  transition: width 0.3s ease;
}

/* Hover effect */
.footer-call a:hover {
  color: var(--color2);
}

.footer-call a:hover::after {
  width: 100%;
}

.copy-div{padding-top:20px; padding-bottom:20px; color:#000}

.copy-div a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copy-div a:hover {
  color: #555; /* change to any color you like */
}


.hero-banner{position: relative;}
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.banner-content h1 {
  display: inline-block;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.about-div1{padding-top: 90px; padding-bottom: 90px;}
.about-div1 h1{font-size: 18px; font-weight: 500; color:var(--color1); text-transform: uppercase;}

.left-animated-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
    font-size: 36px;
    font-weight: 700;
    color: #1c1c1c;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* Bottom line (left aligned) */
.left-animated-heading::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 5px;
}

/* Moving circle */
.left-animated-heading::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 14px;
    height: 14px;
    background: #344c64; /* theme color */
    border-radius: 50%;
    animation: slideDot 2.5s ease-in-out infinite alternate;
}

/* Back & forth animation */
@keyframes slideDot {
    from {
        left: 0;
    }
    to {
        left: 106px; /* line width - dot size */
    }
}

.about-img{display: flex;  align-items: center; column-gap: 15px;}
.about-img1{display: flex; flex-direction: column; row-gap: 15px;}
/* .about-img .about-img1:first-child{align-items:end;}
.about-img .about-img1:last-child{justify-content: center;} */
.about-img .about-img1:first-child figure:last-child{margin-left: auto;}


.about-img figure {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

/* stagger animation */
.about-img .about-img1:nth-child(1) figure:nth-child(1) {
  animation-delay: 0.2s;
}
.about-img .about-img1:nth-child(1) figure:nth-child(2) {
  animation-delay: 0.4s;
}
.about-img .about-img1:nth-child(2) figure:nth-child(1) {
  animation-delay: 0.6s;
}
.about-img .about-img1:nth-child(2) figure:nth-child(2) {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-div2{padding-bottom: 90px;}

.coffee-overlay {
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

/* Image */
.coffee-overlay img {
    width: 100%;
    height: auto;
    display: block;
    outline: 1px solid rgba(255, 255, 255, 0.35);
    outline-offset: -10px;
    transition: box-shadow 0.5s ease, outline-color 0.5s ease;
}

.coffee-overlay:hover img {
    box-shadow: 0 20px 40px rgba(111, 78, 55, 0.4);
    outline-color: rgba(255, 255, 255, 0.6);
}



.about-div3{padding-bottom: 90px;}


.accomodation-section{background: #f9fafb; padding-top: 60px; padding-bottom: 60px;}

.accommodation-heading h1{
           font-size: 18px;
  font-weight: 500;
  color: var(--color1);
  text-transform: uppercase;
        }

        .accommodation-heading .left-animated-heading::after{animation: slideDot1 2.5s ease-in-out infinite alternate;}

        /* Back & forth animation */
@keyframes slideDot1 {
    from {
        left: 38%;
    }
    to {
        left: 62%; /* line width - dot size */
    }
}
        
       

.accommodation-heading .left-animated-heading::before, .accommodation-heading .left-animated-heading::after{left: 50%; transform: translateX(-50%);}
        

.intro-text {
            border-left: 5px solid var(--color1);
            padding-left: 20px;
            font-size: 1.1rem;
        }
        
        .room-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            border-top: 5px solid var(--color1);
        }
        
        .room-img {
            height: auto;
            width: 100%;
            object-fit: cover;
        }
        
        .room-type {
            color: var(--color1);
            font-weight: 700;
            letter-spacing: 1px;
        }
        .room-count {
  color: #6485a6;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
        
        .capacity-badge {
            background-color: #000;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .bathroom-section {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
        }
        
        .bathroom-img {
            height: 350px;
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .coffee-icon {
            color: var(--color1);
            font-size: 2rem;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(111, 78, 55, 0.05), rgba(45, 80, 22, 0.05));
            border-radius: 15px;
            padding: 25px;
            border: 2px dashed #587694;
            margin-top: 40px;
        }
        
        .quote-icon {
            color: var(--color1);
            font-size: 1.5rem;
            opacity: 0.5;
        }
        
        .quote-start {
            margin-right: 10px;
        }
        
        .quote-end {
            margin-left: 10px;
        }
        
        .section-spacer {
            height: 0px;
        }



        .page-wrapper {
          padding-top: 60px; padding-bottom: 60px;
            margin: 0 auto;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(26, 43, 60, 0.1);
        }
        
        .main-title {
            font-size: 3.0rem;
            font-weight: 800;
            color: var(--color1);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .main-title:after {
            content: '';
            position: absolute;
            width: 80%;
            height: 5px;
            background: linear-gradient(90deg, var(--color1), transparent);
            bottom: -10px;
            left: 10%;
            border-radius: 5px;
        }
        
        .section-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 15px 40px rgba(26, 43, 60, 0.08);
            border-top: 5px solid var(--color1);
        }
        
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .section-title {
            color: var(--color1);
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }
        
        .location-tag {
            background: linear-gradient(45deg, var(--color1), #6586a7);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(26, 43, 60, 0.2);
        }
        
        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .activity-box {
            background: linear-gradient(145deg, #ffffff, #eef4fb);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            border: 1px solid rgba(26, 43, 60, 0.1);
            display: flex;
    flex-direction: column;
        }
        
        .activity-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(26, 43, 60, 0.15);
        }
        
        .activity-number {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--color1);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            z-index: 2;
            display: none;
        }
        
        .activity-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .activity-box:hover .activity-image {
            transform: scale(1.05);
        }
        
        .activity-content {
            padding: 25px;
            display: flex;
    flex-direction: column;
    height: 100%;
        }
        
        .activity-title {
            color: var(--body-color);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .activity-tag {
            display: inline-flex;
            padding: 5px 15px;
            background: rgba(26, 43, 60, 0.1);
            color: var(--color1);
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 10px;
            margin-top: auto;
            align-self: flex-start;
        }
        
        .seasonal-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, #2a4057, #1a2b3c);
            color: white;
            padding: 8px 18px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(26, 43, 60, 0.3);
        }
        
        .outside-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .outside-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 2px solid rgba(26, 43, 60, 0.1);
             display: flex;
    flex-direction: column;
        }
        
        .outside-card:hover {
            transform: translateY(-8px);
            border-color: var(--color1);
            box-shadow: 0 15px 35px rgba(26, 43, 60, 0.15);
        }
        
        .outside-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 2px solid rgba(241, 12, 69, 0.1);
        }
        
        .outside-content {
            padding: 20px;
             display: flex;
    flex-direction: column;
    height: 100%;
        }
        
        .outside-title {
            color: var(--body-color);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .outside-location {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--color1);
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 8px;
        }
        
        .category-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(26,43, 60, 0.1);
            color: var(--color1);
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 8px;
            border: 1px solid rgba(26, 43, 60, 0.2);
            margin-top: auto;
    align-self: flex-start;
        }
        
        .waterfall-badge {
            background: rgba(66, 153, 225, 0.1);
            color: #4299e1;
            border-color: rgba(66, 153, 225, 0.2);
        }
        
        .wildlife-badge {
            background: rgba(72, 187, 120, 0.1);
            color: #48bb78;
            border-color: rgba(72, 187, 120, 0.2);
        }
        
        .park-badge {
            background: rgba(237, 137, 54, 0.1);
            color: #ed8936;
            border-color: rgba(237, 137, 54, 0.2);
        }
        
        .viewpoint-badge {
            background: rgba(159, 122, 234, 0.1);
            color: #9f7aea;
            border-color: rgba(159, 122, 234, 0.2);
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-card {
                padding: 25px;
            }
            
            .activities-grid {
                grid-template-columns: 1fr;
            }
            
            .outside-grid {
                grid-template-columns: 1fr;
            }
        }


.tariff-container{padding-top: 90px; padding-bottom: 90px;}
.rooms-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            perspective: 1000px;
        }
        
        .room-wrapper {
            position: relative;
            transition: all 0.5s ease;
        }
        
        .room-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            border: 1px solid rgba(26, 43, 60, 0.1);
        }
        
        .room-wrapper:hover .room-card {
            transform: translateY(-20px) rotateY(5deg);
            box-shadow: 0 40px 80px rgba(26, 43, 60, 0.15);
        }
        
        .image-container {
            position: relative;
            height: 350px;
            overflow: hidden;
        }
        
        .room-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
        }
        
        .room-wrapper:hover .room-image {
            transform: scale(1.1);
        }
        
        .room-name-banner {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, var(--color1), #7f96ac);
            color: white;
            padding: 20px 30px;
            font-size: 2.0rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .room-content {
            padding: 40px;
        }
        
        .room-description {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
         .price-display {
            margin-bottom: 40px;
        }
        
        .price-amount {
            font-size: 2rem;
            font-weight: 900;
            color: #000;
            margin-bottom: 5px;
        }
        
        .price-unit {
            color: #666;
            font-size: 1.1rem;
        }
        
        .inclusions {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .inclusion-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(26, 43, 60, 0.08);
            padding: 12px 20px;
            border-radius: 10px;
            border: 1px solid rgba(26, 43, 60, 0.15);
        }
        
        .inclusion-item i {
            color: var(--color1);
        }
        
        .inclusion-item span {
            font-weight: 500;
            color: var(--body-color);
        }
        
        .coffee-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: white;
            color: var(--color1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 10px 25px rgba(241, 12, 69, 0.2);
            z-index: 2;
        }
        
        @media (max-width: 992px) {
            .rooms-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            
            
            .room-name-banner {
                font-size: 2rem;
            }
            
            .price-amount {
                font-size: 3rem;
            }
            .inclusions{justify-content: center;}
        }
        
        @media (max-width: 576px) {
            
            
            .room-content {
                padding: 25px;
            }
            
            .image-container {
                height: 250px;
            }
            
            .price-amount {
                font-size: 2.5rem;
            }
            
            .room-name-banner {
                font-size: 1.8rem;
                padding: 15px 20px;
            }
        }


.contact-section {
  background: #f7f7f7;
}
.main-title-section{text-align: center;}
.separater {
  width: 50px;
  height: 3px;
  background: var(--color1);
  margin-left: auto; margin-right: auto;
}

.te-subtitle {
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
}

.te-title {
  font-size: 36px;
  color:var(--color1);
}

.contact-box {
  background: #fff;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.05);
  height: 100%;
}
.contact-box span{color:var(--color1); font-size: 22px;}
.contact-box a{color:var(--body-color)}

.icon-circle {
  width: 55px;
  height: 55px;
  background: var(--color1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-box h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-box p {
  margin: 0;
  font-size: 15px;
  color: #555;
}


.contact-section1{padding-top: 90px; padding-bottom: 90px;}

/* Map */
.map-wrap {
  width: 100%;
  height: 100%;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.enquiry-form {
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.enquiry-form h4{color:var(--color1); font-size: 34px;}
.enquiry-form  input{padding:10px; margin-bottom: 20px;}
.submit-btn{background: var(--color1); color:#fff; padding: 10px 40px; margin-top: 20px; display: flex; justify-content: center;  } 
.submit-btn:hover{background: #000; color: #fff;}

/* Transparent form fields */
.form-transparent {
  background: transparent;
  border: 1px solid rgba(96, 96, 96, 0.7);
  color: var(--body-color);
}

.form-transparent::placeholder {
  color: var(--body-color);
}



textarea.form-transparent {
  resize: none;
}



.gallery-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.gallery-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--color1); /* pista / nature green */
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.gallery-section figure {
  margin: 0;
  overflow: hidden;
}

.gallery-section img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-section a:hover img {
  transform: scale(1.05);
}
.gallery-section a {
  position: relative;
  display: block;
}

.gallery-section img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.gallery-section a::after {
  content: "";
  position: absolute;
  inset: 8px;                  /* distance from edges */
  border: 1px solid rgba(255, 255, 255, 0.6); /* light border */
  border-radius: 6px;
  pointer-events: none;
}


/* SECTION BACKGROUND */
.locate-section {
  background: linear-gradient(180deg, #e0e9f2, #ffffff);
}

/* TITLE */
.locate-title {
  font-weight: 800;
}

.locate-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: var(--color1);
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* TIMELINE */
.route-line {
  position: relative;
  padding-left: 40px;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(26, 43, 60, 0.25);
}

.route-step {
  position: relative;
  margin-bottom: 40px;
}

.route-step:last-child {
  margin-bottom: 0;
}

.route-icon {
  position: absolute;
  left: -2px;
  width: 28px;
  height: 28px;
  background: var(--color1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.route-box {
  background: #ffffff;
  padding: 20px 34px;
  border-radius: 16px;
  box-shadow: 0 1rem 2.5rem rgba(252, 196, 210, 0.12);
}

/* DISTANCE PILLS */
.distance-pill {
  background: var(--color2);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
}

.distance-pill strong {
  color: var(--color1);
}

/* SUB HEADING COLOR */
.text-accent {
  color: var(--color1);
}


@media(max-width:1333px){
  .owl-nav .owl-prev {
  left: 0px;
}
.owl-nav .owl-next {
  right: 0px;
}
#mainHeader.fixed-header .navbar-nav .nav-link{padding: 5px 15px !important; font-size: 14px;}

}

@media(max-width:1025px){
.navbar-nav .nav-link{padding: 5px 20px !important; }
#mainHeader.fixed-header .navbar-nav .nav-link{padding: 5px 15px !important; font-size: 14px;}
.acc-left{width: 60%;}
.view-more{width: 30%;}
}
@media(max-width:1000px){
  #mainHeader.fixed-header .navbar-nav .nav-link{padding: 5px 10px !important;
  }
}

@media(max-width:993px)
{
  body{text-align: center;}
  /* .navbar-nav .nav-link{font-size: 13px; padding: 5px 14px !important;} */
  .view-more{width: 30%;}
  .navbar{background: #fff;}
  .navbar-toggler{position: fixed; top: 10px; right: 20px;}
  .navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler-icon {
  width: 28px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Cline x1='0' y1='3' x2='28' y2='3' stroke='%23000' stroke-width='2'/%3E%3Cline x1='6' y1='10' x2='28' y2='10' stroke='%23000' stroke-width='2'/%3E%3Cline x1='12' y1='17' x2='28' y2='17' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
}
.navbar .offcanvas{background: var(--color1);}

.navbar-nav .nav-link::before{content: none;}
.navbar-nav .nav-link{border-bottom: 1px solid #f0557b; padding: 5px !important;}
.offcanvas-title{color:#fff}
.top-div1 .d-flex{column-gap: 20px;}
.acc-flex{flex-direction: column;}
.acc-left{width: 100%;}
.acc-right{flex-direction: column; margin-bottom: 30px;}
.acc-head{margin-bottom: 10px;}
.view-more{width: auto;}
.things-flex{flex-wrap: wrap;}
.thing1{width: 48%;}
.footer-div{font-size: 15px;}
.footer-info-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;      /* stack vertically */
  align-items: center;         /* center horizontally */
  gap: 10px;                   /* space between address & call */
}
.footer-address,
.footer-call {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-align: center;
}
.footer-info{margin-bottom: 30px;}
.footer-list{display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; line-height: 20px;}
.footer-list li{margin-bottom: 0;}
.footer-list li a{padding-bottom: 0;}
.footer-social{margin-top: 30px;}
.footer-head{font-size: 22px;}
.animate-navbar{opacity: 1;   
  transform: none;
  
  filter: none; animation: none;}
  .about-div1 {
  padding-top: 6px;
  padding-bottom: 30px;
}
.left-animated-heading{font-size: 30px;}
  .left-animated-heading::before{left: 50%; transform: translateX(-50%);}
   .left-animated-heading::after{animation: slideDot1 2.5s ease-in-out infinite alternate;}
   .about-img{justify-content: center; margin-top: 20px;}
   .about-div3 img{margin-bottom: 30px; width: 100%;}
}


@media(max-width:769px)
{
  .wel-info p, .head-block p{width: 80%;}
}
@media (max-width: 560px) {
.thing1{width: 100%; margin-bottom: 20px;}
.things-flex img{width: 80%; margin-left: auto; margin-right: auto;}
.acc-img{flex-direction: column;}
.acc-img img{margin-bottom: 20px;}
.video-wrapper {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wel-mob {
  font-size: 17px;}
  .wel-info h1{font-size: 26px;}
  .wel-info p, .head-block p {
  width: 100%}
  .copy-div{font-size: 11px;}
}