
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #b19b21 !important; /* Mustard yellow background */
  color: #1f2937;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

body > *:not(footer) {
  flex: 1 0 auto; /* Allow content to grow but not shrink */
}

footer {
  flex-shrink: 0; /* Prevent footer from shrinking */
}

/* Header */
.header {
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100; /* Ensure header stays above content */
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 180px;
  height: 100px;
}

.brand {
  font-size: 2rem;
  color: #450202;
  font-weight: bold;
  animation: brandAnimation 1s ease-in-out;
}

@keyframes brandAnimation {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.header-right {
  text-align: right;
  padding-left: 20px;
}

.language-select-container,
.link-container,
.mobile-numbers {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 5px;
}

.language-select {
  padding: 5px;
  font-size: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.link-container a {
  background-color: #DC143C;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 10px;
  color: white;
  transition: color 0.3s ease;
}

.link-container a:hover {
  color: #000;
}

.mobile-numbers {
  font-size: 0.9rem;
  color: #000;
  flex-wrap: wrap;
  flex-direction: column;
}

/* Navigation */
nav {
  background-color: #333;
  padding: 10px 0;
  width: 100%;
  font-family: 'Rubik', sans-serif;
  /* Removed position: sticky; top: 0; */
  position: relative; /* Keeps it in natural flow */
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 5px auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  color: red;
  display: none; /* Removed hamburger */
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  flex-wrap: nowrap;
  overflow-x: hidden; /* No horizontal scrolling */
}

.nav-links li {
  flex: 0 1 auto;
  min-width: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 6px 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.nav-links a:hover {
  background-color: #f20000;
  color: #fff;
}

/* Responsive Design for Navbar */

/* Hero */
.hero {
  background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/1600x900/?hampi,ruins');
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #06fd89;
  animation: fadeIn 1.2s ease-in;
  min-height: 200px; /* Minimum height for small screens */
  margin-top: 0; /* Ensure no gap after navbar */
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgb(255, 0, 8);
}

.hero .image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 800px;
  margin: 1rem auto;
}

.hero .image-grid img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero .image-grid img:hover {
  transform: scale(1.05);
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
}

/* Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #b19b21;
  overflow-y: auto; /* Ensure vertical scrolling */
  min-height: 100%; /* Ensure container takes full height */
}

section {
  margin: 1rem 0;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.8s ease-out;
}

h2 {
  font-family: 'Cinzel', serif;
  color: red;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.package {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.package:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.package h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  font-family: 'Cinzel', serif;
}

.package-details {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #f0f4f8;
  border-radius: 5px;
}

.package-details.show {
  display: block;
}

.contact a {
  color: red;
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  text-decoration: underline;
  color: #1e3a8a;
}

/* Slideshow */
.slideshow-container {
  width: 1024px; /* Base width as per your request */
  height: 400px; /* Base height as per your request */
  position: relative;
  overflow: hidden;
  background-color: #000; /* Fallback background if image fails */
  margin: 0 auto; /* Center the container */
  padding: 0; /* Remove padding to avoid cutting */
}

.slide {
  display: none;
  width: 1024px; /* Match container width */
  height: 400px; /* Match container height */
  position: relative;
}

.slide.active {
  display: block;
}

.slide img {
  width: 1024px; /* Fixed width to match container */
  height: 400px; /* Fixed height to match container */
  object-fit: cover; /* Ensure full image display */
  display: block; /* Remove extra space under image */
}

.slide .slide-number {
  position: absolute;
  top: 10px; /* Right top corner */
  right: 10px; /* Right top corner */
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}

.next {
  right: 10px;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 10px;
  border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Niche Heading and Paragraphs */
.niche-heading {
  text-align: center;
  font-size: 2rem;
  color: black;
  margin: 20px 0;
  font-weight: bold;
}

.niche-heading:hover {
  color: red;
}

.paragraphs {
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: justify;
}

.paragraphs p {
  font-size: 15px;
  font-weight: 400;
  display: flex;
  margin-bottom: 15px;
  color: white;
}

/* Car Section */
.car-section {
  max-width: 2200px;
  margin: 0 auto;
  padding: 15px;
  color: rgb(37, 246, 0);
}

.our-cars {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.car-section .our-cars p {
  color: white;
}

.our-cars li {
  text-align: center;
  width: 300px;
  background-color: #3e4e51;
  padding: 10px;
}

.our-cars img {
  width: 100%;
  height: auto;
}

.our-cars h3 {
  font-size: 1.1rem;
  margin: 10px 0;
  color: green; /* Green color for car names in vehicle.html */
}

.our-cars p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.our-cars a {
  display: inline-block;
  background-color: #DC143C;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 4px;
}

.our-cars a:hover {
  background-color: #0e0e0e;
}

/* Moving Car Animation */
.moving-car {
  position: fixed;
  bottom: 0;
  left: -100px;
  width: 100px;
  height: 50px;
  background: url('https://via.placeholder.com/100x50') no-repeat;
  background-size: contain;
  z-index: 1000;
}

/* Footer Styles */
:root {
  --light-blue: black;
  --primary-blue: #2196F3;
}

.custom-footer {
  background: linear-gradient(to right, #423d3d, #000000);
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: white;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
  min-height: 100px; /* Consistent minimum height */
}

.custom-footer span {
  font-size: 0.9rem;
}

.custom-footer input {
  border: none;
  background: transparent;
  color: #a9a9a9;
  width: 50px;
  text-align: center;
}

.custom-footer button {
  background: #060606;
  border: none;
  color: rgb(0, 0, 0);
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-footer button:hover {
  background-color: #d4af37;
}

.footer-heading {
  color: white;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 0.3rem;
  margin-bottom: 10px;
}

.footer-link {
  color: white;
  text-decoration: none;
  padding: 0.3rem 0;
  display: block;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: red;
  transform: translateX(5px);
}

.social-link {
  color: white;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: red;
  transform: translateY(-3px);
}

.btn-scroll-top {
  border: none;
  background: none;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.btn-scroll-top:hover {
  transform: scale(1.1);
}

.newsletter-form .form-control:focus {
  border-color: white;
  box-shadow: 0 0 0 0.2rem rgba(243, 243, 243, 0.25);
}

.hover-text-success {
  transition: all 0.3s ease;
}

.hover-text-success:hover {
  color: #28a745;
  transform: translateY(-1px);
}

.new_footer_area {
  background: transparent;
}

.new_footer_top {
  padding: 60px 0 100px;
  position: relative;
  overflow-x: hidden;
}

.new_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 50px;
}

.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: white;
  padding: 27px 0;
}

.new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: white;
  margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.btn_get:hover {
  color: #fff;
  background: white;
  border-color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: black;
}

.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0;
}

.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0;
}

.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}

.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.ti-facebook:before {
  content: "\e741";
}

.ti-twitter-alt:before {
  content: "\e74b";
}

.ti-vimeo-alt:before {
  content: "\e74a";
}

.ti-pinterest:before {
  content: "\e731";
}

.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: white;
  border-color: white;
  color: #fff;
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.new_footer_top .f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color: white;
}

.new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}

