
/* ===== FORCE SHOW BOOK NOW ON MOBILE ===== */
@media (max-width: 991px) {

  .book-btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 9999;
  }

  .navbar {
    overflow: visible !important;
  }

  .navbar .container {
    overflow: visible !important;
  }
}





/* ================= ROOT VARIABLES ================= */
:root {
  --green: #2f5d3a;
  --green-dark: #2f4a3a;
  --green-light: #eaf3ec;
  --text-dark: #333;
  --text-light: #fff;
}

/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body{
    font-family:'Raleway',sans-serif;
    font-size:16px;
    line-height:1.8;
    color:#555;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Raleway',sans-serif;
    font-weight:700;
    color:#18452c;
}




/* ================= NAVBAR ================= */

/* ================= NAV LINK HOVER ANIMATION ================= */

/* ================= NAVBAR BASE ================= */

.custom-nav {
  background-color: rgba(219, 232, 193, 0.45);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 90px;
}

/* ================= NAV LINKS ================= */

.nav-links .nav-link {
  position: relative;
  color: #1f2f1f !important;
  font-weight: 500;
  padding: 8px 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* underline animation */
.nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #0b4f2a;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links .nav-link:hover {
  color: #0b4f2a !important;
  transform: translateY(-2px);
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  width: 70%;
}
@media (max-width: 991px) {

  .nav-links .nav-link {
    display: block;      
    transform: none;     
  }

  body {
    overflow-x: hidden;
  }

  .book-btn {
    display: none;
  }
}













/* ================= BOOK NOW BUTTON ================= */
.book-btn {
  position: relative;
  background: #0b4f2a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  overflow: hidden;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

/* Create the animated bottom border */
.book-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;              /* thickness of the border */
  background: #fff;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

/* Hover effect */
.book-btn:hover {
  background: #083d21;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(11, 79, 42, 0.35);
  color: #fff;
}

/* Animate bottom border on hover */
.book-btn:hover::after {
  width: 100%;
}


/* Mobile view: show button */
@media (max-width: 768px) {
  .book-btn {
    
    position: relative;
    background: #0b4f2a;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    overflow: hidden;
    transition: 
      transform 0.3s ease,
      box-shadow 0.3s ease,
      background 0.3s ease;
  }

  .book-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #fff;
    transition: 0.3s ease;
    transform: translateX(-50%);
  }

  .book-btn:hover {
    background: #083d21;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11, 79, 42, 0.35);
    color: #fff;
  }

  
}


/* ================= MOBILE NAV ================= */

@media (max-width: 991px) {

  .navbar-brand img {
    height: 65px;
  }

  .nav-links {
    text-align: center;
    margin-top: 15px;
  }

  .nav-links .nav-link {
    padding: 12px 0;
  }

  .nav-links .nav-link::after {
    bottom: 0;
  }

  .nav-links .nav-link:hover::after,
  .nav-links .nav-link.active::after {
    width: 40%;   /* neat mobile underline */
  }

  .book-btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }
}

/* ================= SLIDER ================= */
.hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.carousel-item {
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.hero-box {
 
 
  text-align: center;
  
}

.hero-box h1 {
    font-family:'Raleway',sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;

    background: linear-gradient(180deg, #ffffff 0%, #f8fff8 35%, #b7e4a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow: 2px 2px 4px rgba(27, 77, 43, 0.25);
}


.hero-box p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 12px;
    letter-spacing: 0.8px;
    line-height: 1.8;

    background: linear-gradient(to right, #ffffff, #e6e6e6, #555555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	/* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

/* Leaf icon */
.leaf-icon {
    width: 50px;
    margin-bottom: 0;
    filter: drop-shadow(0 3px 6px rgba(104, 168, 104, 0.45));
}


.hero-divider{
    width: 130px;
    height: 2px;
    margin: 25px auto 0;
    border-radius: 50px;
    background: linear-gradient(to right,
        transparent,
        #ffffff,
        #8bc34a,
        #ffffff,
        transparent);
}



/* ================= HERO MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .hero-content {
    padding: 20px;              
  }

  .hero-box {
    width: 100%;                
    max-width: 320px;          
    padding: 25px 20px;
  }

  .hero-box h1 {
    font-size: 30px;            
    line-height: 1.2;
  }

  .hero-box p {
    font-size: 16px;
	/* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
  }

  .leaf-icon {
    width: 36px;
  }

}
.section-heading{
	text-align:center;
	margin-top:-40px;
	padding-bottom:30px;
	}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 80px 0;
  background: url("images/leaf-bg.png") center/cover no-repeat;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  
}

.about-text p {
  margin-bottom: 15px;
  text-align:justify;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
  
}


.about-text{
	
	margin-top:-60px;}

.about-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ================= MOBILE RESPONSIVE ABOUT ================= */
@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;   /* single column */
  }

  .about-text {
    order: 1;   /* text first */
  }

  .about-image {
    order: 2;   /* image below content */
  }

}



/* ================= SERVICES ================= */
.services-section{
    padding:60px 0;
    background-image:url("../images/service_s_bg.png");
    background-repeat:no-repeat;
    background-position: calc(100% + 120px) bottom;
    background-size:420px auto; /* adjust */
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 6px;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.05); /* pop + zoom */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* deeper shadow */
   background: #eef5d5;
}

