﻿body{
  font-family: 'Quicksand', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 400;
  background-color:#fff8f3;
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}
a{
    text-decoration:none!important
}
h1{
    font-size:2.5rem;
    color:white;
    font-weight:600!important;
}
h2{
  font-size: 3rem!important;
  color: #222;
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight:700!important;
}

/* Navbar Styling */
header {
  background-color: #c5cc99;
  color: #222;
  border-radius:230px;
}
header {
  position: fixed;
  top: 20px;
  width: 95%;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.8s ease, opacity 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.logo img{
    max-width:200px;
    width:160px;

}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #bd473b;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.nav-links a:hover {
  color: #201d1f;
}

/* Dropdown (Desktop) */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #c2c5aabd!important;
  min-width: 180px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 10;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #40462c;
}

.dropdown-menu a:hover {
  background: #bd473b;
  color:white;
}

/* Hover dropdown on desktop */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}
.butn{
    background-color:#bd473b;
    border-radius:25px;
    color:white;
    font-weight:600;
    font-size:19px;
    padding:10px 20px;
  
}
.butn:hover{
    background-color:#fff;
    border-radius:25px;
    color:black;
}
.letstalk{
    display:none;
}
.but{
    background-color: #bd473b!important;
    color:white!important;
}
.but:hover{
    background-color: #9b392f !important;
    color:white!important;
}


/* ========= MOBILE VIEW ========= */
@media (max-width: 768px) {

    /* Base mobile nav */
    header {
        position: fixed;
        top: 20px;
        width: 100vw;
        z-index: 1000;
        left: 0;
        transform: none;
        );
        transition: top 0.8s ease, opacity 0.3s ease;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #275ca2;
        gap: 20px;
        padding: 10px 0;
        transition: all ease-in 0.3s;
    }

        /* When active */
        .nav-links.active {
            display: flex;
            position: absolute;
            
            border-radius: 20px;
            top: 110%;
            right: 0;
            text-align: center;
            background-color: #c5cc99;
        }

    .dropdown-menu a {
        padding: 5px 2px !important;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
    }

    .nav-links li {
        width: 100%;
    }

    /* Fix dropdown stacking on mobile */
    .dropdown {
        position: static; /* remove absolute behavior */
    }

    .dropdown-menu {
        display: none; /* hidden by default */
        position: static !important; /* stack below */
        background: #22223b!important; /* match theme */
        width: 90%;
        border-radius: 10px;
        box-shadow: none;
        padding-left: 15px;
        margin:auto;
    }

    /* Show dropdown when open (clicked via JS) */
    .dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    /* Dropdown links */
    .dropdown-menu a {
        padding: 10px 25px;
    }

    .butn {
        display: none;
    }
    .letstalk{
    display:inline-block;
    color:#fff!important;
}
}

/*Hero section*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-bottom:2px solid #b36a5a;
  border-bottom-left-radius:30px;
   border-bottom-right-radius:30px;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: transform 6s ease-in-out;
  transform: scale(1);
  filter:brightness(80%);
}

.swiper-slide-active img {
  transform: scale(1.2);
}

/* Optional: Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  transition: 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #ff4081; /* Accent color (adjust for your brand) */
}

/* ===== Mobile View ===== */
/* ===== Hero Section Mobile View ===== */
@media (max-width: 768px) {
  #hero {
    height: 70vh;
    overflow: hidden;
  }

  .heroswiper {
    height: 100%;
  }

  .heroswiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* For very small screens (like 400px and below) */
@media (max-width: 480px) {
  #hero {
    height: 60vh;
  }

  .heroswiper .swiper-slide img {
    object-position: center top;
  }
}

/* ===== Large Desktop ===== */
@media (min-width: 1200px) {
  #hero {
    height: 100vh; /* Almost full screen */
  }
}
.txtimg{
  position: relative;
}

.txtimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* text wrapper */
.slide-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  padding: 10px;
}

