/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
}

header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* NAVBAR CONTAINER */
.navbar {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 65px;
  max-width: 200%;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  font-size: 26px;
  color: #ffffff;
  cursor: pointer;
}

/* NAV MENU */
ul.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  transition: all 0.3s ease;
}

ul.nav-menu li {
  position: relative;
}

ul.nav-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 8px 10px;
  display: block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

ul.nav-menu li:hover>a {
  color: rgb(255, 124, 91);
}

/* DROPDOWN MENU */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  /* black background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  min-width: 220px;
  z-index: 999;
  transition: all 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  /* white text */
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f3f3f3;
  color: rgb(255, 124, 91);
  /* hover orange */
}

.dropdown-menu.open {
  display: block;
}

/* SUBMENU */
.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  /* black background */
  min-width: 180px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

.has-submenu .submenu a {
  display: block;
  padding: 10px;
  color: #fff;
  /* white text */
  text-decoration: none;
}

.has-submenu .submenu a:hover {
  background: #f3f3f3;
  color: rgb(255, 124, 91);
  /* hover orange */
}

/* HOVER OPEN (desktop) */
li:hover .dropdown-menu {
  display: block;
}

.has-submenu:hover>.submenu {
  display: block;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    gap: 15px;
  }

  ul.nav-menu.active {
    display: flex;
  }

  .dropdown-menu,
  .submenu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown-menu a,
  .submenu a {
    color: #fff;
    padding: 10px 15px;
  }

  .has-submenu .submenu {
    padding-left: 15px;
  }
}


.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #002147;
  /* dark blue */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}



/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay for text */
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 80vh;
    /* reduce overall height on mobile */
  }

  .slide {
    background-size: cover;
    background-position: center;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 70vh;
    /* smaller screens get slightly less height */
  }

  .slide-content h1 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-menu {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
  }

  ul.nav-menu.active {
    display: flex;
  }

  ul.nav-menu li {
    width: 100%;
    text-align: left;
  }

  .dropdown-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    border: none;
  }

  .dropdown-menu a {
    padding-left: 25px;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .navbar {
    padding: 10px 15px;
  }
}


/* travel themes css */
.travel-themes-section {
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #fff;
}

.themes-list li a {
  text-decoration: none;
  color: #ffffff;
  /* ya koi bhi suitable color */
  transition: color 0.3s ease;
}

.themes-list li a:hover {
  color: #d12f2f;
  /* hover pe red shade */
}

.travel-themes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1280px;
  margin: auto;
}

.travel-themes-left {
  flex: 1 1 30%;
  /* background: url('my\ images/2ndsectionleftbackground.jpg') no-repeat center center/cover; */
  padding: 30px;
  border-radius: 1px;
  color: #fff;
  /* height: 469px; */
}

.travel-themes-left h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
  bottom: -231px;
}

.themes-list {
  list-style: none;
  padding: 0;
  margin-top: 241px;
}

.themes-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

.travel-themes-right {
  flex: 1 1 65%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* .card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
} */

.card {
  background: linear-gradient(to bottom right, #ffffff, #f7f7f7);
  color: #000;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding-bottom: 15px;
}

.card-image-wrapper {
  padding: 15px 15px 0;
  /* top space before image */
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  /* optional: make image corners round */
}

@media (max-width: 768px) {
  .card img {
    height: 258px;
  }
}

.card h4 {
  font-size: 20px;
  padding: 10px 15px 5px;
}

.card a {
  color: rgb(13, 20, 87);
  text-decoration: none;
  font-weight: 600;
  padding: 0 15px 10px;
  display: inline-block;
}

.card a:hover {
  color: rgb(0, 0, 0);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.travel-themes-left {
  position: relative;
  background-image: url('/my images_NEW/srilanka1.jpg');
  /* backslash hata diya */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  z-index: 1;

  /* 👇 Rounded corners */
  border-radius: 20px;
  overflow: hidden;
  /* taaki background image bhi round ho */

  padding: 30px;
  /* Optional: andar ka content spacing ke liye */
}

.travel-themes-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* adjust darkness here */
  z-index: 0;
}

.travel-themes-left * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .travel-themes-left {
    border-radius: 20px;
    overflow: hidden;
  }
}


