body, html {
    font-family: 'Poppins';
    overflow-x: hidden; /* Prevent horizontal overflow */
    margin: 0; /* Remove default margin */
  }

  /*Topbar*/
  /*Topbar*/
  .phone-call-link {
    text-decoration: none;
    color: #ffffff;
  }
  .phone-call-link:hover {
    text-decoration: none;
    color: #ffffff;
  }
  @media (max-width: 767px) {
    /* Hide email and "Follow Us" with icons */
    .topbar-email,
    .topbar-follow {
      display: none !important;
    }
  
    /* Align phone number to the right */
    .topbar-phone {
      margin-left: auto;
    }
  }
  
/*navbar*/
/*navbar*/
/* Navbar Custom Styling */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
  }
  
  .navbar-nav .nav-item {
    margin-right: 28px; /* Gap between menu items */
  }
  
  .navbar-nav .nav-item:last-child {
    margin-right: 0; /* No gap after last item */
  }
  
  /* Call Section Styling */
  .call-section {
    font-size: 14px;
    line-height: 1.2;
  }
  
  .call-section i {
    font-size: 18px;
  }
  
  .navbar-nav .nav-link.active {
    color: #90B956 !important;
    font-weight: 700; /* Make it bold */
}
.cookie {
  cursor: pointer;
}

.cookie:hover {
  color: #90B956; /* Change to your preferred hover color */
}


/* Sidebar styles */
/* Sidebar styles for mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden initially */
    width: 320px;
    height: 100%;
    background: #fff;
    padding: 30px 20px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    display: flex;
    flex-direction: column;
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin-bottom: 18px;
  }

  .navbar-nav .nav-link {
    padding: 10px 15px;
    border-radius: 6px;
    width: 100%;
    color: #333;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
  }

  .navbar-nav .nav-link:hover {
    background: #90B956;
    color: #fff !important;
  }

  .call-section {
    margin-top: 30px;
    padding: 10px 15px;
    background: #f7f7f7;
    border-radius: 6px;
    width: 100%;
  }

  /* Close button */
  .sidebar-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
  }
}


  /* Banner Section */
  /* Banner Section */

