.hero_tag {
  display: inline-block;
  background: #eef6ea;
  color: #35710a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero_price {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
}

.hero_price strong {
  color: #35710a;
  font-size: 22px;
}

.hero_features {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero_features span {
  background: #eef6ea;
  color: #35710a;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}
.hero_media img {
  width: 100%;
  height: 70vh;
}
.jcc{
  justify-content: center !important;
}
p {
  font-size: 15px;
  line-height: 24px;
}
.hero_buttons {
  margin-top: 25px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* CALL BUTTON */

.btn-call {
  background: #35710a;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.btn-call:hover {
  background: #2b5c08;
  transform: translateY(-2px);
}

/* WHATSAPP BUTTON */

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.hostel-marquee {
  background: #f5efdec9;
  overflow: hidden;
  padding: 8px 0;
  color: #000000;
  font-weight: 500;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marqueeMove 25s linear infinite;
}

.marquee-track span {
  font-size: 14px;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
.accommodation {
  background: #f9faf7;
}

.accommodation-card {
    background: #fff;
    /* border-radius: 12px; */
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.accommodation-card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.accommodation-card{
position:relative;
overflow:hidden;
background:#fff;
padding:30px 20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
border-bottom-left-radius:50px;
border-bottom-right-radius:50px;
transition:.4s;
z-index:1;
}

/* Bottom arrow shape */
.accommodation-card::before{
content:"";
position:absolute;
bottom:-100%;
left:0;
width:100%;
height:100%;
background:#3f841d;
/* Arrow shape */
clip-path: polygon(0 100%, 50% 80%, 100% 100%, 100% 100%, 0 100%);
transition:.5s ease;
z-index:-1;
}

/* Full fill effect */
.accommodation-card::after{
content:"";
position:absolute;
bottom:-100%;
left:0;
width:100%;
height:100%;
background:#3f841d;
transition:.5s ease;
z-index:-2;
}

/* Hover Effect */
.accommodation-card:hover::before{
bottom:0;
}

.accommodation-card:hover::after{
bottom:0;
}

/* Text color change */
.accommodation-card:hover{
color:#fff;
}

.accommodation-card:hover h4,
.accommodation-card:hover .price,
.accommodation-card:hover li,
.accommodation-card:hover a{
color:#fff;
}


.card-header {
  margin-bottom: 20px;
}

.card-header h4 {
  font-weight: 600;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #35710a;
}

.price span {
  font-size: 14px;
  color: #777;
}

.room-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.room-features li {
  padding: 8px 0;
  border-bottom: 1.2px dashed #d8d2d2;
  font-size: 14px;
}

.card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-enquire {
  text-align: center;
  padding: 5px 20px;
  background: #35710a;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;

}

.btn-enquire:hover {
  background: #285707;
}
.btn-view {
  text-align: center;
  padding: 5px 20px;
  border: 1px solid #35710a;
  color: #35710a;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.btn-view:hover {
  background: #35710a;
  color: #fff;
}
.cta-section {
  background: #f2f8e8;
  padding: 60px 0;
  color: #fff;
  border-radius: 10px;
  margin: 40px 0;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width:576px) {
  .cta-title {
    font-size: 26px;
}
}

.cta-text {
  font-size: 16px; /* opacity:0.9; */
  color: #000;
}

.cta-call {
  background: #fff;
  color: #35710a;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.cta-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.meals-section {
  background: #f9faf7;
}

.section-subtitle {
  color: #35710a;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-weight: 700;
  margin-top: 5px;
}

.section-desc {
  color: #666;
  max-width: 600px;
  margin-top: 10px;
}
/*  */
.facilities-section {
  background: #f9faf7;
}

.section-subtitle {
  color: #35710a;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-weight: 700;
}
 .meals{
padding:40px 0;
background:#f8fbf5;
}

.section-title{
font-size:36px;
font-weight:700;
}

.section-subtitle{
color:#666;
margin-top:10px;
}

/* Card */

.meal-card{

display:flex;
align-items:center;

background:#fff;

border-radius:12px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:.4s;

}

.meal-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(0,0,0,0.15);

}

/* Image */

.meal-img{
width:40%;
overflow:hidden;
}

.meal-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.meal-card:hover img{
transform:scale(1.1);
}

/* Content */

.meal-content{
padding:20px;
width:60%;
}

.meal-content h4{
font-size:20px;
margin-bottom:8px;
}

.meal-items{
color:#666;
margin-bottom:10px;
}

/* Meta */

.meal-meta{
display:flex;
justify-content:space-between;
align-items:center;
}

.meal-time{
font-size:14px;
color:#555;
}

.meal-badge{
background:#35710a;
color:#fff;
padding:4px 10px;
border-radius:20px;
font-size:12px;
}

/* Bottom text */

.meal-note{
font-weight:500;
color:#35710a;
}

.trust-section {
  background: #eef6ea;
  padding: 40px 0;
}

.trust-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1b1b1b;
}

.trust-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 7px;
}

.trust-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.trust-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
}

.trust-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #35710a;
  font-weight: 700;
}

