  body, html {
      overflow-x: hidden; /* Prevent horizontal overflow */
      margin: 0; /* Remove default margin */
      font-family: 'Poppins', sans-serif; /* Apply Poppins font */
    }

/*topbar*/
/*topbar*/
.topbar {
  background-color: rgba(207, 0, 0, 0.7); /* Semi-transparent red */
  color: #ffffff;
}

.topbar-inner {
  max-width: 1300px;
}

.topbar i {
  margin-right: 5px;
}

/* Media query: Hide email on mobile */
@media (max-width: 576px) {
  .topbar-content .email-only {
    display: none !important;
  }

  .topbar-content .phone-only {
    display: inline-block;
  }
}


/*navbar*/
/*navbar*/
/* Navbar Custom Styles */
.custom-navbar .container {
  max-width: 1300px;
}

.navbar-nav .nav-item {
  margin-left: 35px; /* Adjust spacing as needed */

}

.contact-btn {
  background-color: #88A201;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #6e8900;
  color: #fff;
}
.brand-stacked {
  font-weight: bold;
  font-size: 24px; /* Increase as needed */
  line-height: 1.2;
}

.brand-stacked .swaron {
  color: #88A201;
  font-size: 28px;
}

.brand-stacked .inn {
  color: #CF0000;
  font-size: 24px;
  margin-top: -5px;
  margin-left: 65px;
}

.navbar-nav .nav-link {
  color: #2b2b2b !important;
}

.navbar-nav .nav-link.active {
  color: #D3232F !important;  /* Active link text color */
  font-weight: 600;           /* Optional: Bold text */
}

@media (max-width: 576px) {
  .navbar-nav .nav-item {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  #navbarNavAlt {
    justify-content: start !important;
  }
}

/*banner*/
/*banner*/
.banner-section {
  position: relative;
  height: 83vh;
  overflow: hidden;
}