@media (max-width: 768px) {

  .travel-themes-left,
  .travel-themes-right {
    flex: 1 1 100%;
  }

  .travel-themes-left {
    margin-bottom: 0px;
    height: 654px;
  }
}


/* scrollbutton */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  font-size: 22px;
  background: rgb(255, 124, 91);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

#scrollTopBtn:hover {
  background: #013557;
}


/* 3rd section */
.tour-highlight-section {
  padding: 0px 0px;
  margin-top: -11px;
  background-color: #f9f9f9;
}

.tour-highlight-section h2 {
  text-align: center;
  font-size: 35px;
}

.tour-highlight-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

.para {
  margin-top: -168px;
}

.para h3 {
  color: white;
}

.left-slider {
  flex: 1 1 50%;
  max-width: 422px;
}

/* .left-slider {
  flex: 1;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.right-cards {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  height: 520px;
  /* Match with left */
  padding: 10px;
  box-sizing: border-box;
}

.right-cards .card {
  height: 160px;
  /* Compact card */
  border: 1px solid #ccc;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* .right-cards .card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
}

.right-cards .card h4 {
  font-size: 14px;
  margin: 8px 0 4px;
}

.right-cards .card button {
  font-size: 12px;
  padding: 4px 8px;
} */



/* Swiper Slide Styling */
.mySwiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
  width: 100%;
  height: 551px;
  object-fit: cover;
  border-radius: 32px;
}


.swiper-slide h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #ffffff;
}

.swiper-slide p {
  font-size: 14px;
  color: #ffffff;
}

.explore-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: skyblue;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.explore-btn:hover {
  background-color: #000000;
}

/* Card Styling */
.tour-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.tour-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 19px;
}

.tour-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #020202;
}

.tour-card a {
  font-size: 14px;
  color: rgb(13, 20, 87);
  text-decoration: underline;
}

.tour-card a:hover {
  color: rgb(0, 0, 0);
}

/* Responsive */
@media screen and (max-width: 991px) {
  .tour-highlight-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .left-slider,
  .right-cards {
    max-width: 100%;
    width: 100%;
  }

  .right-cards {
    grid-template-columns: 1fr;
  }
}


/* 4th section yoga and medical tours */

.medical-yoga-wrapper {
  padding: 20px 20px;
  background-color: #f4f9f6;
}

.medical-yoga-container {
  max-width: 1280px;
  margin: 0 auto;
}

.medical-yoga-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 35px;
}

.medical-yoga-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding: 0 0 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.medical-yoga-card img {
  width: 100%;
  max-height: 225px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
}


.medical-yoga-card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.medical-yoga-card button {
  background-color: #0a0f5c;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.medical-yoga-card button:hover {
  background-color: #218838;
}

.swiper.medicalYogaSwiper {
  padding: 10px;
  margin-top: -29px;
}

.swiper.medicalYogaSwiper .swiper-slide {
  width: 280px;
}

@media (max-width:768px) {
  .medical-yoga-wrapper {
    margin-top: -26px;
  }
}