.trust-image img {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.trust-cta {
  padding: 40px 0;
  background: #f4f9f1;
}

.trust-cta-box {
  position: relative;
  background: #fff;
  padding: 60px 40px 45px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: auto;
  transition: 0.4s;
}

.trust-cta-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* Floating round icon */

.cta-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #35710a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Title */

.trust-cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Text */

.trust-cta-text {
  color: #666;
  margin-bottom: 30px;
}

/* Buttons */

.trust-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-call {
  background: #35710a;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
}

.cta-call:hover {
  background: #2c5d08;
}

.cta-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
}

.cta-whatsapp:hover {
  background: #1da851;
}
.locations-section {
  /* background:#f9faf7; */
  background: #fff;
}

.section-title {
  font-weight: 700;
  font-size: 32px;
}

/* .section-desc{
max-width:700px;
margin:auto;
color:#666;
} */

.location-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}
.location-card {
  background: #eee2400f;
  padding: 20px;
  border-radius: 14px;
  /* box-shadow: 0 12px 35px rgba(0,0,0,0.08); */
  transition: 0.4s;
  height: 100%;
  /* border: 1px solid #5959597a; */
}
.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.location-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.location-address {
  color: #555;
  margin-bottom: 15px;
}

.location-tags {
  margin-bottom: 20px;
}

.location-tags span {
  display: inline-block;
  background: #eef6ea;
  color: #35710a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin: 4px;
  font-weight: 500;
}