.slide-text h2{
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.slide-text p{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.txtimg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
/* ===== About Section ===== */
.about-section {
  width: 100%;
  background: #fff8f3;
  padding: 80px 5%;
  overflow: hidden;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* 🌸 LEFT SIDE IMAGES */
.about-images {
  position: relative;
  width: 400px;
  height: 500px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease;
}

.about-images img {
  position: absolute;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* top image */
.about-images img:nth-child(1) {
  top: 0;
  left: -30px;
  width: 180px;
  height: 180px;
  z-index: 3;
  animation-delay: 0.2s;
}

/* main large image (center) */
.about-images img:nth-child(2) {
  top: 4vw;
  right: 0;
  width: 280px;
  height: 380px;
  z-index: 2;
  animation-delay: 0s;
}

/* bottom image */
.about-images img:nth-child(3) {
    bottom: 0;
    left: 0px;
    width: 200px;
    height: 250px;
    z-index: 2;
    animation-delay: 0.2s;
}

/* 🌼 RIGHT SIDE CONTENT */
.about-content {
  flex: 1;
  max-width: 550px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

.about-content h2 {
  font-size: 3rem;
  color: #222;
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight:700!important;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.about-stats h3 {
  color: #b53d23;
  font-size: 2rem;
}

.btn-about {
  display: inline-block;
  padding: 12px 30px;
  background: #656d4a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-about:hover {
  background: #bd473b;
}

/* ✨ Scroll animation triggers */
.show-left {
  opacity: 1;
  transform: translateX(0);
}

.show-right {
  opacity: 1;
  transform: translateX(0);
}

/* 📱 Responsive (for tablets & phones) */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    width: 100%;
    max-width: 300px;
    height: 350px;
    margin: 0 auto 50px;
  }
/* top image */
.about-images img:nth-child(1) {
     top: 0;
      left: -15px;
      width: 140px;
      height: 152px;
      z-index: 3;
      animation-delay: 0.2s;
}

/* main large image (center) */
.about-images img:nth-child(2) {
  top: 4vw;
  right: -5px;
  width: 280px;
  height: 380px;
  z-index: 2;
  animation-delay: 0s;
}

/* bottom image */
.about-images img:nth-child(3) {
    bottom: -100px;
      left: 0px;
      width: 180px;
      height: 180px;
      z-index: 2;
      animation-delay: 0.2s;
}
}

/* Info section */
.info-section h3{
    font-size:2.5rem;
    margin-bottom:3rem;
    font-weight:bold;
}
.info-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px; 
}
.info-content{
    padding:15px;
    width:100%;    
}
.info-content h3{
    font-family: quicksand !important;
    font-weight: bold;
    font-size: 3rem;
}
.info-content li{
    font-weight:600;
    font-size: 1.3rem;
}
.color1{
    background-color:#43711e24;
    color:#415d2a;
}
.color1:hover{
    background-color:#415d2a;
    color:#f2f2f2;
}
.color2{
    background-color:#a1454533;
    color:#a14545;
}
.color2:hover{
    background-color:#a14545;
    color:#f2f2f2;
}
.color3{
    background-color:#1d8a8030;
    color:#1d8a80;
}
.color3:hover{
    background-color:#1d8a80;
    color:#f2f2f2;
}
.color4{
    background-color:#8522a129;
    color:#844297;
}
.color4:hover{
    background-color:#844297;
    color:#f2f2f2;
}
.color5{
    background-color:#834e2821;
    color:#834e28;
}
.color5:hover{
    background-color:#8a5c3b;
    color:#f2f2f2;
}
.color6{
    background-color:#45507f24;
    color:#45507f;
}
.color6:hover{
    background-color:#45507f;
    color:#f2f2f2;
}
@media(max-width:768px){
   .info-grid {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 30px;
}
  .info-section h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
  .info-content h3 {
  font-family: quicksand !important;
  font-weight: bold;
  font-size: 2.7rem;
}
}


/* Event section */
.event-section {
    background: linear-gradient(rgb(224, 228, 200,0.6), rgba(224, 228, 200, 0.6)), url('../img/recent.jpg') no-repeat center/cover;
    background-attachment:fixed;
    padding:3rem 0;
}
.event-section h3{
    font-size:2.5rem;
    padding-bottom:3rem;
    font-weight:bold;
    color:#222;
}
.event-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
}
.events{
    background-color:#fff;
    width:100%;
    padding:15px;
    border-radius:15px;
}
.events img {
  width: 100%;
  height: 15vw;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-text h4{
    padding-top:10px;
    font-weight: 600;
}
.event-text a{
    color:#bb493d;
    font-weight: 600;
}
 .events:hover img {
    transform:scale(1.1);
}
 .wrap{
     width:100%;
     overflow:hidden;
     border-radius:10px;
 }

@media(max-width:768px){
  .event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
  .events img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  border-radius: 10px;
}
}

/* Gallery section */
.gallery-section{
    background:#f1f2e6;
    padding:3rem 0;
}

.gallery-section h3{
    font-size:2.5rem;
    padding-bottom:2.5rem;
    font-weight:bold;
    color:#222;
}
.gallery-wrapper{
    overflow:hidden;
    width:100%;
}
.gallery-flex{
   display:flex;
   width:max-content;
   animation: scrollGallery 30s linear infinite;

}
.gallery-flex .image{
    border:1px solid #fff;
}
.image img{
  height:16vw;
  display:block;
}
@keyframes scrollGallery{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

@media(min-width:1200px){
 .gallery-section .container{
    max-width:1250px!important;
    margin:auto;
}
}
@media(max-width:768px){
   .gallery-section h3 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  font-weight: bold;
  color: #222;
}
  .image img {
  height: 10vh;
  display: block;
}
}


/* Gallery Page */
.gallery-items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
} 
#lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

#lightbox.active{
    opacity: 1;
    pointer-events: auto;
}