.new_footer_top .f-title {
  margin-bottom: 30px;
  color: #263b5e;
}

.f_600 {
  font-weight: 600;
}

.f_size_18 {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #4b505e;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: white;
}

.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
  width: 100%;
  height: 150px;
}

.new_footer_top .footer_bg .footer_bg_one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
  width: 200px;
  height: 80px;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 22s linear infinite;
  animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
  width: 60px;
  height: 70px;
  background-size: contain;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}

@-moz-keyframes myfirst {
  0% { left: -25%; }
  100% { left: 100%; }
}

@-webkit-keyframes myfirst {
  0% { left: -25%; }
  100% { left: 100%; }
}

@keyframes myfirst {
  0% { left: -25%; }
  100% { left: 100%; }
}

/* Page-Specific Styles */
.container1 {
  background-color: white;
  padding: 10px;
  border: 1px solid #ccc;
  max-width: 1150px;
  margin: 10px auto;
}

.container2 {
  max-width: 1050px;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
}

.container5 {
  max-width: 1030px;
  margin: 10px auto;
  padding: 20px;
  background-color: white;
}

.container6 {
  max-width: 1090px;
  margin: 0 auto;
  padding: 20px;
}

.container9 {
  max-width: 1000px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* .contact-us {
  max-width: 3200px;
  margin: 20px auto;
  padding: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} */

.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Karnataka Header */
.karnataka-header {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: left;
  color: #d32f2f;
  max-width: 1100px;
  margin: 10px auto 0;
  width: 100%; /* Ensure full width */
  box-sizing: border-box; /* Include padding in width */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.karnataka-header .header-content {
  display: flex;
  align-items: center;
}

.karnataka-header h1 {
  margin: 0;
  font-size: 2em;
  color: red;
  margin-right: 20px;
}

.karnataka-header .karnataka-phone {
  font-size: 1.2em;
  color: #4caf50;
  margin: 0;
  white-space: nowrap; /* Prevent wrapping */
}

/* Content */
.content {
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  background-color: #f0f0f0;
  max-width: 1100px;
  margin: 1px auto;
}

.header1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.header1 h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 30px;
  color: #a52a2a;
  margin: 0;
}

.header5 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.header5 h1 {
  color: #a52a2a;
  margin: 0;
}

.header6 {
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
  border: 1px solid #ffffff;
  padding: 10px;
  border-radius: 1px;
}

.header6 h1 {
  color: #ff0000;
  margin: 0;
}

.header9 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header9 h1 {
  color: #8b4513;
  margin: 0;
  font-size: 1.5em;
}

.whatsapp {
  color: #008000;
  font-size: 1.1em;
}

.image-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.image-gallery1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background-color: #fff;
  border-bottom: 2px solid #d4a017;
}

