/* General Styling for the Navbar */
.header_main_div {
  background-color: #d4c4b5;
  /* Beige tone for the header background */
  padding: 1rem 0;
  /* Add consistent spacing */
}

.navbar {
  background-color: transparent;
  /* Transparent background for aesthetic */
  padding: 0.5rem 0;
  /* Slightly reduce padding */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #4f4f4f;
  /* Dark gray for better readability */
  font-weight: bold;
  text-transform: uppercase;
  /* Uniform uppercase text */
  letter-spacing: 1px;
  /* Add letter spacing for modern look */
  transition: color 0.3s ease;
  /* Smooth hover transition */
}

.navbar-nav .nav-link:hover {
  color: #ffffff;
  /* White hover color for emphasis */
  text-decoration: none;
  /* Ensure no underline */
}

/* Offcanvas Styling */
.offcanvas {
  background-color: #d4c4b5;
  /* Match navbar background */
  color: #4f4f4f;
  /* Dark text for readability */
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
  /* Add a subtle divider */
}

.offcanvas-header img {
  max-height: 50px;
  /* Logo size */
}

.offcanvas-body {
  text-align: center;
  /* Center align menu items */
}

.offcanvas-body img {
  max-width: 80%;
  /* Responsive logo in offcanvas */
  margin-bottom: 1rem;
}

.offcanvas-body h5 {
  color: #ffffff;
  /* White text for emphasis */
  font-size: 1.2rem;
  font-weight: bold;
}

/* Responsive Improvements */
@media (max-width: 576px) {
  .navbar-nav {
    gap: 1rem;
    /* Add spacing between nav items */
  }

  .navbar-toggler {
    border: none;
    /* Remove button border */
  }

  .navbar-toggler-icon {
    background-image: url('https://img.icons8.com/ios-filled/50/000000/menu--v1.png');
    /* Replace icon with a modern menu icon */
    width: 30px;
    height: 30px;
  }

  .offcanvas-body ul.navbar-nav {
    gap: 0.5rem;
    /* Reduce gap for smaller screens */
  }
}

/* Button Styling */
.btn-close {
  color: #4f4f4f;
  /* Dark gray close button */
}

.btn-close:hover {
  color: #000;
  /* Slightly darker hover */
}

/* Add "Book Now" Section */
.offcanvas-body h5 {
  margin-top: 2rem;
  /* Add spacing above "Book Now" */
  font-size: 1.5rem;
  /* Slightly larger text */
  color: #ffffff;
  /* White for contrast */
}

.offcanvas-body h5:hover {
  color: #ddd;
  /* Subtle hover effect */
}

.navbar-nav .nav-link {
  color: black;
}




/*----------------------------------- crousel section---------------------------- */

/* @media(min-width: 600px) and (max-width: 1500px) {
    .carousel_img{
      height: 30vh !important;
    }
  } */

.carousel_img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .carousel_img {
    height: 60vh;
    object-fit: cover;
  }
}

@media screen and (min-device-width: 300px) and (max-device-width: 600px) {
  .carousel_img {
    height: 30vh;
    object-fit: cover;
  }
}

.carousel-indicators{
  display: none;
} 

.carousel-caption {
  background: rgb(0 0 0 / 32%);
  ;



}

/* Categories section */
.card {
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
}

.card-title {
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.card_btn {
  background-color: #cbb9a6;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1rem 1.5rem;
  height: 3.3rem;
}

.card_btn:hover {
  background-color: #b8a694;
  color: #fff;
}


.btn_second {
  background-color: #a3ad6f;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1rem 4rem;
  text-decoration: none;
  /* height: 5rem; */
}

.btn_second:hover {
  background-color: #b8a694;
  color: #fff;
}


/* about section */


.about-us p {
  font-size: 1rem;
  color: #6c757d;
}

.swiper-container {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  /* Ensure buttons position correctly */

}

.swiper-slide img {
  width: 100%;
  /* height: 100%; */
  border-radius: 8px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #6c757d;
  top: 50%;
  /* Center the buttons vertically */
  transform: translateY(-50%);
  /* Adjust for perfect centering */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #000;
}


.about-us {
  background-image: url("/img/bg1-1.jpg");
}

/* Default styles for all screens */
section.about-us {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

/* Override styles specifically for mobile screens (769px and smaller) */
@media screen and (max-width: 769px) {
  section.about-us {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .about_main_div {
    margin-bottom: 0 !important;
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
  }
}


.about_main_div {
  padding-bottom: 10rem;
  padding-top: 5rem;
}

.features-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 50px;
  background-color: #f3f2f0;
  border-radius: 8px;
  /* Optional rounded corners */
}

.feature-item {
  text-align: center;
  /* max-width: 200px; */
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #d9c6ae;
  /* Beige circle background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  /* Centers the circle and adds spacing */
}

.icon-circle i {
  font-size: 40px;
  /* Adjust icon size */
  text-align: center;
  margin: 0;
  /* Removes default margin */
}

.icon-circle img {
  width: 40px;
  /* Adjust icon size */
  height: auto;
}

.feature-item h3 {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 18px;
  margin: 10px 0;
}

.feature-item p {
  font-family: 'Arial', sans-serif;
  color: #6b6b6b;
  font-size: 14px;
  margin: 0;
}


.Courgette {
  font-family: "Courgette", serif;
  font-weight: 400;
  font-style: normal;
}


/* <!------------------------------------------- Shop Latest Styles----------------------------------------- --> */




.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  justify-items: center;
  /* Center items within the grid */
}

.product-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0;
}