#lightbox img{
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

#lightbox .close{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}


@media(max-width:768px){
 .gallery-items .image img {
  height: 14vh;
  display: block;
}
}

/* Recent Event section */
.recentone h3{
    font-size:2.5rem;
    padding-bottom:3rem;
    font-weight:bold;
    color:#222;
}
@media(max-width:768px){
    .recentone h3 {
  font-size: 2rem;
  padding-bottom: 2rem;
  font-weight: bold;
  color: #222;
}
}

.recentone h2{
    font-size: 3rem;
    color: #222;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700 !important;
    text-align:center;
    margin-bottom:25px;
}
.recent img{
    width:100%;
    height:40vw;
    object-fit:cover;
}
.recent-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.recent {
  position: relative;
  width: 95vw;
  height: 40vw;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.recent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* overlay */
.recent-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgb(189, 71, 59), transparent);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.recent-overlay p {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Hover Effects */
.recent:hover img {
  transform: scale(1.1);
}

.recent:hover .recent-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Recent Highlights – Mobile View ===== */
@media (max-width: 768px) {
  .recentone h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .recent {
    width: 90vw;
    height: 55vw;
    border-radius: 15px;
  }

  .recent img {
    height: 100%;
    border-radius: 15px;
  }

    .recent-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgb(179, 106, 90), transparent);
  display: flex;
  opacity: 1;
  justify-content: center;
  align-items: flex-end;
  padding: 30px;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

  .recent-overlay p {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* ===== Extra Small Devices (Under 480px) ===== */
@media (max-width: 480px) {
  .recentone h2 {
    font-size: 2rem;
  }

  .recent {
    width: 92vw;
    height: 60vw;
  }


   .recent-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgb(179, 106, 90), transparent);
  display: flex;
  opacity: 1;
  justify-content: center;
  align-items: flex-end;
  padding: 30px;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

  .recent-overlay p {
    font-size: 0.9rem;
  }
}


/* Team section */
.team-section{
    padding:3rem 0;
}
.team-section h3 {
  font-size: 2.5rem;
  padding-bottom: 3rem;
  font-weight: bold;
  color: #222;
}
.team-text h4 {
  padding-top: 10px;
  font-weight: 600;
  color:#bd473b;
}
.team-text p{
 font-style:italic;
}
.team-details{
    display:flex;
    column-gap:20px;
}
.team img{
    height:20vh;
    border-radius:60px;
}
.team{
    text-align:center;
    border:1px solid #bd473b;
    padding:15px;
    border-radius:25px;
}
@media(max-width:768px){
  .team-details {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
}

/* Promise section */
.promise-section{
    background: url('../img/leaf.png') no-repeat left center / contain;
    margin-left:20px;
    border-radius:25px;
    
}

.promise{
    display: flex;
    justify-content: flex-end;
}

.promise-text{
    max-width: 800px;
    text-align: left;
}

.promise-text h4{
   font-size: 2rem; 
}
.promise-section h2{
    font-size:2rem!important;

}
@media(max-width:1200px){
    .promise-section{
    background:linear-gradient(rgba(255,255,255,0.8),rgba(255,255,255,0.8)), url('../img/leaf.png') no-repeat left center / contain;
    margin-left:0px;
    border-radius:25px;
    color:#222;
}
}



/* Testimonials */
.testimonials-section {
  padding: 80px 5%;
  background: #fff8f3;
  display: flex;
  justify-content: center;
}

.testimonials-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
}

.testimonials-left {
  flex: 1;
}

.testimonials-left h2 {
  font-size: 3rem;
  color: #22223b;
  margin-bottom: 15px;
  font-family:'Quicksand', sans-serif;
  font-weight:700!important;
}

.testimonials-left p {
  color: #444;
  line-height: 1.6;
}

.testimonials-right {
  flex: 1.5;
  overflow: hidden;
  position: relative;
}

.testimonial-carousel {
  display: flex;
  gap: 33px;
  transition: transform 1s ease;
}

.testimonial-card {
  flex: 0 0 650px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
  font-size:20px;
}

.testimonial-card h4 {
  color: #22223b;
  font-weight: 600;
  text-align: right;
}

/* ===== Testimonials – Responsive (Mobile View) ===== */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 5%;
  }

  .testimonials-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .testimonials-left h2 {
    font-size: 2rem;
  }

  .testimonials-left p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .testimonials-right {
    width: 100%;
  }

  .testimonial-carousel {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 320px; /* 👈 this is the mobile card width */
    padding: 20px;
    border-radius: 15px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .testimonial-card h4 {
    font-size: 1rem;
    text-align: center;
  }
}