.banner-section {
    height: 83vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
  }
  
  /* Small Heading */
  .small-heading {
    font-family: 'Dancing Script';
    font-size: 35px;
    margin-bottom: 8px;
  }
  
  /* Big Heading */
  .big-heading {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  /* Paragraph */
  .banner-para {
    font-size: 18px;
    max-width: 800px;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
  
  
 /* Discover Button */
.discover-btn {
    background-color: #90B956;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s ease;
    text-decoration: none;
    max-width: 210px;
    font-size: 16px;
  }
  
  .discover-btn:hover {
    background-color: #7CA64B;
    color: #fff;
  }
  
  /* Icon inside button */
  .discover-btn i {
    font-size: 18px;
  }
  
  /* Text */
  .discover-btn span {
    font-size: 16px;
  }

  /* Mobile Adjustments */
@media (max-width: 767px) {

  /* Banner Section */
  .banner-section {
    height: 60vh; /* Reduce height for mobile */
  }

  /* Small Heading */
  .small-heading {
    font-size: 28px; /* Smaller font size */
    margin-bottom: 5px; /* Adjust margin */
  }

  /* Big Heading */
  .big-heading {
    font-size: 40px; /* Smaller font size */
    margin-bottom: 15px; /* Adjust margin */
  }

  /* Paragraph */
  .banner-para {
    font-size: 16px; /* Smaller font size */
    max-width: 100%; /* Full width */
    margin-bottom: 20px; /* Adjust margin */
    line-height: 1.5; /* Adjust line-height */
  }

  /* Button */
  .discover-btn {
    padding: 10px 25px; /* Adjust padding */
    font-size: 14px; /* Smaller font size */
    max-width: 200px; /* Adjust width */
  }

  /* Icon inside button */
  .discover-btn i {
    font-size: 16px; /* Adjust icon size */
  }

  /* Adjust carousel control icons */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #0000005d; /* Adjust background color */
    border-radius: 50%; /* Keep rounded corners */
  }

  /* Hide carousel controls on mobile */
  .carousel-control-prev,
  .carousel-control-next {
    display: none; /* Hide prev/next buttons for mobile */
  }
}

/* Smooth fade transition */
/* Existing code (unchanged) */
.carousel-item {
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  opacity: 0;
  transform: scale(1.05);
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

/* Add a slight zoom-in effect on active slide */
.carousel-inner {
  position: relative;
  overflow: hidden;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  transition: transform 1s ease-in-out;
  transform: scale(1.05); /* Slight zoom */
}

.carousel-item-next,
.carousel-item-prev {
  transform: scale(1.05);
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: scale(1);
}

.carousel-item.active {
  transform: scale(1);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 1s;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Transition for the controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  transition: background-color 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: #fff; /* Add a hover effect to controls */
}

/* Enhanced rules for ultra-smooth Bootstrap carousel-fade effect */
.carousel-fade .carousel-item {
  position: absolute; /* Overlap slides for true crossfade */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Start fully transparent */
  transition: opacity 4s cubic-bezier(0.33, 0.04, 0.63, 0.99); /* Ultra-smooth 4-second dissolve */
  transform: none; /* Remove zoom for pure dissolve */
}

.carousel-fade .carousel-item.active {
  opacity: 1; /* Fully visible */
  z-index: 1; /* Active slide on top */
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
  opacity: 0; /* Ensure transitioning slides start transparent */
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1; /* Smooth fade-in for next/prev slides */
}

/* Ensure controls are accessible */
.carousel-control-prev,
.carousel-control-next {
  z-index: 2; /* Keep controls above slides */
}

  /*booking bar*/
  /*booking bar*/
  /* Booking Bar */
.booking-bar {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1300px;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
  
  /* Booking Form Fields */
  .booking-form .form-group {
    flex: 1 1 18%;
    display: flex;
    align-items: center;
    margin: 5px;
  }
  
  .booking-form .form-group i {
    font-size: 18px;
    color: #90B956;
  }
  
  .booking-form .form-group input {
    border: none;
    border-bottom: 2px solid #ddd;
    outline: none;
    width: 100%;
    padding: 8px 5px;
    font-size: 14px;
    background: transparent;
  }
  
  .booking-form .form-group input::placeholder {
    color: #999;
  }
  
  /* Book Now Button */
  .book-now-btn {
    background-color: #90B956;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
    flex: 1 1 14%;
    margin: 5px;
  }
  
  .book-now-btn:hover {
    background-color: #7CA64B;
    color: #fff;
  }

  /* Hide mobile form by default */
.mobile-booking-form {
  display: none;
}

/* Responsive Changes for Mobile */
@media (max-width: 767px) {

  /* Hide desktop booking bar on mobile */
  .booking-bar {
    display: none;
  }

  /* Show mobile form on mobile */
  .mobile-booking-form {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 20px;
  }

  .mobile-booking-form input {
    width: 100%;
    padding: 12px 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
  }

  .mobile-booking-form button {
    width: 100%;
    background-color: #90B956;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
  }

  .mobile-booking-form button:hover {
    background-color: #7CA64B;
  }
  .mobile-booking-form {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
  }
  
  .mobile-booking-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
  }
  .input-label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
  
  }
}


  /*about section*/
  /*about section*/
  .about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .about-section .section-small-heading {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
  }
  
  .about-section .section-main-heading {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
  }
  
  .about-section .section-para {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .about-section .contact-now-btn {
    background-color: #90B956;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .about-section .contact-now-btn:hover {
    background-color: #7CA64B;
    color: #fff;
  }
  
  .about-section .info-box {
    background-color: #F3F8E9;
    border-radius: 30px;
    font-size: 15px;
    color: #222;
  }
  
  .about-section .green-box {
    background-color: #90B956;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
    height: 255px; /* Increase height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: -150px; /* ✅ Negative margin to pull up green box under image */
    overflow: hidden;
    padding: 20px;
  }
  
  .about-section .green-box p {
    margin: 0;
  }
  
  .about-section .green-box i {
    margin-right: 15px;
  }
  
  .about-section .image-wrapper {
    position: relative;
    z-index: 2; /* ✅ Image on top */
  }
  
  .about-section .rounded-image {
    width: 100%;
    border-radius: 30px;
  }
  /* ✅ Media Query for Mobile Devices */
  @media (max-width: 767px) {
    .about-section .green-box {
      height: 325px; /* Increase height only for mobile */
      margin-bottom: -180px; /* Adjust margin if needed for mobile */
    }
  }
    

  /*tour packages*/
  /*tour packages*/
  /* General Styling for Tours Section */

.tours {
    background-color: #F5F5DC !important;
}

.tours .card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tours .card:hover {
    transform: scale(1.05); /* Slightly scale up the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.tours .card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}


/* Button Styling for Tours */
.tours-btn {
    padding: 10px 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    background-color: #90B956;
    color: white;
    text-decoration: none;
}

.tours-btn:hover {
    background-color: #80a845;
    color: #F3F8E9;
}

/* Card Button */
.tours-card .tours-card-btn {
    width: 50%;
    margin-top: 15px;
    border: 1px solid #90B956;
    color: #90B956;
}

/* Heading Styling */
.tours .card-title,
.tours h2 {
  font: bold;
  font-size: 19px;
}

/* Styling for share class */
.share h5.text {
    font-size: 24px;
}

.share h2 {
    color: #333; /* Adjust heading color */
    font-weight: 700;
    font-size: 40px;
}


/* Responsive Fixes for Tours Section */
@media (max-width: 768px) {
    .tours .card-img-top {
        height: 180px;
    }
}
/* ✅ Responsive Fixes for Tours Section */
@media (max-width: 768px) {
  .tours .card-img-top {
    height: 180px; /* Already done */
  }

  .share h5.text {
    font-size: 20px; /* Slightly smaller */
    text-align: center; /* Center align */
  }

  .share h2 {
    font-size: 30px; /* Smaller heading */
    text-align: center;
    margin-top: 10px;
  }

  .tours .tours-btn {
    padding: 8px 16px;
    font-size: 14px;
    width: 100%; /* Full width button on mobile */
    margin-top: 15px;
  }

  .tours .row.mt-3 {
    margin-top: 1rem !important; /* Little less spacing */
  }

  .tours-card {
    margin-bottom: 30px; /* Space between cards */
  }

  .tours-card .card-body {
    text-align: center; /* Center text inside card */
  }

  .tours-card .tours-card-btn {
    width: 100%; /* Full width Book Now button */
    font-size: 14px;
  }

  /* Adjust padding */
  .tours .container {
    padding: 0 15px;
  }

  /* Align first row items */
  .tours .row:first-child {
    text-align: center;
    margin-bottom: 20px;
  }

  /* Remove empty column (col-md-3) gap on mobile */
  .tours .row:first-child .col-md-3 {
    display: none;
  }
}


/*services section*/
/*services section*/

.travel-services {
    background: #f5f5dc; /* Soft beige background */
}

/* First Row Heading & Para */
.travel-heading {
    font-size: 36px;
    font-weight: 700;
    color: #333;
  }
  
  .travel-para {
    font-size: 16px;
    color: #555;
  }
  
  /* Travel Card */
  .travel-card {
    border: 2px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 360px;
    width: 95%;
  }
  
  .travel-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .travel-card-img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px; /* No round */
  }
  
  .travel-card-number {
    font-size: 24px;
    font-weight: 700;
    color: #90B956;
    text-align: right;
  }
  
  .travel-card-title {
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
    color: #333;
  }
  
  .travel-card-text {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
  }
  
  /* Swiper */
  .swiper {
    padding: 10px 0;
  }
  
  .swiper-wrapper {
    align-items: center;
  }
  
  .swiper-slide {
    width: 470px; /* Bigger cards */
  }

/* ✅ Responsive Fixes for Travel Services Section */
/* ✅ Responsive Fixes for Travel Services Section */
/* ✅ Responsive Fixes for Travel Services Section */
@media (max-width: 768px) {

  .travel-heading {
    font-size: 28px; /* Smaller heading */
    text-align: center;
  }

  .travel-para {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }

  .travel-card {
    height: auto; /* Remove fixed height */
    width: 100%; /* Full width card */
    margin-bottom: 20px;
  }

  .travel-card-img {
    height: 130px; /* Reduce image height */
    border-radius: 10px;
  }

  .travel-card-number {
    font-size: 18px;
    text-align: center;
    white-space: nowrap; /* ✅ Prevent breaking into two lines */
    line-height: 1; /* ✅ Optional: tighter vertical spacing */
  }

  .travel-card-title {
    font-size: 18px;
    text-align: center;
  }

  .travel-card-text {
    font-size: 14px;
    text-align: center;
  }

  /* Swiper Slide Adjustments */
  .swiper-slide {
    width: 280px; /* Smaller swiper cards on mobile */
  }
}

/* ✅ Extra Small Devices */
@media (max-width: 576px) {
  .swiper-slide {
    width: 250px; /* Even smaller for very small screens */
  }

  .travel-heading {
    font-size: 24px;
  }

  .travel-para {
    font-size: 13px;
  }
}

  /*Top Destinations*/
  /*Top Destinations*/
  .vibe-small {
    font-size: 24px;
    color: #000000;
    margin-bottom: 10px;
  }
  
  .vibe-big {
    font-size: 32px;
    font-weight: bold;
    color: #222;
  }
  
  .vibe-btn {
    background-color: #90B956;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
  }
  
  .vibe-cards .vibe-card {
    background-color: black; /* Black card background */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  }
  
  .vibe-cards .vibe-card:hover {
    transform: scale(1.05); /* Slight zoom-in effect */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
  }
  

  
  .vibe-cards .vibe-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.6; /* If you want reduce here, or control in image */
  }
  
  .vibe-cards .vibe-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white; /* Only white text */
    font-weight: 600;
    font-size: 18px;
  }
  @media (max-width: 768px) {
    .vibe-small {
      font-size: 18px; /* smaller for mobile */
      text-align: center;
    }
  
    .vibe-big {
      font-size: 24px; /* smaller for mobile */
      text-align: center;
    }
  
    .vibe-btn {
      padding: 8px 16px;
      font-size: 14px;
      display: block;
      margin: 10px auto; /* center the button */
    }
  
    .vibe-cards .vibe-card {
      margin-bottom: 20px; /* spacing between cards */
    }
  
    .vibe-cards .vibe-img {
      height: 200px; /* reduce image height on mobile */
    }
  
    .vibe-cards .vibe-text {
      font-size: 16px;
      left: 10px;
      bottom: 10px;
    }
  }
  
  /*testimonials*/
  /*testimonials*/
  /* Testimonial Section */

  
  /* Small Heading Style */
  .testimonial .small-heading {
    font-size: 24px;
    color: #000000;
    margin-bottom: 10px;
  }
  
  /* Big Heading Style */
  .testimonial .big-heading {
    font-size: 32px;
    font-weight: bold;
    color: #222;
  }
  
  /* Testimonial Card Style */
  .testimonial-card {
    background-color: #FAFAFA;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial .stars {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  
  .testimonial .star-square {
    background-color: #00B67A;
    padding: 5px;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .testimonial .star-square i {
    margin-right: 2px;
  }
  
  .testimonial .testimonial-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .testimonial .testimonial-card strong {
    font-weight: bold;
  }
  
  .testimonial .location {
    color: #777;
    font-size: 14px;
  }
  /* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #90B956;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}
  @media (max-width: 768px) {
    .testimonial .small-heading {
      font-size: 18px; /* smaller small heading */
      text-align: center;
    }
  
    .testimonial .big-heading {
      font-size: 24px; /* smaller big heading */
      text-align: center;
      margin-bottom: 15px;
    }
  }
  
  /* Gap between columns */
  .testimonial .row .col-md-6 {
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .testimonial .row {
    margin-top: 50px;
  }

  /*contact section*/
  /*contact section*/
  /* Contact Section Styling */
.contact .big-heading {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
  }
  
  .contact p {
    font-size: 16px;
    color: #555;
  }
  
  .contact .social-icons {
    margin-top: 10px;
  }
  
  .contact .social-icon {
    margin-right: 15px;
    font-size: 20px;
    color: #333;
  }
  
  .contact .social-icon:hover {
    color: #90B956;
  }
  
  /* Form Card Styling */
  .contact .card {
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .contact .card-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .contact form input,
  .contact form textarea {
    border-radius: 8px;
    padding: 25px;
    font-size: 14px;
    border: 1px solid #ddd;
    width: 100%;
  }
  
  .contact form textarea {
    resize: vertical;
  }
  
  .contact form button {
    padding: 10px;
    font-size: 16px;
    border-radius: 25px;
    border: none;
  }
  
  .contact .form-control {
    border-radius: 25px;
    
  }
  .contact-link {
    text-decoration: none !important;
    color: #555;
  }
  
  /* Responsiveness for small screens */
  @media (max-width: 767px) {
    .contact .social-icons {
      text-align: left;
    }
    .contact .social-icon {
      display: inline-block;
      margin: 0 10px;
    }
  }
  @media (max-width: 768px) {
    .contact .big-heading {
      font-size: 28px; /* Smaller heading for mobile */
      text-align: center;
    }
  
    .contact p {
      font-size: 14px;
      text-align: center;
    }
  
    .contact .card-title {
      font-size: 24px;
      text-align: center;
    }
  
    .contact form input,
    .contact form textarea {
      padding: 15px; /* Reduce padding on mobile */
      font-size: 13px;
    }
  
    .contact form button {
      width: 100%; /* Full width button */
      margin-top: 10px;
    }
  
    .contact .social-icons {
      text-align: left;
      margin-bottom: 15px;
    }
  
    .contact .social-icon {
      display: inline-block;
      margin: 0 8px;
      font-size: 18px; /* Slightly smaller icons */
    }
  }
  
  
  /*about page*/
  /*about page*/
  .about-banner {
    background-color: #90B956;
    height: 40vh;
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    text-align: center; /* Ensure text is center aligned */
  }
  
  .inner-about-banner {
    max-width: 1300px;
  }
  
  .inner-about-banner h1 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .inner-about-banner p {
    font-size: 18px;
    color: #fff;
  }
  
  /*about page content section*/
  /*about page content section*/
  .sora-about-content {
    padding: 60px 0;
  }

  .sora-about-image {
    width: 100%;
    height: auto;
  }
  
  .sora-row {
    display: flex;
    align-items: center;
  }
  
  .sora-h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }
  
  .sora-p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  
  @media (max-width: 767px) {
    .sora-row {
      flex-direction: column;
    }
  
    .sora-h2 {
      text-align: center;
    }
  
    .sora-p {
      text-align: justify;
    }
  }
  

  /*why choose us for about page*/
  /*why choose us for about page*/
  .why-choose-us {
    padding: 60px 0;
}

.why-choose-small-heading {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.why-choose-big-heading {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
}

.why-choose-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.why-choose-card .fa {
    color: #90B956;
    margin-bottom: 20px;
}

.why-choose-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.why-choose-card .card-description {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}



.why-choose-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-choose-card i {
    margin-bottom: 20px;
    color: #90B956;
}

@media (max-width: 767px) {
  .why-choose-card {
      margin-bottom: 50px; /* Adds space between cards on mobile */
  }

  .why-choose-us .row.justify-content-center {
      margin-left: 0;
      margin-right: 0;
  }

  .why-choose-us .col-sm-6 {
      padding-left: 15px;
      padding-right: 15px;
      margin-bottom: 35px; /* Extra bottom space between columns */
  }
}

/* Responsive Styling */
@media (max-width: 767px) {
    .why-choose-card {
        margin-bottom: 30px !important;
    }

}
/* Overline From Right */
.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #90B956;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
  left: 0;
}


/*sight seeing page*/
/*sight seeing page*/
.top-attractions {
  padding: 30px 0;
}

.top-heading {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.top-para {
  font-size: 14px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.attraction-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.attraction-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.place-name {
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px 5px;
  text-align: left;
  color: #000;
}

.place-description {
  font-size: 14px;
  color: #555;
  padding: 0 20px 20px;

}
@media (max-width: 768px) {
  .top-heading {
    font-size: 26px;
  }

  .top-para {
    font-size: 13px;
    padding: 0 15px;
  }

  .attraction-card {
    width: 90%;
    margin: 0 auto 20px;
  }

  .attraction-image {
    height: 180px;
  }

  .place-name {
    font-size: 16px;
    padding: 12px 15px 5px;
  }

  .place-description {
    font-size: 13px;
    padding: 0 15px 15px;
  }
}

@media (max-width: 576px) {
  .top-heading {
    font-size: 24px;
  }

  .top-para {
    font-size: 12px;
  }

  .attraction-card {
    width: 85%;
    margin: 0 auto 20px;
  }

  .attraction-image {
    height: 160px;
  }

  .place-name {
    font-size: 15px;
  }

  .place-description {
    font-size: 12px;
  }
}


/*footer*/
footer {
  background-color: #90B956 !important;
  color: white;
}

footer .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

footer h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

footer p {
  font-size: 14px;
  line-height: 1.6;
}

footer ul {
  padding-left: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

footer ul li a:hover {
  text-decoration: none;
}

/* Add gap between Quick Links */
footer .col-lg-2 ul li {
  margin-bottom: 15px;
}

/* Add gap between Packages */
footer .col-lg-3 ul li {
  margin-bottom: 15px;
}

/* Footer Bottom */
footer .text-left p {
  font-size: 14px;
}

/* Horizontal Line */
footer hr {
  background-color: white;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  height: 1px;
}