.product-item .price {
  font-size: 1rem;
  color: #4CAF50;
  margin: 10px 0;
  font-weight: bold;
}

.product-item .add-to-cart {
  background: #d6c6b9;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-item .add-to-cart:hover {
  background: #b5a79c;
}

.categories_img {
  height: 22rem;
}

@media screen and (min-width: 765px) and (max-width: 1000px) {
  .categories_img {
    height: 12rem;
  }
}


/* <!-------------------------------------------  Styles div----------------------------------------- --> */
.addtocart {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-left: 30%;
  margin-right: 30%;
  background-color: #ccb9a7;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .addtocart {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-left: 20%;
    margin-right: 20%;
    background-color: #ccb9a7;
  }
}



/* <!------------------------------------------- Exclusive design----------------------------------------- --> */



.text-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}

.btn-custom {
  background-color: #a3b68b;
  color: white;
  padding: 2rem 6rem;
  border: none;
  font-size: 1rem;
  height: 3.3rem;
  text-decoration: none;

}


@media screen and (min-device-width: 577px) and (max-device-width: 1000px) {
  .btn-custom {
    background-color: #a3b68b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    height: 3.3rem;


  }
}


.btn-custom:hover {
  background-color: #8e9f73;
}





.image-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .text-content h2 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .text-content h2 {
    font-size: 1.8rem;
  }

  .text-content p {
    font-size: 0.9rem;
  }

  .btn-custom {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}



/* <!------------------------------------------- Testimonial design----------------------------------------- --> */
/* Overall Layout */
.testimonial-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #f9f9f9, #eaeaea);
}