.image-gallery img,
.image-gallery1 img,
.gallery img,
.initial-gallery .gallery-item img,
.updated-gallery .gallery-item img {
  width: 235px;
  height: auto;
  border: 1px solid #ddd;
}

.initial-gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.initial-gallery .gallery-item {
  border: 1px solid #ddd;
  padding: 5px;
  background-color: #f0f0f0;
}

.updated-gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  background-color: #f0f0f0;
}

.updated-gallery .gallery-item {
  border: 1px solid #ddd;
  padding: 5px;
  background-color: #f0f0f0;
}

.gallery div {
  text-align: center;
  border: 1px solid #d4a017;
  padding: 5px;
}

.gallery p {
  margin: 5px 0 0;
  font-weight: bold;
  color: #000;
}

.tour-details h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #a52a2a;
  margin-bottom: 10px;
}

.tour-details p {
  margin: 5px 0;
}

.description {
  margin-bottom: 20px;
  color: #333;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2px;
}

.package {
  flex: 0 0 calc(50% - 1px);
  background-color: whitesmoke;
  padding: 15px;
  border-radius: 5px;
  box-sizing: border-box;
}

.package-header {
  margin-bottom: 10px;
  border-bottom: 1px solid #020202;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
}

.package h2 {
  color: black;
  font-size: 1em;
  margin: 0 0 5px 0;
}

.package p {
  margin: 0 0 5px 0;
  color: #333;
}

.package ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.package ul li {
  margin-bottom: 5px;
  color: black;
}

.package ul li:before {
  content: "➤";
  margin-right: 10px;
  color: rgb(171, 61, 61);
}

.content p {
  font-size: 1.1em;
}

.location-table {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: #f0f0f0;
  padding: 5px;
}

.location-table .table-item {
  border: 1px solid #ddd;
  padding: 5px;
  text-align: center;
  background-color: #bebbbb;
}

.terms {
  text-align: left;
  margin-top: 20px;
  color: #d32f2f;
  font-size: 1.1em;
  background-color: #f0f0f0;
}