/*whyworry ssection*/
.content{
    background:#22223b;
    padding:30px;
    border-radius:60px;
    display:flex;
    justify-content:space-around;
    column-gap:50px;
   
}
.leftside{
    display: grid;
    grid-template-columns: repeat(2, 0fr);
    gap: 10px;
}
.leftside img{
    width: 7vw;
    height: 5vw;
    object-fit: cover;
    border-radius: 20px;
}

.rightside{
    color:white;
}

.rightside h3{
    color:white;
    font-weight:500;
    font-family:'Quicksand', sans-serif;
    line-height:2.5rem;
}
.butnn{
    
     background-color:#b36a5a;
    color:white
}
.butnn:hover{
   background-color:white;
    color:black
}
.leaf img{
    width:150px;
}

@media(max-width:768px){
    .leftside img{
    width: 30vw;
    height: 25vw;
    object-fit: cover;
    border-radius: 20px;
    }
    .content{
    background:#22223b;
    padding:30px;
    border-radius:60px;
    display:flex;
    flex-direction:column;
    column-gap:50px;
    align-items:center;
   
}
    .butnn{
        display:block;
    }
    .rightside h3{
        padding-top:10px;
    }
}

/* Contact form */
.contact-section {
  padding: 80px 10%;
  background-color: #e0e4c869;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #b53d23;
  margin-bottom: 10px;
  font-family:'Quicksand', sans-serif;
}

.contact-info p {
  color: #444;
  line-height: 1.6;
}

.contact-details p {
  margin: 8px 0;
}

.contact-details a {
  color: #e63946;
  text-decoration: none;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #e63946;
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #111;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
  color: #b53d23;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-form button {
  background: #4e5534;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #bd473b;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  margin-top: 50px;
}

@media(max-width:768px) {
    .contact-section {
        padding: 80px 7%;
        background-color: #fff8f3;
    }

    .contact-form {
        flex: 1;
        min-width: unset;
    }
}

/*Our sevices section*/
.work-detail {
  padding: 80px 5%;
  background: #fff;
}

.detail-header {
  text-align: center;
  margin-bottom: 40px;
}

.detail-header h1 {
  font-size: 2.2rem;
  color: #333;
}

.detail-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.description {
  flex: 1;
}

.book-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #ff6b6b;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.book-btn:hover {
  background: #ff4040;
}
.description h3{
     color:#b53d23;
 }

/*Footer ssection*/
.footer {
  background: #b53124;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-about .logo img{
    max-width:200px;
    width:200px;
}
@media(min-width:768px){
.footer-about{
    max-width:30vw;
}
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #adbe4a;
}

.footer p, .footer a {
  font-size: 15px;
  color: #ddd;
  line-height: 1.8;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #adbe4a;
}

.know-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.know-more:hover {
  color: #fff;
  transform: translateX(3px);
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ffffff33;
  margin-top: 30px;
  font-size: 14px;
  color: #bbb;
}
.photo{
    display:grid; display: grid;
    grid-template-columns: repeat(2, 0fr);
    gap:10px;
    justify-content:center;
}
.photo img{
    width:7vw;
    height:5vw;
    object-fit:cover;
    border-radius:10px;
    border: 4px solid #fff;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-about, .footer-links, .footer-contact {
    margin-bottom: 25px;
  }
  .photo img{
     width: 30vw;
    height: 25vw;
    object-fit: cover;
    border-radius: 20px;
  }
}
.breadcrumb-section {
  background-color:rgb(78, 85, 52) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff!important;

}



/*info Section*/

.boox-section h3 {
  font-size: 2.5rem;
  padding-bottom: 3rem;
  font-weight: bold;
  color: #222;
}

.top-boox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 26.5vw;
    gap: 15px;
}

.boox {
    position: relative;
    overflow: hidden;
}

.boox1 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('/Html/img/im1.jpg') no-repeat center/cover;
}

.boox2 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('/Html/img/ie1.jpg') no-repeat center/cover;
}

.boox3 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/iie2.jpg') no-repeat center/cover;
}