.swiper-container {
  width: 80%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Testimonial Container */
.testimonial-container {
  padding: 40px;
  text-align: center;
  background: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Author Image Container */
.author-image-container {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 4px solid #d3b9a3;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-image-container:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Author Image */
.author-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.author-image-container:hover .author-image {
  opacity: 0.9;
}

/* Quote Styling */
.testimonial-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 1.2rem;
  color: #777;
  font-weight: bold;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  background-color: #d3b9a3;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #b79b83;
}

.swiper-button-next {
  right: -25px;
}

.swiper-button-prev {
  left: -25px;
}

/* Pagination */
.swiper-pagination {
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: #d3b9a3;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background: #8e9f73;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .swiper-container {
    width: 90%;
  }

  .testimonial-quote {
    font-size: 1.2rem;
  }

  .author-image-container {
    width: 80px;
    height: 80px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.client_heading {
  padding-top: 7rem;
  margin-bottom: 0rem;
}

/* <!------------------------------------------- banner design----------------------------------------- --> */


.content {
  position: relative;
  z-index: 2;
  text-align: center;
  background-image: url('/img/banner.webp');
  /* Replace with your image URL */
  background-size: cover;
  height: 80vh;
  top: 50;

}

.content h1 {
  font-size: 2rem;
  padding-top: 20%;
  margin-bottom: 20px;
  color: white !important;
}


@media screen and (max-width: 769px) {
  .content h1 {
    font-size: 2rem;
    padding-top: 50%;
    margin-bottom: 20px;
    color: white !important;
  }
}

.content button {
  background-color: #b3c581;
  border: none;
  padding: 23px 42px;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.content button:hover {
  background-color: #9da86a;
}


/* <!------------------------------------------- packages Section----------------------------------------- --> */
.packages-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
}

.packages-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 30%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.packages-card img {
  width: 100%;
  height: auto;
}

.packages-content {
  padding: 40px;
  text-align: center;
  background-color: #f2f1f0;
}

.packages-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #555;
}

.packages-content ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  color: #777;
}

.packages-content ul li {
  margin: 5px 0;
}

.packages-content .price {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
}

.packages-content button {
  background-color: #c9b79c;
  border: none;
  color: white;
  padding: 20px 50px;
  font-size: 1rem;
  cursor: pointer;
  /* border-radius: 5px; */
  margin-top: 10px;
}

.packages-content button:hover {
  background-color: #b3a189;
}

@media (max-width: 768px) {
  .packages-container {
    flex-direction: column;
    align-items: center;
  }

  .packages-card {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .packages-card {
    width: 100%;
  }

  .packages-content h3 {
    font-size: 1.2rem;
  }

  .packages-content .price {
    font-size: 1rem;
  }
}

hr {
  margin: 0.5rem 0;
}



/* <!------------------------------------------- Submit Section----------------------------------------- --> */
.header-section {
  background-color: #a0aa6d;
  padding: 20px 0;
  text-align: center;
  color: white;
}

.header-section h2 {
  margin: 0;
  font-size: 1.8rem;
  font-family: 'Courgette', cursive;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.form-container input {
  width: 300px;
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid #fff;
  background-color: white;
}

.form-container button {
  background-color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  color: #8aa381;
  font-weight: bold;
}

.images-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.images-section img {
  width: calc(25%);
  border-radius: 5px;
}

@media (max-width: 768px) {
  .images-section img {
    width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .form-container input {
    width: 80%;
  }

  .images-section img {
    width: 100%;
  }
}


/* <!------------------------------------------- Footer Section----------------------------------------- --> */




.footer {
  background-color: #d4c4b5;
  color: white;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: bolder;

}


@media (max-width: 500px) {
  .footer {
    background-color: #d4c4b5;
    color: white;
    padding: 10px 0;
    font-size: 0.7rem;
    font-weight: bolder;
  }

}

.footer .left,
.footer .right {
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.footer .right a {
  color: white;
  text-decoration: none;
}

.footer .right a:hover {
  text-decoration: underline;
}





.swiper-slideee img {
  width: 100%;
  height: 25rem;
  border-radius: 8px;

}

@media screen and (max-width: 769px) {
  .swiper-slideee img {
    width: 100%;
    height: 16rem;
    border-radius: 8px;

  }
}
@media screen and (max-width: 500px) {
  .swiper-slideee img {
    width: 100%;
    height: 12rem;
    border-radius: 8px;

  }
}

/* 
.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
} */

/* 
.book_now{
  background-color: #a3ad6f  ;
  padding: 0.1rem 1.8rem;
} */


.book_now {
  background-color: #a3ad6f;
  color: white;
  text-align: center;
  padding: 10px 30px;
  font-size: 20px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}


@media screen and (min-device-width: 750px) and (max-device-width: 1000px) {
  .book_now {
    background-color: #a3ad6f;
    color: white;
    text-align: center;
    padding: 10px 10px;
    font-size: 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
  }
}

/* Style for the sub-dropdown */
.dropdown-submenu .dropdown-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  margin-top: -5px;
}

/* Show the sub-dropdown on hover */
.dropdown-submenu:hover .dropdown-menu {
  display: block;
}

/* Optionally, you can style the sub-menu differently */
.dropdown-submenu>a::after {
  content: " ▼";
  font-size: 0.7rem;
}




/* .container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
} */
.slide-container {
  margin: 0 30px;
  overflow: hidden;
}

.card {
  background: #fff;
  border-radius: 8px;
}

.card .image-box {
  height: 200px;
}

.card .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}

.card .profile-details {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
}

.card .profile-details img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.profile-details .name {
  font-size: 15px;
  font-weight: 500;
}

.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn {
  color: #000;
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: black;
  border-radius: 20px;
  height: 35px;
}

.fa-angle-double-right {
  color: white;
}



/* .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1000;
    margin: 0;
    padding: 0.5rem 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
} */


/* .dropdown:hover>.dropdown-menu  {
  display: block;
} */




/* Main dropdown menu styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Show dropdown on hover */
.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Submenus styling */
.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
}

/* Show submenus on hover */
.dropdown-menu > li:hover > .dropdown-menu {
  display: block;
}

/* Dropdown items */
.dropdown-item {
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}