@media (max-width: 1024px) {
  .swiper.medicalYogaSwiper .swiper-slide {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .swiper.medicalYogaSwiper .swiper-slide {
    width: 85%;
  }

  .medical-yoga-card img {
    height: 202px;
  }
}

@media(max-width: 430px) {
  .medical-yoga-card img {
    height: 227px;
  }
}

.btn-view {
  display: inline-block;
  padding: 10px 20px;
  background-color: skyblue;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-view:hover {
  background-color: #000000;
}


/* car rental  */
.car-rental-section {
  padding: 1px 15px;
  background: #f9f9f9;
}

.row-fields {
  display: flex;
  gap: 15px;
}

.row-fields .field-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

.car-rental-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: -28px;
}

.form-tab-wrapper {
  flex: 1 1 400px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  background: #f0f0f0;
  background-color: #000;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.tab-btn:hover {
  background-color: #0c243f;
}

.tab-btn.active {
  background: rgb(255, 124, 91);
  color: white;
  border-color: rgb(255, 124, 91);
}

.form-wrapper form {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.form-wrapper form.active {
  display: flex;
}

input,
select,
textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

button[type="submit"] {
  padding: 10px;
  background: skyblue;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  /* width: 159px;
  margin-left: 434px; */
}

button[type="submit"]:hover {
  background-color: rgb(0, 0, 0);
}

.extra-city {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.extra-city input {
  flex: 1;
  padding: 8px;
}

.extra-city .remove-btn {
  background: red;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.extra-city .remove-btn:hover {
  background: darkred;
}



/* tableformcss */


@media (max-width: 768px) {
  .grid-wrapper {}
}

/* reviews */
.review-video-section {
  background: #f9f9f9;
  padding: 4px 20px;
  text-align: center;
}

.homepage-reviews-title {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}

.review-video-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 171px;
}

/* Left YouTube Video Container */
.video-slider-container {
  flex: 1 1 350px;
  max-width: 400px;
}

.video-slider iframe {
  width: 100%;
  height: 230px;
  border-radius: 12px;
}

/* Right Review Card Container */
.review-slider-container {
  flex: 2 1 600px;
  max-width: 700px;
}

/* Review Cards */
.homepage-review-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.homepage-review-card:hover {
  transform: translateY(-5px);
}

.homepage-review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.homepage-stars {
  color: #FFD700;
  font-size: 18px;
  margin: 5px 0;
}

.homepage-review-card h3 {
  font-size: 18px;
  margin: 5px 0;
  color: #222;
}

.homepage-review-card p {
  font-size: 14px;
  color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .review-video-wrapper {
    flex-direction: column;
    align-items: center;
    margin-bottom: -22px;
    margin-top: -27px;
  }

  .video-slider-container,
  .review-slider-container {
    max-width: 100%;
    margin-bottom: -107px;
  }

  .video-slider iframe {
    height: 200px;
  }
}

@media(max-width: 768px) {
  .review-video-section {
    padding: 0px;
  }
}



/* footer */
.site-footer {
  background: linear-gradient(-45deg, #111, #1a1a1a, #0f0f0f, #1a1a1a);
  background-size: 400% 400%;
  animation: animateBackground 12s ease infinite;
  color: #ccc;
  padding: 40px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: -152px;
  /* margin-top: 34px; */
}

.phone-link {
  color: #fff !important;
  text-decoration: none !important;
  -webkit-text-size-adjust: none;
  font-size: 14px;
  /* optional: match your design */
}

.phone-link:visited {
  color: #fff !important;
  text-decoration: none !important;
}


@keyframes animateBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  column-gap: 5px;
  row-gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.footer-col {
  flex: 1 1 22%;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-logo {
  width: 235px;
  margin-bottom: 10px;
}

.footer-about {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: -5px;
  /* text-align: justify; */
  /* 👈 Word spacing ko equal karega */
  /* text-justify: inter-word; */
}

.footer-social a img {
  width: 24px;
  margin-right: 10px;
  transition: transform 0.3s;
}

/* .footer-social a img:hover {
  transform: scale(1.2);
} */

.footer-social a:hover {
  color: rgb(255, 124, 91);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: rgb(255, 124, 91);
}

.contact-info {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.contact-info img {
  width: 18px;
  margin-right: 10px;
}

.payment-heading {
  margin-top: 15px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #fff;
}

.payment-icons img {
  width: 40px;
  margin-right: 8px;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #222;
}

.footer-bottom a {
  color: rgb(255, 124, 91);
}

.footer-social a {
  color: rgb(255, 255, 255);
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: rgb(255, 124, 91);
  transform: scale(1.2);
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-info i {
  color: rgb(255, 124, 91);
  margin-right: 10px;
  min-width: 18px;
  text-align: center;
}

.payment-icons img {
  width: 40px;
  margin-right: 8px;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}



@media (max-width: 600px) {
  .footer-social a img {
    margin-right: 6px;
  }

  .payment-icons img {
    width: 32px;
    margin-right: 6px;
  }
}

/* @media (max-width: 768px){
  .site-footer{
    
    padding: 161px 20px;
  }
} */

@media (max-width: 768px) {
  .tripadvisor-card {
    margin-bottom: 162px;
  }
}


/* 2ndpage cateogry page css */
/* 1st section */
/* Banner Section Styling */
.category-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 300px;
  background: url('/my images_NEW/categorybanner1.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.category-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 1;
}

.category-content {
  position: relative;
  z-index: 2;
}

.category-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: skyblue;
  text-shadow: 1px 1px 4px rgba(65, 60, 60, 0.6);
}

@media (max-width: 768px) {
  .category-content h1 {
    font-size: 2rem;
    padding: 0 20px;
  }
}

/* 2nd paragraph section */
.corporate-paragraph {
  padding: 20px 0;
  background-color: #f8f8f8;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.corporate-paragraph .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 60px;
  /* Left and Right spacing */
}

.corporate-paragraph .text-wrapper {
  text-align: left;
}

.corporate-paragraph p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .corporate-paragraph .container {
    padding: 0 20px;
  }

  .corporate-paragraph p {
    font-size: 15px;
  }
}


/* 3rd section */
/* 3rd Section: Tour Card Styles */
.custom-tour-card-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-tour-container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.custom-tour-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.custom-tour-card:hover {
  transform: translateY(-5px);
}

.custom-tour-img {
  width: 115%;
  height: 200px;
  object-fit: cover;
}

.custom-tour-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-stars {
  font-size: 16px;
  color: #ffbf00;
  margin-bottom: 10px;
}

.custom-tour-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #333;
}

.custom-tour-subinfo {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
}

.custom-tour-subinfo i {
  margin-right: 5px;
  color: #e91e63;
}

.custom-tour-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.custom-tour-buttons .custom-btn {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-view-btn {
  background: skyblue;
  color: #fff;
}

.custom-view-btn:hover {
  background-color: #000000;
}

.custom-enquiry-btn {
  background: skyblue;
  color: #fff;
}

.custom-enquiry-btn:hover {
  background-color: #000000;
}

.custom-btn:hover {
  opacity: 0.9;
}

/* ✅ Tablet View */
@media (max-width: 1024px) {
  .custom-tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ Mobile View */
@media (max-width: 767px) {
  .custom-tour-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-left: -10px;
  }

  .custom-tour-card {
    width: 100%;
    max-width: 360px;
  }

  .custom-tour-buttons {
    flex-direction: row;
  }

  .custom-tour-buttons .custom-btn {
    font-size: 13px;
  }
}



/* read more button */
/* Isolated styles for read more section */
.read-more-wrapper {
  padding: 16px 20px;
  background-color: #f9f9f9;
}

.read-more-container {
  max-width: 1093px;
  margin: 0 auto;
  text-align: left;
}

.read-short {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
}

.read-more-content {
  display: none;
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

.read-more-toggle {
  margin-top: 15px;
  background-color: skyblue;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.read-more-toggle:hover {
  background-color: #000000;
}

@media (max-width: 768px) {
  .read-more-container {
    padding: 0;
  }

  .read-short,
  .read-more-content {
    font-size: 1rem;
  }

  .read-more-toggle {
    width: 100%;
  }
}


/* faq */
.faq-section {
  padding: 40px 20px;
  max-width: 1280px;
  margin: auto;
  margin-bottom: 141px;
}

.faq-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.faq-box {
  width: calc(50% - 10px);
  background: #eaeaea;
  border-radius: 10px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 15px;
  color: #444;
}

.faq-box.active .faq-answer {
  display: block;
}

.faq-box.active .faq-question span {
  transform: rotate(45deg);
  /* Plus to X */
}

/* Responsive */
@media (max-width: 768px) {
  .faq-box {
    width: 100%;
  }
}


/* /3rdpage itenary page */


/* theme travel srilanka */

.theme-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background-color: skyblue;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



/* /3rdpage itenary page */
.itinerary-banner {
  width: 100%;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile-specific tweak if needed */
@media (max-width: 768px) {
  .banner-img {
    height: auto;
  }
}

/* tour overview */
/* CONTAINER LAYOUT */
.tour-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  background: #fff;
}

/* Left Side - Tour Overview */
.tour-overview {
  max-width: 800px;
  /* Limit the width for better readability */
  margin-bottom: 40px;
}

.tour-overview h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.tour-overview p {
  font-size: 16px;
  line-height: 1.8;
  /* Better vertical rhythm */
  text-align: justify;
  /* Aligns text equally on both sides */
  margin-bottom: 20px;
  color: #333;
  /* margin-right: 30px;             */
}

/* Right Side - Booking Form */
.booking-form {
  flex: 1;
  min-width: 320px;
  background: #fafafa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 168px;
}

.booking-form h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
}

/* headings inside form */
.info-heading {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 6px;
  color: #000000;
}

.booking-form label {
  font-weight: 600;
  display: block;
  margin-top: 12px;
  color: #444;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.booking-form textarea {
  height: 80px;
  resize: none;
}

/* Two column layout for phone & code and HH/MM */
.form-row {
  display: flex;
  gap: 10px;
}

.form-row input,
.form-row select {
  flex: 1;
}

.note-text {
  font-size: 11px;
  color: rgb(0, 0, 0);
  margin-top: 8px;
}

.booking-btn {
  width: 100%;
  padding: 12px;
  background: #36297c;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s ease;
}

.booking-btn:hover {
  background: #8a6a3c;
}

/* Responsive */
@media(max-width: 768px) {
  .tour-section {
    flex-direction: column;
  }
}

/* itenarey */
.tour-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  background: #fff;
}

.tour-overview {
  flex: 1;
  min-width: 300px;
}

.tour-overview h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.tour-overview p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* --- ITINERARY SECTION --- */
.itin-heading {
  font-size: 24px;
  margin: 25px 0 15px;
  color: #222;
  font-weight: bold;
}

.itinerary h4 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 4px;
}

.itinerary p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* --- BUTTON ROW --- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.book-btn {
  background: #2b2183;
  color: #fff;
}

.book-btn:hover {
  background: #8a6a3c;
}

.whatsapp-btn {
  background: #111279;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1ebe5c;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .tour-section {
    flex-direction: column;
  }

  .btn-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .tour-section {
    flex-direction: inherit;
    /* ✅ Mobile pe text center align */
    align-items: flex-end;
    margin-left: -25px;
    /* ✅ Whole section center hoga */
  }

  .tour-overview,
  .booking-form {
    width: 100%;
    max-width: 500px;
    /* ✅ Mobile pe ek decent width */
  }

  .btn-row {
    flex-direction: column;
    /* ✅ Buttons neeche neeche aa jayenge */
  }
}


/* included not included */
.inclusion-exclusion-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  margin-bottom: 102px;
}

.include-exclude-wrapper {
  /* display: flex; */
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.included,
.excluded {
  flex: 1;
}

.included h2,
.excluded h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.included ul li,
.excluded ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .include-exclude-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .included h2,
  .excluded h2 {
    text-align: center;
  }
}


/* tripadvisor poster */
.booking-right-column {
  display: flex;
  flex-direction: column;
  /* align-items: flex-end;  */
  gap: 30px;
  margin-bottom: 443px;
}

/* TripAdvisor card styles */
.trip-card {
  width: 100%;
  max-width: 421px;
  border: 1px solid #ccc;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  font-family: Arial, sans-serif;
  margin-top: -160px;
  margin-left: 45px;
}

.trip-logo {
  width: 120px;
}

.trip-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #003580;
}

.rating-title {
  font-weight: bold;
  color: #888;
  margin-top: 10px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0 15px;
}

.stars {
  color: #4caf50;
  font-size: 18px;
}

.review-count {
  color: #333;
  font-size: 14px;
}

.ranking {
  font-weight: bold;
  margin-bottom: 10px;
  color: #444;
}

.recent-reviews ul {
  padding-left: 18px;
  margin: 10px 0;
}

.recent-reviews ul li {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
}

.review-links {
  margin-top: 10px;
}

.review-link {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.review-link:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .booking-right-column {
    align-items: center;
    margin-bottom: 20px;
  }

  .trip-card {
    width: 100%;
    max-width: 90%;
    margin-left: 10px;
    margin-bottom: 109px;
  }
}







/* car */
/* .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
    padding: 20px;
}

.grid-img {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.grid-img:hover {
    transform: translateY(-5px);
}

.grid-img img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
}

.car-name {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.car-name a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.car-name a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px){
  .grid-wrapper{
    display: grid;
  }
} */


.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Always 2 columns */
  gap: 15px;
}