.map-box iframe {
  width: 100%;
  height: 130px;
  border: 0;
  border-radius: 10px;
  margin-bottom: 20px;
}
.location-call {
  display: inline-block;
  background: #35710a;
  color: #fff;
  padding: 7px 19px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.location-call:hover {
  background: #2c5d08;
}

.testimonial-section {
  background: #13a4131a;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}
.testcardtitle {
  background-color: #4ab115 !important;
  border-top: none !important;
}
.testcardtitle h5,
.testcardtitle span,
.testcardtitle p {
  color: white;
}
.testimonial-card {
  background: #ffffffe3;
  padding: 20px;
  border-radius: 12px;
  /* backdrop-filter: blur(10px); */
  transition: 0.4s;
  min-height: 250px;
  border-top: 4px solid #00800096;
  margin-top: 40px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.text-center {
  text-align: center !important;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user h5 {
  margin: 0;
  font-size: 18px;
}

.user span {
  font-size: 13px;
  opacity: 0.7;
}

.google-icon {
  width: 20px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.stars {
  color: #ffc107;
  font-size: 18px;
}

.view-btn {
  display: inline-block;
  margin-top: 40px;
  background: #f5df31;
  color: #000;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.view-btn:hover {
  background: #28914b;
  color: #fff;
}
.info_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed #ddd;
}

.info-item:last-child {
  border-bottom: none;
}
.icon img {
  width: 45px;
  margin: auto;
  padding-top: 6px;
}
.brand_name img{
    width: 110px;
}

.content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.gallery_grid-item {
  position: relative;
  overflow: hidden;
}

.gallery_grid-item img {
  width: 100%;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery_grid-item:hover .overlay {
  opacity: 1;
}

.zoom-icon {
  color: #fff;
  font-size: 40px;
}
.facilities {
  padding: 40px 0;
  background: #e6e5e466;
}

.section-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width:576px) {
  h1{
    font-size: 30px;
  }
  .section-title {
  font-size: 25px;
}
}
.section-subtitle {
  color: #666;
  max-width: 700px;
  margin-bottom: 50px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
@media (max-width:576px){
    .facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
}
.bg-white{
    background-color: #fff !important;
}

.facility-card {
  /* background:#f0dd4fab; */
  /* background: linear-gradient(230deg, #f0dd4fab, #ff516c42); */
  background: linear-gradient(101deg, #a9f04f30, #b3ffa51a);
  padding: 15px;
  text-align: center;

  border-radius: 12px;
  transition: 0.4s;
margin-top: 30px;
  position: relative;
  /* height: 150px; */
  /* overflow:hidden; */
}

.facility-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.facility-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 15px;
  margin-top: -45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #cdd665d9;

  color: #0e1808;

  font-size: 26px;

  transition: 0.4s;
}
.facility-icon img {
  width: 35px;
}
.facility-card:hover .facility-icon {
  background: #35710a;
  color: #fff;

  transform: rotate(10deg) scale(1.1);
}
.facility-card:hover .facility-icon img {
  filter: brightness(0) invert(1);
}
.facility-card h4 {
  font-size: 16px;

  font-weight: 600;

  line-height: 1.4;
}
.contact-info-box{
padding:40px;
background:#f7faf4;
border-radius:12px;
}

.contact-info-list{
list-style:none;
padding:0;
margin-top:30px;
}

.contact-info-list li{
display:flex;
gap:15px;
margin-bottom:25px;
align-items:flex-start;
}

.contact-info-list i{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
background:#35710a;
color:#fff;
border-radius:50%;
font-size:18px;
}

.contact-form-box{
padding:40px;
background:#fff;
border-radius:12px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea{
border-radius:6px;
padding:12px;
border:1px solid #e0e0e0;
width:100%;
margin-bottom:0px;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus{
outline:none;
border-color:#35710a;
}

.contact-form-box button{
background:#35710a;
color:#fff;
border:none;
padding:12px 20px;
border-radius:6px;
font-size:16px;
cursor:pointer;
}

.contact-form-box button:hover{
background:#0e1808;
}
.footer {
    background: #3f7c1e;
    color: #fff;
    padding: 70px 0 0;
}

.footer-logo{
color:#fff;
font-size:24px;
margin-bottom:15px;
}

.footer-text{
font-size:14px;
line-height:1.7;
}

.footer-title{
color:#fff;
margin-bottom:15px;
font-size:18px;
}

.footer-links{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
color:#fff;
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#35710a;
}

.footer-contact{
margin-bottom:12px;
}

.footer-social{
display:flex;
gap:10px;
margin-top:10px;
}

.footer-social a{
width:35px;
height:35px;
display:flex;
align-items:center;
justify-content:center;
background:#175117;
border-radius:50%;
color:#fff;
}

.footer-bottom{
margin-top:40px;
padding:20px 0;
background:#175117;
text-align:center;
font-size:14px;
}
.btn_enquiry{
    background-color: #1a753b;
    color: #fff !important;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: .3s;
}
@media (max-width:992px) {
  .btn_enquiry {
    margin-top: 30px;
}
}
.contact-sticky{
position:fixed;
right:20px;
bottom:25px;
display:flex;
flex-direction:column;
gap:12px;
z-index:9999;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: .3s;
    width: 50px;
    height: 50px;
}

.contact-btn i{
font-size:18px;
}

.call-btn{
background:#35710a;
}

.whatsapp-btn{
background:#25D366;
}

.contact-btn:hover{

transform:translateX(-5px);

box-shadow:0 15px 35px rgba(0,0,0,0.25);

}

.whatsapp-btn::after{
content:'';
position:absolute;
width:100%;
height:100%;
border-radius:50px;
background:#25D366;
opacity:.5;
animation:pulse 2s infinite;
z-index:-1;
}

@keyframes pulse{

0%{
transform:scale(1);
opacity:.6;
}

70%{
transform:scale(1.4);
opacity:0;
}

100%{
opacity:0;
}

}
.mdp-float{
display:none !important;
}

.mdp-float-btn{
display:none !important;
}
.food-cta{
padding:60px 0;
background:#f5f9f2;
}

.food-cta-box {
    background: linear-gradient(135deg, #4aa853, #eaf130c2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Glow effect */
.food-cta-box::before{
content:"";
position:absolute;
top:-50%;
left:-50%;
width:200%;
height:200%;
background:radial-gradient(circle,rgba(255,255,255,0.15),transparent);
animation:rotate 8s linear infinite;
}

@keyframes rotate{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

.food-cta-content{
position:relative;
z-index:2;
}

.food-cta h3{
font-size:28px;
font-weight:700;
margin-bottom:10px;
}

.food-cta p{
margin-bottom:20px;
color: #000;
}

/* Buttons */

.cta-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}
@media (max-width:992px) {
  .cta-buttons{
    justify-content: left;
    margin-top: 12px;
  }
}

.cta-call,
.cta-whatsapp{

padding:12px 25px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.cta-whatsapp {
    background: #1fa14f;
    color: #fff;
}

.cta-call:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
color: #fff;
}

.cta-whatsapp:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
.page-banner{padding: 40px 0;background: #c7cdc754;color:#fff;text-align:center;}

/* Breadcrumbs */

.breadcrumbs{
list-style:none;
gap:10px;
margin-bottom:15px;
}

.breadcrumbs li{font-size:14px;position:relative;color: green;font-weight: 600;}

.breadcrumbs li a{color: #0d0e0c;text-decoration:none;transition:.3s;}

.breadcrumbs li a:hover{
color:#fff;
}

/* Separator */
.breadcrumbs li::after{
content:"/";
margin-left:10px;
color:#aaa;
}

.breadcrumbs li:last-child::after{
display:none;
}

/* Title */

.page_title{
font-size:40px;
font-weight:700;
margin-bottom:10px;
}

.page-subtitle{font-size:16px;color: #504e4e;max-width:500px;margin:auto;}
/* BACKDROP */
/* BACKDROP + BLUR */
.custom-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

/* THIS IS KEY */
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);

background: rgba(0,0,0,0.5);

display:flex;
align-items:center;
justify-content:center;

opacity:0;
visibility:hidden;
transition:0.4s;
z-index:9999;
}

/* SHOW */
.custom-modal.show{
opacity:1;
visibility:visible;
}
.modal-content{
  display: flex;
}
/* BLUR BODY */

/* BOX */
.modal-box{
max-width:900px;
background:#fff;
border-radius:15px;
overflow:hidden;
display:flex;
position:relative;
}

/* CLOSE */
.modal-close{
position:absolute;
top:10px;
right:15px;
font-size:25px;
cursor:pointer;
}

/* LEFT IMAGE */
.modal-left{
width:50%;
/* display: none; */
}

.modal-left img{
max-width:100%;
height:100%;
object-fit:cover;
}

/* RIGHT FORM */
.modal-right{
width:50%;
padding:30px;
}
@media (max-width:768px) {
  .modal-left{
display: none;
}
.modal-right{
width:100%;
}
}
.modal-right h3{
font-weight:700;
margin-bottom:10px;
}

/* INPUTS */
.modal-right input,
.modal-right select{
width:100%;
padding:10px;
margin-bottom:10px;
border:1px solid #ddd;
border-radius:6px;
font-size: 14px;
}

/* BUTTON */
.modal-right button{
width:100%;
background:#35710a;
color:#fff;
padding:12px;
border:none;
border-radius:6px;
font-weight:600;
}

/* CONTACT */
.modal-contact{
margin-top:15px;
text-align:center;
}

.social-icons a{
margin:0 5px;
font-size:18px;
color:#35710a;
}
/* this is room styleing css  */
/* BANNER */

/* SECTION */
.room-section{
padding:60px 0;
}

.room-image img{
width:100%;
border-radius:12px;
}

/* CONTENT */
.room-content h2{
font-size:32px;
margin-bottom:10px;
}

.room-price{
font-size:28px;
color:#35710a;
font-weight:700;
margin-bottom:15px;
}

.room-desc{
margin-bottom:15px;
}

/* FEATURES */
.room-features{
list-style:none;
padding:0;
}

.room-features li{
margin-bottom:10px;
padding-left:25px;
position:relative;
}

.room-features li::before{
content:"✔";
position:absolute;
left:0;
color:#35710a;
}

/* BUTTONS */
.room-buttons{
display:flex;
gap:10px;
margin-top:20px;
}

.btn-call{
background:#35710a;
color:#fff;
padding:12px 20px;
border-radius:6px;
text-decoration:none;
}

.btn-whatsapp{
background:#25D366;
color:#fff;
padding:12px 20px;
border-radius:6px;
text-decoration:none;
}
.extra-card{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
position:relative;
overflow:hidden;
}

.extra-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* ICON */
.extra-icon{
width:60px;
height:60px;
background:#35710a;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 15px;
font-size:22px;
transition:0.3s;
}

.extra-card:hover .extra-icon{
background:#25D366;
transform:rotate(10deg) scale(1.1);
}

/* CTA */
.btn-cta{
background:#35710a;
color:#fff;
padding:12px 25px;
border-radius:50px;
text-decoration:none;
margin-right:10px;
display:inline-block;
}

.btn-cta-outline{
border:2px solid #35710a;
color:#35710a;
padding:12px 25px;
border-radius:50px;
text-decoration:none;
}
.text-dark{
  color: #000;
}
.my-shadow{
  /* box-shadow: 0 0 10px rgba(0,0,0,0.5); */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.testimonial-slider {
    overflow: hidden;
}

.testimonial-slider .swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slider .swiper-slide {
    min-width: 33.33%;
    padding: 10px;
}

/* Responsive */
@media (max-width:1024px){
    .testimonial-slider .swiper-slide{
        min-width:50%;
    }
}

@media (max-width:768px){
    .testimonial-slider .swiper-slide{
        min-width:100%;
    }
}
.testimonial-dots {
    margin-top: 20px;
}

.testimonial-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dots .dot.active {
    background: #35710a;
    width: 25px;
    border-radius: 20px;
}
.footer-credit {
    color: #9dff57;
    text-decoration: none;
    font-weight: 700;
}

.footer-credit:hover{
text-decoration:underline;
color:#25D366;
}
/* SECTION TAG */
.section-tag{
display:inline-block;
background:#35710a;
color:#fff;
padding:5px 15px;
border-radius:20px;
font-size:14px;
margin-bottom:10px;
}

/* ABOUT IMAGE */
.about-img-wrapper{
position:relative;
}

.about-img-wrapper img{
border-radius:15px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.about-badge{
position:absolute;
bottom:20px;
left:20px;
background:#35710a;
color:#fff;
padding:8px 15px;
border-radius:20px;
font-size:14px;
}

/* ABOUT CONTENT */
.about-content h2{
font-weight:700;
margin-bottom:15px;
}

.about-points{
list-style:none;
padding:0;
margin-top:15px;
}

.about-points li{
margin-bottom:8px;
font-size:15px;
}

/* MISSION CARDS */
.mission-card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.mission-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* ICON */
.mission-icon{
font-size:30px;
margin-bottom:10px;
}

/* COLOR ACCENTS */
.mission-left{
border-left:5px solid #35710a;
}

.mission-right{
border-left:5px solid #25D366;
}
.enquiry-sticky-btn{
position:fixed;
top:50%;
right:0;
background:linear-gradient(135deg,#35710a,#25D366);
color:#fff;
padding:12px 18px;
border-radius:30px 0 0 30px;
font-size:14px;
font-weight:600;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
z-index:9999;
transition:0.3s;
display:flex;
align-items:center;
gap:8px;
}

/* Hover Effect */
.enquiry-sticky-btn:hover{
right:5px;
background:linear-gradient(135deg,#25D366,#35710a);
}

/* Pulse Animation */
.enquiry-sticky-btn::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border-radius:30px 0 0 30px;
background:#25D366;
opacity:0.4;
animation:pulse 1.8s infinite;
z-index:-1;
}

@keyframes pulse{
0%{transform:scale(1);opacity:0.5;}
70%{transform:scale(1.1);opacity:0;}
100%{transform:scale(1);opacity:0;}
}