.boox4 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/iie.jpg') no-repeat center/cover;
}

.boox6 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/iei.png') no-repeat center/cover;
}

.boox5 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/iie1.jpg') no-repeat center/cover;
}

.boox7 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/iie1.jpg') no-repeat center/cover;
}

.boox8 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/iei.jpg') no-repeat center/cover;
}

.boox9 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/bag15.png') no-repeat center/cover;
}

.boox10 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/bag16.png') no-repeat center/cover;
}
.boox11 {
    background: linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/bag17.png') no-repeat center/cover;
}
.boox .box {
    width: 100%;
    height: 100%;
    object-fit: cover;    
    overflow: hidden;
    position: relative;
    z-index: 10;
    transition: transform 0.5s ease;
    transform-origin: left;
}

.boox:hover .box {
    transform: translateX(-100%);
}

/* TEXT STYLE */
.boox-text {
    font-family: lato;
    font-size: 14px;
    font-weight: 300;
}

.boox-text {
    color: #fff;
    width: 90%;
    position: absolute;
    bottom: 15%;
    right: 0 !important;
    left: unset;
    font-size: 14px;
    padding: 15px 10px;
    line-height: 1.5;
    bottom: 10%;
    font-weight: 300;
    transform: translateY(125%);
    transition: 0.4s ease-out;
    border-left: 2px solid #e39705;
}
.box1{
    background:linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('/Html/img/HAL.jpg') no-repeat center/cover;;
}
.box2{
    background:linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('/Html/img/i3i.jpg') no-repeat center/cover;;
}
.box3{
    background:linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('/Html/img/ie3.jpg') no-repeat center/cover;;
}
.box4{
    background:linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('/Html/img/iee.jpg') no-repeat center/cover;;
}
.box5{
    background:linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('/Html/img/eie.jpeg') no-repeat center/cover;;
}
.box6{
    background:linear-gradient(to bottom,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('/Html/img/iei1.jpg') no-repeat center/cover;;
}
/* HOVER EFFECT */

.boox:hover .boox-text {
    transform: translateY(0);
    bottom: 15%;
}

/* Tablet: 769px–1024px (if you use this) */
/* Your existing tab code can stay above or elsewhere */


/* 📱 Normal Mobile: 481px–768px */
@media (max-width: 768px) and (min-width: 481px) {
    .top-boox {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 15px;
    }

    .boox:hover .boox-text {
        transform: translateY(0);
        bottom: 0%;
        font-size: 11px;
    }
}

/* 📱 Small Mobile: 0–480px */
@media (max-width: 480px) {
    .top-boox {
        display: grid;
        grid-template-columns:1fr;
        grid-auto-rows: auto; /* a bit taller for small screens */
        gap: 10px;
    }

    /* Better to always show text or slide it in without hover */
    .boox .boox-text {
        font-size: 16px;
        padding: 6px;
    }
}

/*Tour Section*/
.destination-section {
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('../img/iii2.jpg') no-repeat center/cover;
}

.destination-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  font-style: italic;
  border-left: 3px solid #c9a24d;
  padding-left: 15px;
}

.destination-section h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.destination-section h3 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ff4330 ;
  padding-bottom:50px;
  text-align:center;
}
.destination-section h4 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom:1.5rem!important;
}

.destination-section p {
  font-size: 14px;
  color: #fff!important;
}

.destination-section img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.destination-section .btn {
  padding: 10px 28px;
  font-size: 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.tourul {
  list-style-position: inside;
  line-height:2;
  color:#fff;
  font-weight: 500;
}

.tourul li::marker {
  content: "# ";
  color: #c9a24d;
}
.grid-tour{
    display:grid;
    grid-template-columns:repeat(2, auto); 
    gap:7px;   
    justify-content:center;
}
.grid-tour img {
  width: 100%;
  width: 9vw;
  height: 15vh;
  object-fit: cover;
  border:2px solid #fff;
  border-radius:10px;
}
.tourul{
    padding-left:0;
}
  .butt{
      display:none;
  }
@media(max-width:768px){
  .grid-tour {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 7px;
  justify-content: center;
}
  .grid-tour img {
  width: 100%;
  width: 40vw;
  height: 15vh;
  object-fit: cover;
  border:2px solid #fff;
  border-radius:10px;
}
  .destination-section h3 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ff4330;
  padding-bottom: 30px;
  text-align: center;
}
   .but{
      display:none!important;
  }
  .butt{
      
      display:block !important;
       background-color: #bd473b!important;
       color:white!important;
  }
.butt:hover{
    background-color: #9b392f !important;
    color:white!important;
}
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