.grid-img p {
  background-color: #003580;
  color: white;
  text-align: center;
}

.grid-img p a {
  /* background-color: #003580; */
  color: white;
  /* text-align: center; */
}

.grid-img img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* For smaller devices — adjust height only */
@media (max-width: 768px) {
  .grid-img img {
    height: 114px;
  }
}

/* Responsive fix for wrapper if needed */
@media (max-width: 768px) {
  .car-rental-wrapper {
    flex-direction: column;
    margin-bottom: 9px;
  }
}


/* car rental css */
/* Hero Section */
.car-rental-hero {
  background: url('/my images_NEW/carrental.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

/* Dark Overlay */
.car-rental-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* 45% dark */
  z-index: 1;
}

.car-rental-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 20px;
  border-radius: 10px;
}

.car-rental-hero .hero-overlay {
  position: relative;
  z-index: 2;
  /* text above overlay */
}

.btn-primary {
  background: #0a0549;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #000000;
}

/* Car Categories */
.car-categories {
  padding: 50px 20px;
  text-align: center;
}

.car-categories h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.car-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.car-info {
  padding: 15px;
}

.price {
  display: block;
  font-weight: bold;
  margin-top: 5px;
  color: #ff9800;
}

.btn-secondary {
  background: #150a75;
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  border-radius: 5px;
}