.banner-slide {
  height: 83vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.banner-container{
 max-width: 1300px;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  animation: fadeInUp 1s ease-in-out;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}
.explore-btn {
  background-color: #88A201;
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.explore-btn:hover {
  background-color: #6e8900; /* Slightly darker green for hover */
  color: #fff;
}


.banner-content p {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 0;
}

.swaron-text {
  color: #88A201;
}

.inn-text {
  color: #CF0000;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .banner-section {
    height: auto;
  }
  .banner-slide {
    height: auto;
    padding: 40px 15px;
    flex-direction: column;
    text-align: center;
  }

  .banner-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .banner-content h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .banner-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}


/*booking form*/
/*booking form*/
.booking-box {
  position: absolute;
  bottom: -5px;
  left: -13px;
  width: 100%;
  display: flex;
  justify-content: start; /* center the form */
  padding-left: 15px;
  z-index: 2;
}

.booking-form {
  background-color: rgba(207, 0, 0, 0.8); /* Semi-transparent red */
  padding: 20px 30px; /* increased padding */
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px; /* increased gap */
  flex-wrap: wrap;
  max-width: 1000px; /* optional width limit */
}

.booking-form .form-group {
  position: relative;
  margin-bottom: 0;
}

.booking-form .form-control {
  padding-right: 40px;
  height: 50px; /* increased height */
  min-width: 220px; /* increased width */
  border-radius: 4px;
  border: none;
  color: #000000;
  background-color: rgba(255, 255, 255, 1);
  font-size: 1rem; /* optional: larger font */
}

.booking-form .form-control::placeholder {
  color: #000000;
  opacity: 1;
}

.icon-right {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  cursor: pointer;
  pointer-events: auto;
  font-size: 1.2rem;
}

.btn-book {
  background-color: #88A201;
  color: #fff;
  border: none;
  padding: 12px 26px; /* slightly bigger button */
  border-radius: 4px;
  transition: 0.3s ease;
  min-width: 130px; /* bigger button width */
  font-size: 1rem;
}

.btn-book:hover {
  background-color: #6e8900;
  color: #fff;
}

@media (max-width: 767px) {
  .booking-box {
    position: static;
    padding: 10px;
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .booking-form {
    display: block;
    padding: 20px;
    border-radius: 0;
    max-width: 100%;
  }

  .booking-form .form-group {
    width: 100%;
    margin-bottom: 15px;
  }

  .booking-form .form-control {
    width: 100%;
    min-width: 100%;
  }

  .btn-book {
    width: 100%;
  }
}

/*about section*/
/*about section*/
.about-heading {
  font-size: 2.1rem; /* Increase the size as needed */
  font-weight: 400;
}

.about-heading .swaron {
  color: #88A201;
}

.about-heading .inn {
  color: #CF0000;
}

@media (max-width: 767px) {
  .about-heading {
    font-size: 1.8rem;
    text-align: left;
  }

  .about-heading .swaron,
  .about-heading .inn {
    display: inline-block;
  }

  .about-section .row > div {
    margin-bottom: 20px;
  }

  .about-section img {
      display: block;
      margin: 0 auto;
      max-width: 90%; /* You can adjust this value (e.g., 70% or 60%) */
      height: auto;
    }

  .about-section p {
    text-align: justify;
  }

  .about-section .btn {
    display: block;
    width: 50%;
    text-align: center;
  }
}

/*rooms section*/
/*rooms section*/

    .rooms{
      background-color: #f7f7f7;
    }
   .room-heading {
      font-size: 38px;
      font-weight: 400;
    }
    .room-heading span {
      color: #D3232F;
      font-weight: 400;
    }
 
    .swiper-container {
      padding-top: 30px;
      padding-bottom: 50px;
    }
    .room-card {
      overflow: hidden;
    }

    .room-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 10px;
    }
    .room-details {
      padding: 15px;
    }
    .room-title {
      font-size: 20px;
      font-weight: 600;
    }
    .room-icons {
      font-size: 14px;
      color: #444;
      margin-top: 10px;
    }
    .room-icons i {
      margin-right: 6px;
    }
    .book-btn {
      margin-top: 15px;
      border: 2px solid #A3C517;
      color: #000;
      background-color: #fff;
      padding: 6px 20px;
      border-radius: 6px;
      transition: 0.3s;
    }
    .book-btn:hover {
      background-color: #A3C517;
      color: #fff;
    }

    @media (max-width: 767px) {
  .room-heading {
    font-size: 33px;
    line-height: 1.4;
    text-align: left;
  }

  .rooms .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .room-details {
    padding: 12px;
  }

  .room-title {
    font-size: 18px;
    text-align: center;
  }

  .room-icons {
    font-size: 13px;
    text-align: center;
  }

  .book-btn {
    display: block;
    margin: 10px auto 0;
  }

  .swiper-container {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .room-card img {
    height: 200px;
  }
}



    /*some section*/
    /*some section*/

      .most {
      width: 100%;
      max-width: 700px; /* Adjust as needed */
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    .some-heading {
      font-size: 2rem; /* Increase the size as needed */
      font-weight: 400;
    }

    .some-heading .swaron {
      color: #88A201;
    }

    .some-heading .inn {
      color: #CF0000;
    }

    @media (max-width: 767.98px) {
      .most {
        max-width: 90%; /* slightly narrower on tablets and smaller */
        margin-top: 20px;
      }
    }

    @media (max-width: 575.98px) {
      .most {
        max-width: 100%; /* full width on small mobile devices */
        padding: 0 10px; /* optional side padding */
      }
    }


    @media (max-width: 767.98px) {
      .responsive-image {
        max-width: 80%;   /* reduce width on mobile */
        height: auto;
        margin-top: 10px;   /* center horizontally */
        display: block;
      }
    }

    @media (max-width: 575.98px) {
      .responsive-image {
        max-width: 100%;  /* full width on very small devices */
        height: auto;
      }
    }



    /*amenities section*/
    /*amenities section*/

    .amenities .amenity-card {
      background-color: rgba(207, 0, 0, 0.72); /* Red with reduced opacity */
      border: none;
      padding: 20px;
      min-height: 100px;
      max-width: 40%;
      margin-left: auto;
      margin-right: auto;

      /* Apply the morph animation */
      animation: morph 6s ease-in-out infinite;

      /* Start with a smooth shape */
      border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .amenities .amenity-card:hover {
      transform: translatey(-4px);
    }

    .amenities i {
      font-size: 40px;
      color: white;
    }

    @media (max-width: 576px) {
      .amenities .amenity-card {
        max-width: 30%; /* Increase width to nearly full on mobile for better readability */
        padding: 15px;  /* Optional: Slightly reduce padding */
      }
    }

    /*testimonials*/
    /*testimonials*/
    .testimonials {
      background-color: #f8f9fa;
    }

    .testimonial-card {
      border: none;
      border-radius: 12px;
      background-color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .testimonial-card .rating {
      top: 15px;
      right: 15px;
      font-size: 1rem;
      background: #fff;
      padding: 4px 8px;
      border-radius: 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    /*Contact section*/
    /*Contact section*/
    .contact-section input,
    .contact-section textarea {
      height: 50px;
      font-size: 16px;
      border: 1.5px solid #000;
      border-radius: 25px;
    }

    .contact-section textarea {
      height: 120px;
      resize: none;
    }

    .contact-section input::placeholder,
    .contact-section textarea::placeholder {
      color: #444;
      font-weight: 500;
    }

    .contact-section button {
      background-color: #88a60d;
      color: #fff;
      border-radius: 25px;
      font-weight: 600;
      font-size: 16px;
      padding: 10px 40px;
      border: none;
      transition: 0.3s ease;
    }

    .contact-section button:hover {
      background-color: #6e850c;
    }

    .contact-section h4 {
      font-size: 24px;
      font-weight: 600;
    }


    /*footer*/
    /*footer*/
    .bg-footer {
        background-color: #88A201;
      }

      .footer-heading {
        color: #CF0000;
        font-size: 18px;
        font-weight: 600;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
      }

      .footer-links a:hover {
        color: #f8f9fa;
        text-decoration: none;
      }

      .footer-line {
        border-top: 1px solid #ffffff70;
        margin: 10px 0 40px;
      }

      .footer-bottom-text {
        font-size: 15px;
        color: #fff;
      }

      .digitalex-link {
        color: #ffffff;
        text-decoration: none;
      }
      .digitalex-link:hover {
        color: #ffffff;
        text-decoration: none; /* or 'none' if you want no underline */
      }

      @media (max-width: 768px) {
        .footer-bottom-text {
          font-size: 14px;
        }
      }

      /*about-banner-section*/
      /*about-banner-section*/
      .about-banner-section {
        height: 40vh;
        background: url('img1.png') no-repeat center center/cover; /* Replace with your actual image path */
        position: relative;
        text-align: center;
        color: white;
      }

      .about-banner-heading {
        font-size: 42px;
        font-weight: 600;
        color: #fff;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
      }
      @media (max-width: 576px) {
      .about-banner-heading {
        font-size: 28px;
      }
    }
    
    /*rooms page section*/
    /*rooms page section*/
    .worth .rooms-card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .worth .rooms-card:hover {
    transform: translateY(-5px);
  }

  .worth .rooms-card img {
    height: 350px;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .worth .card-body {
    background-color: transparent;
  }

  .worth .booking-btn {
    background-color: #88A201;
    color: white;
    border: none;
  }

  .worth .booking-btn:hover {
    background-color: #6e8800;
  }

  .worth .d-flex.gap-3 span {
    margin-right: 15px;
  }
   
  /*topattractions page*/
  /*topattractions page*/
.attraction .attraction-card {
  width: 100%;
  max-width: 340px;
  height: 400px;
  background: #000000;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  transition: 0.2s ease-in-out;
   /* Box Shadow Added */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.attraction .attraction-card .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: 0.2s ease-in-out;
  z-index: 1;
}

.attraction .attraction-card .textBox {
  opacity: 0;
  z-index: 2;
  transition: 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  text-align: center;
}

.attraction .attraction-card .head {
  font-size: 24px;
  font-weight: bold;
}

.attraction .attraction-card:hover .textBox {
  opacity: 1;
}

.attraction .attraction-card:hover .img {
  height: 100%;
  filter: blur(7px);
  animation: anim 3s infinite;
}


@keyframes anim {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.attraction .attraction-card:hover {
  transform: scale(1.05) rotate(-1deg);
}

.attraction .row {
  margin-bottom: 30px; /* Add vertical space between each row */
}

/*services page*/
/*services page*/

.service-page {
  padding: 60px 20px;
}

.service-page h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2E2E2E; /* adjust as per theme */
}

.service-page p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.service-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