/* Service Icon */

.service-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    background:#0b5d3b;
    border:3px solid #ffffff;
    outline:2px dashed #0b5d3b;
    outline-offset:4px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s ease;
    box-shadow:0 8px 20px rgba(11,93,59,.18);
}

.service-icon i{
    font-size:36px;
    color:#ffffff;
    transition:0.4s ease;
}

.service-card:hover .service-icon{
    background:#ffffff;
    border-color:#0b5d3b;
    transform:rotate(8deg) scale(1.08);
}

.service-card:hover .service-icon i{
    color:#0b5d3b;
}

.service-card h4 {
  color: var(--green);
  margin-bottom: 10px;
  font-size:17px;
}

.service-card p {
  font-size: 16px;
  color: #555;
}

/* ================= SECTION TITLES ================= */
.section-title {
  position: relative;
  font-family:'Raleway',sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  display: inline-block;
  padding-top: 50px; /* space for leaf */
}

.section-title img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
}

/* ================= VIEW MORE ================= */
.view-more {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 12px;          /* space for border effect */
  color: var(--green);
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Create border effect using ::before */
.view-more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 2px solid var(--green-dark);
  border-radius: 6px;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* Hover effect */
.view-more:hover {
  color: var(--green-dark);
  transform: translateY(-3px); /* pop-up effect */
}

.view-more:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;                /* show border */
}




/* ================= SCROLL ANIMATIONS ================= */
.animate {
  opacity: 0;
  transition: all 1.2s ease;
}

.slide-left {
  transform: translateX(-80px);
}

.slide-right {
  transform: translateX(80px);
}

.slide-up {
  transform: translateY(60px);
}

.animate.show {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}








/* ================= FACILITIES ================= */
.table-fc {
  background-color: rgba(219, 232, 193, 0.7); /* semi-transparent */
  padding: 25px 40px;
  text-align: center;
  border-radius: 10px;
  display: inline-block;   /* allows margin auto centering */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  

  /* animation initial state */
  transform: scale(0.85);
  opacity: 0;
  transition: all 0.8s ease;
}

/* when visible on scroll */
.table-fc.show{
  transform: scale(1);
  opacity: 1;
}




/* Center the table inside its container */
.container table.table-fc {
  margin: 0 auto; /* horizontal centering */
}

/* Hover zoom effect */
.table-fc:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* Stack buttons vertically */
.buttons-column {
  display: flex;
  flex-direction: column;
  align-items: center; /* center buttons horizontally */
  gap: 15px;          /* space between buttons */
  margin-top: 20px;
}

/* Facility buttons */
.facility-btn {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 10px 15px;

  display: flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;
  font-weight: 500;
  width: 100%;
  justify-content: left;

  position: relative;     /* IMPORTANT */
  overflow: hidden;       /* IMPORTANT */

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align:center;
}

/* Icon inside button */
.facility-btn .btn-icon {
  width: 30px;
  height: 30px;
}

/* Gradient layer */
.facility-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ecf3ce, #b7d7a8);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Keep text & icon above gradient */
.facility-btn span,
.facility-btn img{
  position: relative;
  z-index: 2;
}

.facility-btn span{
	text-transform:uppercase;
	letter-spacing:1px;
	}

/* Hover effect */
.facility-btn:hover::before{
  opacity: 1;
}