.btn-secondary:hover {
  background: #000000;
}

/* Booking Form */
.booking-section {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #f8f8f8;
  padding: 0px 20px;
}

.booking-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.booking-form {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

textarea {
  resize: none;
  min-height: 80px;
}

.time-select,
.travellers-select {
  display: flex;
  gap: 5px;
}

.full-width {
  grid-column: 1 / -1;
}

.form-divider {
  /* background: #0066cc; */
  color: rgb(0, 0, 0);
  text-align: center;
  font-weight: bold;
  padding: 8px;
  border-radius: 4px;
  font-size: 25px;
}

.btn-primary {
  background: #092c50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  /* width: 147px;
  margin-left: 481px; */
}

.btn-primary:hover {
  background: #000000;
}

@media (max-width: 600px) {

  .time-select,
  .travellers-select {
    flex-direction: column;
  }
}

/* Why Choose Us */
.why-choose {
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 143px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.why-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.why-card i {
  font-size: 2rem;
  color: #2a0d5f;
  margin-bottom: 10px;
}

/* trabnsport section */
/* Transport Services Section */
/* Transport Services Section */
/* .transport-services {
  padding: 50px 20px;
  width: 1254px;
  margin: auto;
  text-align: center;
}

.transport-services h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.transport-services p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
} */