.terms ul {
  list-style-type: none;
  padding-left: 20px;
  text-align: left;
  margin: 10px 0;
}

.terms ul li {
  margin-bottom: 5px;
  color: black;
}

.terms ul li:before {
  content: "➤";
  margin-right: 10px;
  color: rgb(171, 61, 61);
}

.terms-note {
  color: #d32f2f;
  font-size: 1.1em;
  margin-top: 10px;
  background-color: #f0f0f0;
}

.terms-note ul {
  list-style-type: none;
  padding-left: 20px;
  text-align: left;
  margin: 10px 0;
}

.terms-note ul li {
  margin-bottom: 5px;
  color: black;
}

.terms-note ul li:before {
  content: "➤";
  margin-right: 10px;
  color: rgb(171, 61, 61);
}

.header4 {
  color: #ff0000;
  font-size: 24px;
  font-family: 'Rubik', sans-serif;
}

.contact {
  color: #008000;
  font-size: 20px;
  text-align: right;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact::before {
  content: "☎ ";
}

.section {
  margin-bottom: 20px;
}

.section p {
  margin: 0 0 10px 0;
}

.section h3 {
  color: #ff0000;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0 0 10px 0;
}

li {
  margin-bottom: 5px;
}

.gallery-container h2 {
  margin: 20px 0 10px;
  text-align: center;
}

.tour-details h2 {
  color: #ac0000;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  margin: 20px 0 10px;
}

.tour-details p {
  font-family: 'Rubik', sans-serif;
  margin-bottom: 5px;
}



.image-section {
  flex: 1;
  min-width: 400px;
}

.image-section img {
  width: 100%;
  height: 50%;
  border-radius: 0 0 5px 5px;
}

.list-section {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.list-section ul {
  list-style-type: none;
  padding: 0;
}

.list-section ul li {
  padding: 5px 0;
  color: #5c4033;
}

.list-section ul li:before {
  content: "➤ ";
  color: #d2691e;
}

.form-container {
  flex-grow: 1;
  background-color: #e0e0e0;
  padding: 20px;
  margin-left: -20px;
  max-width: 1000px;
  margin: auto;
}

.form-container h2 {
  color: #8b0000;
  font-size: 24px;
  margin: 0 0 5px 0;
  text-align: left;
}

.contact-info {
  color: #8b0000;
  font-size: 24px;
  text-align: right;
}

.contact-info img {
  vertical-align: middle;
  margin-right: 5px;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-group label {
  width: 200px;
  color: #333;
  font-weight: bold;
}

.form-group label.required::after {
  content: " *";
  color: red;
}

.form-group .right {
  flex-grow: 1;
}

.form-group .right input,
.form-group .right select,
.form-group .right textarea {
  margin: 2px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 0;
  width: 280px;
  box-sizing: border-box;
  resize: inherit;
}

.form-group .right textarea {
  height: 140px;
  width: 97%;
  resize: inherit;
}

.book-now {
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  display: block;
  margin-top: 20px;
  margin-left: 0;
  text-align: left;
}

.book-now img {
  width: 100px;
  vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 480px) {
  .header {
    flex-direction: column;
    padding: 10px;
  }

  .header-left,
  .header-right {
    flex-direction: column;
    gap: 5px;
  }

  .header-right {
    padding-left: 0;
  }

  .logo {
    width: 100px;
    height: 50px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .language-select-container,
  .link-container,
  .mobile-numbers {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  nav {
    padding: 5px 0;
  }

  .nav-container {
    padding: 0 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburger {
    display: block;
    margin-bottom: 10px; /* Space before links */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 5px; /* Tighter gap for mobile */
    padding: 10px 0;
    background-color: #333;
    position: absolute;
    top: 50px; /* Below header */
    left: 0;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 8px 10px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #444; /* Separator */
  }

  .nav-links a:last-child {
    border-bottom: none; /* Remove last border */
  }

  .slideshow-container {
    width: 360px;
    height: 200px;
  }

  .slide {
    width: 360px;
    height: 200px;
  }

  .slide img {
    width: 360px;
    height: 200px;
  }

  .slide-number {
    font-size: 0.8rem;
  }

  .niche-heading {
    font-size: 1.2rem;
  }

  .paragraphs p {
    font-size: 0.9rem;
  }

  .our-cars li {
    max-width: 250px;
  }

  .container,
  .container1,
  .container2,
  .container5,
  .container6,
  .container9,
  .contact-us,
  .gallery-container,
  .karnataka-header,
  .content {
    padding: 10px;
    max-width: 100%;
  }

  .location-table {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 30vh;
    min-height: 200px;
  }

  .hero .image-grid img {
    width: 120px;
    height: 120px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .package h3 {
    font-size: 1rem;
  }

  .contact-header h2 {
    font-size: 1.5rem;
  }

  .contact-header .phone-number {
    font-size: 1.2rem;
    position: static;
    margin-top: 10px;
  }

  .contact-details p {
    font-size: 0.9rem;
  }

  .contact-icons .icon img {
    width: 150px;
    height: 100px;
  }

  .custom-footer {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
    text-align: center;
    min-height: 80px;
  }

  .custom-footer span {
    font-size: 0.8rem;
  }

  .footer-heading {
    font-size: 1rem;
  }

  .new_footer_top {
    padding: 40px 0 80px;
  }

  .new_footer_top .footer_bg {
    height: 100px;
  }

  .new_footer_top .footer_bg .footer_bg_one,
  .new_footer_top .footer_bg .footer_bg_two {
    display: none;
  }

  .form-container h2,
  .contact-info {
    font-size: 1rem;
  }

  .form-group label {
    width: 100px;
  }

  .container h1 {
    font-size: 1.5rem;
  }

  .mission {
    padding: 10px;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-icons .icon img {
    margin-left: 0;
    width: 200px;
    height: 150px;
  }

  .form-container {
    margin-left: 0;
    padding: 10px;
  }

  .form-group .right input,
  .form-group .right select,
  .form-group .right textarea {
    width: 100%;
  }

  .book-now {
    margin-left: 0;
    width: auto;
  }

  .karnataka-header {
    padding: 10px;
  }

  .karnataka-header .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .karnataka-header h1 {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .karnataka-header .karnataka-phone {
    font-size: 1em;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 10px;
  }

  .header-left,
  .header-right {
    flex-direction: column;
    gap: 5px;
  }

  .header-right {
    padding-left: 0;
  }

  .logo {
    width: 120px;
    height: 60px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .language-select-container,
  .link-container,
  .mobile-numbers {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  nav {
    padding: 8px 0;
  }

  .nav-container {
    padding: 0 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburger {
    display: block;
    margin-bottom: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    padding: 10px 0;
    background-color: #333;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 8px 10px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #444;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .slideshow-container {
    width: 600px;
    height: 300px;
  }

  .slide {
    width: 600px;
    height: 300px;
  }

  .slide img {
    width: 600px;
    height: 300px;
  }

  .slide-number {
    font-size: 1rem;
  }

  .niche-heading {
    font-size: 1.5rem;
  }

  .our-cars li {
    width: 100%;
    max-width: 300px;
  }

  .paragraphs {
    max-width: 90%;
    padding: 0 10px;
  }

  .image-gallery,
  .image-gallery1,
  .gallery,
  .initial-gallery,
  .updated-gallery {
    flex-direction: column;
    align-items: center;
  }

  .image-gallery img,
  .image-gallery1 img,
  .gallery img {
    width: 100%;
    max-width: 235px;
  }

  .location-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    height: 40vh;
    min-height: 250px;
  }

  .hero .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .image-grid img {
    width: 150px;
    height: 150px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-icons .icon img {
    width: 200px;
    height: 150px;
    margin-left: 0;
  }

  .custom-footer {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    text-align: center;
    min-height: 90px;
  }

  .custom-footer span {
    font-size: 0.85rem;
  }

  .footer-heading {
    font-size: 1.05rem;
  }

  .new_footer_top {
    padding: 50px 0 90px;
  }

  .new_footer_top .footer_bg {
    height: 120px;
  }

  .new_footer_top .footer_bg .footer_bg_one,
  .new_footer_top .footer_bg .footer_bg_two {
    display: none;
  }

  .form-container {
    margin-left: 0;
    padding: 10px;
  }

  .form-group .right input,
  .form-group .right select,
  .form-group .right textarea {
    width: 100%;
  }

  .book-now {
    margin-left: 0;
    width: auto;
  }

  .karnataka-header {
    padding: 15px;
  }

  .karnataka-header .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .karnataka-header h1 {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .karnataka-header .karnataka-phone {
    font-size: 1.1em;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .header {
    flex-direction: row;
    padding: 15px 20px;
  }

  .logo {
    width: 150px;
    height: 75px;
  }

  .brand {
    font-size: 1.8rem;
  }

  nav {
    padding: 10px 0;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  .slideshow-container {
    width: 800px;
    height: 400px;
  }

  .slide {
    width: 800px;
    height: 400px;
  }

  .slide img {
    width: 800px;
    height: 400px;
  }

  .slide-number {
    font-size: 1.1rem;
  }

  .niche-heading {
    font-size: 1.8rem;
  }

  .our-cars li {
    width: 100%;
    max-width: 300px;
  }

  .paragraphs {
    max-width: 90%;
    padding: 0 10px;
  }

  .image-gallery,
  .image-gallery1,
  .gallery,
  .initial-gallery,
  .updated-gallery {
    flex-direction: column;
    align-items: center;
  }

  .image-gallery img,
  .image-gallery1 img,
  .gallery img {
    width: 100%;
    max-width: 235px;
  }

  .location-table {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    height: 45vh;
    min-height: 300px;
  }

  .hero .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero .image-grid img {
    width: 180px;
    height: 180px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .package-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .custom-footer {
    padding: 20px 40px;
    flex-wrap: wrap;
    gap: 20px;
    min-height: 100px;
  }

  .custom-footer span {
    font-size: 0.9rem;
  }

  .footer-heading {
    font-size: 1.1rem;
  }

  .new_footer_top {
    padding: 60px 0 100px;
  }

  .new_footer_top .footer_bg {
    height: 130px;
  }

  .form-container {
    margin-left: 0;
    padding: 15px;
  }

  .form-group .right input,
  .form-group .right select,
  .form-group .right textarea {
    width: 100%;
  }

  .book-now {
    margin-left: 0;
    width: auto;
  }

  .karnataka-header {
    padding: 20px;
    max-width: 100%;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .header {
    padding: 15px 20px;
  }

  .logo {
    width: 160px;
    height: 90px;
  }

  .brand {
    font-size: 1.9rem;
  }

  .nav-container {
    padding: 0 25px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .slideshow-container {
    width: 1024px;
    height: 400px;
  }

  .slide {
    width: 1024px;
    height: 400px;
  }

  .slide img {
    width: 1024px;
    height: 400px;
  }

  .slide-number {
    font-size: 1.2rem;
  }

  .niche-heading {
    font-size: 2.2rem;
  }

  .hero {
    height: 50vh;
  }

  .hero .image-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .package-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .custom-footer {
    padding: 20px 50px;
    min-height: 110px;
  }

  .new_footer_top {
    padding: 70px 0 110px;
  }

  .karnataka-header {
    max-width: 1100px;
  }
}

@media (min-width: 1201px) and (max-width: 1439px) {
  .header {
    padding: 15px 25px;
  }

  .logo {
    width: 170px;
    height: 95px;
  }

  .brand {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0 30px;
  }

  .nav-links {
    gap: 25px;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .slideshow-container {
    width: 1200px;
    height: 450px;
  }

  .slide {
    width: 1200px;
    height: 450px;
  }

  .slide img {
    width: 1200px;
    height: 450px;
  }

  .slide-number {
    font-size: 1.3rem;
  }

  .niche-heading {
    font-size: 2.3rem;
  }

  .hero {
    height: 55vh;
  }

  .hero .image-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .package-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .custom-footer {
    padding: 20px 60px;
    min-height: 120px;
  }

  .new_footer_top {
    padding: 80px 0 120px;
  }

  .karnataka-header {
    max-width: 1100px;
  }
}

@media (min-width: 1440px) {
  /* 4K and above */
  .header {
    padding: 15px 30px;
  }

  .logo {
    width: 200px;
    height: 110px;
  }

  .brand {
    font-size: 2.5rem;
  }

  .nav-container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .nav-links {
    gap: 30px;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 10px 12px;
  }

  .slideshow-container {
    width: 1800px;
    height: 900px;
  }

  .slide {
    width: 1800px;
    height: 900px;
  }

  .slide img {
    width: 1800px;
    height: 900px;
  }

  .slide-number {
    font-size: 1.5rem;
  }

  .niche-heading {
    font-size: 3rem;
  }

  .car-section {
    max-width: 1800px;
  }

  .our-cars li {
    width: 400px;
  }

  .paragraphs {
    max-width: 1200px;
  }

  .container,
  .container1,
  .container2,
  .container5,
  .container6,
  .container9,
  .contact-us,
  .gallery-container,
  .karnataka-header,
  .content {
    max-width: 1800px;
  }

  .hero {
    height: 70vh;
  }

  .hero .image-grid {
    max-width: 1200px;
  }

  .hero .image-grid img {
    width: 300px;
    height: 300px;
  }

  .hero h1 {
    font-size: 6rem;
  }

  .hero p {
    font-size: 1.8rem;
  }

  .package-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .custom-footer {
    padding: 30px 70px;
    max-width: 1800px;
    margin: 0 auto;
    min-height: 150px;
  }

  .new_footer_top {
    padding: 100px 0 150px;
  }

  .new_footer_top .footer_bg {
    height: 200px;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* Responsive design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .link-container {
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .image-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 8px;
    }

    .image-gallery img {
        height: 150px;
    }

    .header1 h1 {
        font-size: 1.7rem;
    }

    .whatsapp {
        font-size: 0.95rem;
    }

    .tour-details h2 {
        font-size: 1.4rem;
    }

    .tour-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .image-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }

    .image-gallery img {
        height: 100px;
    }

    .header1 h1 {
        font-size: 1.4rem;
    }

    .whatsapp {
        font-size: 0.9rem;
    }

    .tour-details h2 {
        font-size: 1.2rem;
    }

    .tour-details p {
        font-size: 0.95rem;
    }

    .brand {
        font-size: 1.5rem;
    }

    .link-container a {
        font-size: 1rem;
    }

    .nav-links li a {
        font-size: 1rem;
    }
}
/* Image gallery styles adhra pradesh */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    scroll-snap-align: start;
    border-radius: 5px;
}
.contact-us {
  width: 900px !important; /* Forced width to ensure it increases */
  margin: 20px auto;
  padding: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-header h2 {
  font-size: 34px;
  color: red;
  margin: 0;
  font-weight: bold;
}

.contact-header p {
  font-size: 18px;
  color: red;
  margin: 15px 0 0;
}

.contact-header .phone-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #00cc00;
  font-weight: bold;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
}

.contact-details {
  flex: 0 0 100%;
  padding-right: 20px;
}

.contact-details p {
  margin: 5px 0;
  font-family: 'Old Standard TT', sans-serif;
  font-size: 16px;
  color: #000;
}

.contact-details p.address {
  margin-bottom: 10px;
}

.contact-details p span.label {
  font-weight: bold;
  margin-right: 10px;
}

.contact-details p span.value {
  font-weight: normal;
}

.contact-icons {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-left: 10px;
}

.contact-icons .icon img {
  width: 350px;
  height: 300px;
  object-fit: contain;
  margin-left: -500px;
  margin-top: -50px;
}

.contact-icons .icon:hover {
  transform: scale(1.1);
}