.facility-btn:hover{
  color: #04471f;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}




/* ================= GALLERY SECTION ================= */
.gallery-section{
  padding: 80px 0;
  
  display: flex;
  justify-content: center;
}

/* MAIN WRAPPER */
.gallery-wrapper{
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center; 
}

/* ================= LEFT TITLE ================= */
.gallery-title-box{
  width: 180px;
  height: 460px;
  background: #ecf3ce;
  border-radius: 0 0 90px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 0; 
}

.gallery-title{
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 26px;
  letter-spacing: 6px;
  color: #1b4d2b;
  font-weight: 600;
}

.gallery-leaf{
  width: 40px;
  margin-top: 14px;
}

/* ================= IMAGE AREA ================= */
.gallery-images{
  position: relative;
  width: 620px;
  height: 460px;
}

/* COMMON IMAGE STYLE */
.gallery-img{
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  box-shadow:
    rgba(0,0,0,0.2) 0px 12px 28px,
    rgba(0,0,0,0.12) 0px 6px 12px;
}

.gallery-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-img:hover img{
  transform: scale(1.06);
}

/* ================= LARGE IMAGE ================= */
.gallery-img.large{
  width: 420px;
  height: 460px;
}

/* ================= SMALL IMAGES ================= */
.gallery-img.small{
  position: absolute;
  width: 260px;
  height: 200px;
  right: 0;
}

/* top image spacing */
.gallery-img.small.top{
  top: 25px;
}

/* bottom image spacing */
.gallery-img.small.bottom{
  bottom: 25px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width: 767px){

  .gallery-section{
    padding: 50px 15px;
  }

  .gallery-wrapper{
    flex-direction: column;
    gap: 25px;
  }

  /* hide vertical title */
  .gallery-title-box{
    display: none;
  }

  /* image container */
  .gallery-images{
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
	margin-top: -45px;  
  }


  .gallery-img{
    position: static !important;
    width: 100% !important;
    height: auto !important;
  }

  .gallery-img.small{
    position: static !important; 
  }

  .gallery-img img{
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .gallery-img:hover img{
    transform: none;
  }
  
  /* ================= MOBILE GALLERY HEADING ================= */
.gallery-mobile-heading{
  margin-top: 55px;   
  
}


  
}
@media(max-width: 480px){
  .gallery-mobile-heading{
    margin-top: 45px;
  }
}


/* ================= ADDRESS SECTION ================= */
.address-section {
  width: 100%;
  background: #fff;
}


/* ================= SLIDER RESPONSIVE FIX ================= */

/* Desktop */
.hero-slider,
.slider-img {
  height: 100vh;
}

/* Tablet */
@media (max-width: 991px) {
  .hero-slider,
  .slider-img {
    height: 70vh;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-slider,
  .slider-img {
    height: 55vh;   
  }
}


/* Image fit fix */
.slider-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* Center hero content */
.hero-content {
  padding: 15px;
  text-align: center;
}

/* Hero box mobile size fix */
@media (max-width: 768px) {

  .hero-box {
    width: 100%;
    max-width: 340px;
    padding: 22px 18px;
  }

  .hero-box h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-box p {
    font-size: 16px;
  }

  .leaf-icon {
    width: 34px;
  }
}

/* Small phones */
@media (max-width: 480px) {

  .hero-box h1 {
    font-size: 24px;
  }

  .hero-box p {
    font-size: 13px;
  }
}




/* ================= MAP WRAPPER ================= */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= ADDRESS BOX ================= */
.address-box {
  position: absolute;
  top: 50%;
  right: 8%;
  left:auto;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95); /* higher opacity for text readability */
  padding: 35px 30px;
  width: 320px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  z-index: 10;
  text-align: center;
}

.addr-leaf {
  width: 40px;
  margin-bottom: 10px;
}

.address-box h3 {
  color: #1b4d2b;
  font-size: 20px;
  margin-bottom: 6px;
}

.address-box h4 {
  font-size: 16px;
  margin-bottom: 10px;
}


.address-box h5 {
  font-size: 16px;
  
}




.address-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
  
}



/*========== mobile ,email========*/

.address-box .contact{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
}

.address-box .contact i{
    color: #78b943;
    width: 18px;
    font-size: 16px;
}

.address-box .contact strong{
    color: #1b4d2b;
    font-weight: 600;
}

.address-box .contact a{
    color: #333;
    text-decoration: none;
}

.address-box .contact a:hover{
    color: #78b943;
}

/*========== mobile ,email========*/






/* ================= SOCIAL ICONS ================= */
.map-social {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 15px;
}

.map-social a {
  font-size: 18px;  /* icon size */
  transition: transform 0.3s ease;
}

/* Real Brand Colors */
.map-social a[href*="facebook.com"] i {
  color: #1877F2;
}

.map-social a[href*="twitter.com"] i {
  color: #1DA1F2;
}

.map-social a[href*="instagram.com"] i {
  /* Instagram gradient simplified with fallback */
  color: #E1306C;
}

.map-social a[href*="linkedin.com"] i {
  color: #0077B5;
}

/* Hover effect (optional subtle scale) */
.map-social a:hover {
  transform: scale(1.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
  .map-wrapper {
    height: auto;
  }

  .map-wrapper iframe {
    height: 350px;
  }

  .address-box {
    position: static;
    transform: none;
    margin: 20px auto 0;
    width: 90%;
  }

  .map-social {
    justify-content: center;
    margin-top: 15px;
  }
}

/* ================= COPYRIGHT SECTION ================= */
.site-footer {
  width: 100%;
  background-color: #304532;
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  font-size: 16px;
  font-family:'Raleway',sans-serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
  .site-footer {
    font-size: 16px;
    padding: 10px 0;
  }
}


/* ================= BOOK HERE SECTION ================= */
.book-here-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #e7f2ec, #f6fbf8, #ddeee5);
}

/* ================= BOOK HERE – BLUE BUTTON ================= */
/* ================= BOOK HERE – SOFT GREEN BUTTON ================= */

.book-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #f2faf6;            
  border: 1px solid #cfe7dc;      
  padding: 12px 16px;
  border-radius: 10px;
  height: 70px;

  transition: all 0.25s ease;
}

/* Logo size */
.book-logo img {
  max-width: 110px;
  max-height: 40px;
  object-fit: contain;
  transition: 0.25s ease;
}

/* Hover – ONLY soft lift, NO color change */
.book-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(60, 120, 90, 0.18);
}

/* Mobile */
@media (max-width: 576px) {
  .book-logo {
    height: 60px;
    padding: 10px 12px;
  }

  .book-logo img {
    max-width: 95px;
  }
}
/* ================= BOOK HERE SECTION – SCROLL ANIMATION ================= */

/* ================= BOOK HERE SECTION – SCROLL ANIMATION ================= */

.book-here-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #ecf3ce, #b7d7a8);

  opacity: 0;                         /* hidden initially */
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When section is visible */
.book-here-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Logo buttons – initially hidden */
.book-logo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When animated */
.book-logo.show {
  opacity: 1;
  transform: translateY(0);
}






/*about page */

/* ================= ABOUT BANNER ================= */
.about-banner{
  position: relative;
  height: 450px;
  overflow: hidden;
}

.about-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner-text{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.about-banner-text h1{
  font-family:'Raleway',sans-serif;
  font-size: 46px;
  letter-spacing: 2px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  color: #fff;
}

.about-banner-text p{
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  color: #fff;
}


/* ================= ABOUT INTRO ================= */
.about-intro{
  padding: 100px 0;
  background: linear-gradient(135deg, #ecf3ce, #b7d7a8);
}

/* TEXT */
.about-intro h2{
 font-family:'Raleway',sans-serif;
  font-size: 35px;
  color: #4a8c50; /* green shade */
}

.about-intro p{
  font-family:'Raleway',sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
  text-align:justify;
}

/* ================= IMAGE COLLAGE ================= */
.about-collage{
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 420px;
  margin: auto;
}

/* COMMON IMAGE STYLE */
.album-img{
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  transition: transform 0.5s ease;
}

/* IMAGE POSITIONS (collapse / album look) */
.img-main{
  width: 260px;
  height: 260px;
  top: 80px;
  left: 120px;
  z-index: 3;
}

.img-top{
  width: 180px;
  height: 180px;
  top: 0;
  left: 40px;
  z-index: 2;
}

.img-bottom{
  width: 190px;
  height: 190px;
  bottom: 0;
  left: 40px;
  z-index: 2;
}

.img-small{
  width: 140px;
  height: 140px;
  top: 130px;
  right: 0;
  z-index: 1;
}

/* Hover subtle lift */
.about-collage:hover .album-img{
  transform: scale(1.03);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 991px){
  .about-collage{
    margin-top: 40px;
    height: 360px;
  }

  .img-main{
    width: 220px;
    height: 220px;
    left: 100px;
  }
}

@media (max-width: 576px){
  .about-collage{
    height: 320px;
  }

  .img-main{
    width: 200px;
    height: 200px;
    left: 60px;
  }

  .img-top,
  .img-bottom{
    width: 150px;
    height: 150px;
  }

  .img-small{
    display: none;
  }
}






/*=============================
      URAKAM HISTORY
=============================*/


.urakam-history-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:60px;
    align-items:start;
}

.urakam-small-heading{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#4a8c50;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.urakam-title{
    font-size:22px;
    color:#4a8c50;
    margin-bottom:20px;
    font-weight:700;
}

.urakam-history-left p{
    color:#555;
    font-size:15px;
    line-height:1.9;
    text-align:justify;
    margin-bottom:18px;
	
    /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

/* Right */

.urakam-history-right{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.urakam-history-right h4{
    color:#4a8c50;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.urakam-point{
    display:flex;
    align-items:center;
    gap:15px;
}

.urakam-point i{
    color:#4a8c50;
    font-size:22px;
    width:28px;
    text-align:center;
    flex-shrink:0;
}

.urakam-point span{
    color:#444;
    font-size:15px;
    font-weight:500;
    line-height:1.8;
}




@media(max-width:991px){

.urakam-history-container{

grid-template-columns:1fr;
gap:40px;

}

}

@media(max-width:576px){

.urakam-title{

font-size:20px;

}

.urakam-history-left p{

font-size:15px;
/* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;

}

}


















/* ================= SERVICES SECTION ================= */
.srv-section{
  padding: 90px 0;
  background: #f6fbf7;
}

/* -------- Heading -------- */
.srv-heading{
  max-width: 700px;
  margin: auto;
}

.srv-title{
 font-family:'Raleway',sans-serif;
  font-size: 39px;
  color: #4a8c50; /* green shade */
}

.srv-subtitle{
  font-size: 16px;
  color: #6b7f77;
  line-height: 1.7;
}

/* -------- Grid -------- */
.srv-grid{
  margin-top: 50px;
}

/* -------- Card -------- */
.srv-card{
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.srv-card img{
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Hover Effect */
.srv-card:hover{
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* -------- Card Content -------- */
.srv-card-title{
  font-size: 20px;
  font-weight: 600;
  color: #2f5d50;
  margin: 18px 20px 8px;
}

.srv-card-text{
  font-size: 16px;
  color: #5f6f68;
  line-height: 1.7;
  margin: 0 20px 25px;
}


@keyframes fadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------- Responsive -------- */
@media (max-width: 991px){
  .srv-title{
    font-size: 32px;
  }
}

@media (max-width: 575px){
  .srv-section{
    padding: 70px 0;
  }

  .srv-title{
    font-size: 28px;
  }

  .srv-card img{
    height: 200px;
  }
}



/* ================= FACILITIES ================= */
/* ================= FACILITIES SECTION ================= */
.facilities-section{
  padding: 90px 0;
  background: #f6f9f2;
}

/* Heading */
.fac-heading h2{
  font-family:'Raleway',sans-serif;
  font-size: 39px;
  color: #4a8c50; /* green shade */
}

.fac-heading p{
  max-width: 650px;
  margin: 12px auto 0;
  color: #5f7f6f;
  font-size: 16px;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

/* Facility Card */
.fac-card{
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: 
    background 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* Hover Effect */
.fac-card:hover{
  background: linear-gradient(135deg, #ecf3ce, #b7d7a8);
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Icon */
.fac-icon{
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: #eef5e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #3f6b57;
  transition: background 0.4s ease, color 0.4s ease;
}

/* Hover icon */
.fac-card:hover .fac-icon{
  background: #ffffff;
  color: #2f5d50;
}

/* Title */
.fac-card h4{
  font-size: 20px;
  margin-bottom: 12px;
  color: #2f5d50;
  transition: color 0.4s ease;
}

/* Text */
.fac-card p{
  font-size: 16px;
  line-height: 1.6;
  color: #5f7f6f;
  transition: color 0.4s ease;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

/* Hover text */
.fac-card:hover h4{
  color: #1f4f3b;
}

.fac-card:hover p{
  color: #2f5d50;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

/* Responsive */
@media(max-width: 768px){
  .fac-heading h2{
    font-size: 32px;
  }
  .fac-card{
    padding: 30px 22px;
  }
}



/* ================= PACKAGES SECTION ================= */
.packages-section {
  padding: 90px 0;
  background: #f6f9f2;
}

/* ---------- Section Heading ---------- */
.pkg-heading {
  margin-bottom: 60px;
  text-align: center;
}

.pkg-heading h2 {
  font-family:'Raleway',sans-serif;
  font-size: 39px;
  color: #4a8c50; /* green shade */
}

.pkg-heading p {
  max-width: 680px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #5f7f6f;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

/* ---------- Package Card ---------- */
.pkg-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* ---------- Package Image ---------- */
.pkg-img {
  width: 45%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pkg-card:hover .pkg-img {
  transform: scale(1.05);
}

/* ---------- Package Content ---------- */
.pkg-content-side {
  padding: 25px 20px;
  flex: 1;
}

.pkg-content-side h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #4a8c50; /* green shade */
}

.pkg-content-side p {
  font-size: 16px;
  color: #5f7f6f;
  margin-bottom: 15px;
  line-height: 1.6;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

/* ---------- View More Button ---------- */
.view-btn {
  padding: 8px 20px;
  
  border: none;

  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  
  color: #04471f;
  transform: translateY(-3px) scale(1.05);
 
  
}






/* Create border effect using ::before */
.view-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 2px solid var(--green-dark);
  border-radius: 6px;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* Hover effect */
.view-btn:hover {
  color: var(--green-dark);
  transform: translateY(-3px); /* pop-up effect */
}

.view-btn:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;                /* show border */
}













/* ---------- Modal Styling ---------- */
.modal-body p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #5f7f6f;
  line-height: 1.7;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

.modal-body img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  margin-bottom: 10px;
}

/* ---------- Responsive ---------- */
@media(max-width: 991px){
  .pkg-card {
    flex-direction: column;
  }

  .pkg-img {
    width: 100%;
    height: 200px;
  }

  .pkg-content-side {
    padding: 20px 15px;
  }
}

@media(max-width: 576px){
  .pkg-heading h2 {
    font-size: 32px;
  }

  .pkg-content-side h4 {
    font-size: 18px;
  }

  .pkg-content-side p {
    font-size: 16px;
	/* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
  }

  .pkg-btn {
    padding: 6px 16px;
    font-size: 16px;
  }
}





/* ================= SPA GALLERY ================= */
.spa-gallery-section{
  padding: 90px 0;
  background: #f6f9f2;
}

.spa-gallery-heading h2{
  font-family:'Raleway',sans-serif;
  font-size: 39px;
  color: #4a8c50; /* green shade */
}

.spa-gallery-heading p{
  max-width: 650px;
  margin: 12px auto 0;
  color: #5f7f6f;
  font-size: 16px;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

/* Gallery Item */
.spa-gallery-item{
  overflow: hidden;
 
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  cursor: pointer;
}

.spa-gallery-item img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border:2px solid #fff;
}

.spa-gallery-item:hover img{
  transform: scale(1.08);
}

/* ================= POPUP ================= */
.spa-gallery-popup{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

.spa-gallery-popup img{
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

/* close button */
.spa-close-btn{
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* arrows */
.spa-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.spa-nav.prev{ left: 25px; }
.spa-nav.next{ right: 25px; }

/* Responsive */
@media(max-width:768px){
  .spa-gallery-heading h2{
    font-size: 32px;
  }

  .spa-gallery-item img{
    height: 220px;
  }
}


/* ================= CONTACT SECTION ================= */
.contact-section{
  padding:80px 0;
  background:#f6f9f6;
}

.contact-title{
 font-family:'Raleway',sans-serif;
  font-size: 39px;
  color: #4a8c50; /* green shade */
  text-align:center;
}

.contact-subtitle{
  text-align:center;
  color:#555;
  margin-bottom:50px;
}

/* FORM BOX */
.contact-form-box{
  background:#fff;
  padding:40px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* INPUT */
.contact-form-box .form-control{
  height:50px;
  border-radius:12px;
}

.contact-form-box textarea{
  height:120px;
  resize:none;
}

/* BUTTON */
.contact-btn{
  background:#2f7d32;
  color:#fff;
  padding:14px 40px;
  border-radius:30px;
  border:none;
  font-weight:600;
  transition:0.4s;
}

.contact-btn:hover{
  background:#256428;
}

/* ALERT */
.alert{
  border-radius:12px;
}

/* HONEYPOT */
.hp-field{
  display:none;
}



/* ================= WHATSAPP FLOAT BUTTON ================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 99999;

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);

  /* IMPORTANT */
  opacity: 1;
  transform: none;
  transition: none;   
}

/* Desktop hover only */
@media (min-width: 769px) {
  .whatsapp-float {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
    color: #fff;
  }
}

/* Tooltip only for desktop */
@media (min-width: 769px) {
  .whatsapp-float::after {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
  }

  .whatsapp-float:hover::after {
    opacity: 1;
  }
}

/* Mobile safe */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 15px;
    right: 15px;
  }
}
/* ================= ABOUT PAGE MOBILE IMAGE FIX ================= */
@media (max-width: 768px) {

  /* Hide extra images */
  .about-collage .img-top,
  .about-collage .img-bottom,
  .about-collage .img-small {
    display: none !important;
  }

  /* Center the whole image block */
  .about-intro .col-lg-6:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Image wrapper center */
  .about-collage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  /* Main image perfect center */
  .about-collage .img-main {
    display: block;
    max-width: 90%;
    height: auto;

    /* white border + shadow */
    border: 5px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);

    /* remove any offsets */
    margin: 0 auto;
    position: static;
  }
}

/* Inquiry Modal Style */
.inquiry-modal {
  border-radius: 10px;
}

.inquiry-modal .modal-header {
  background: #2e7d32;
  color: #fff;
}

.inquiry-modal .modal-title {
  font-weight: 600;
}

.inquiry-modal .form-control {
  border-radius: 6px;
}

.inquiry-modal button.btn-success {
  background: #2e7d32;
  border: none;
}

.inquiry-modal button.btn-success:hover {
  background: #256428;
}



/* ================= FORCE FIXED ELEMENTS VISIBLE ================= */

/* NAVBAR – always visible */
.navbar,
.custom-nav {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* BOOK BUTTON – always visible */
.book-btn {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  display: inline-block !important;
  z-index: 9999;
}

/* ================= WHATSAPP FLOAT BUTTON ================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 99999;

  /* IMPORTANT FIX */
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Hover only desktop */
@media (min-width: 769px) {
  .whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
  }
}

/* Mobile safe */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 15px;
    right: 15px;
  }
}

/* ================= REMOVE ANIMATION FROM FIXED ELEMENTS ================= */

.navbar.animate,
.book-btn.animate,
.whatsapp-float.animate {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== SCROLL ANIMATION BASE ===== */
.animate,
.animate-up,
.slide-left,
.slide-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

/* ===== SHOW STATE ===== */
.animate.show,
.animate-up.show,
.slide-left.show,
.slide-right.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DELAYS ===== */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }





/* ================= VIDEO BANNER ================= */
/* ================= RESPONSIVE VIDEO ================= */

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;          
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    
}

/* Tablet */
@media (max-width: 991px) {
  .hero-video {
    height: 70vh;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-video {
    height: 55vh;
  }
}



.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
}

.hero-box h1{
  font-size: 3rem;
  font-family:'Raleway',sans-serif;
}

.hero-box p{
  font-size: 1.2rem;
  margin-top: 10px;
  /* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
}

/* Mobile */
@media (max-width: 768px){
  .  .hero-box h1{
    font-size: 2rem;
  }
  .hero-box p{
    font-size: 1rem;
  }
}
/* ================= HERO VIDEO TEXT RESPONSIVE ================= */

.hero-content h1 {
  font-size: 56px;      
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
}

/* Tablet */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-content p {
    font-size: 16px;
	/* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 26px;   
  }
  .hero-content p {
    font-size: 16px;
    line-height: 1.5;
	/* Auto Hyphenation */
    hyphens:auto;
    -webkit-hyphens:auto;
    -ms-hyphens:auto;

    overflow-wrap:break-word;
    word-wrap:break-word;
  }

  .hero-box {
    padding: 14px 18px;
  }
}

/* ================= HERO VIDEO TEXT POSITION FIX ================= */

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;   
  justify-content: center;
}

/* Mobile – move text box down */
@media (max-width: 576px) {
  .hero-content {
    align-items: flex-end;  
    padding-bottom: 60px;   
  }
}

@media (max-width: 991px) {
  .hero-content {
    align-items: flex-end;  
    padding-bottom: 60px;  
}









