
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.top-bar {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  padding: 8px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-bar span {
  margin: 3px 10px;
  display: inline-block;
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .top-bar {
      font-size: 13px;
      flex-direction: column;
      padding: 10px;
  }

  .top-bar span {
      margin: 5px 0;
  }
}

.navbar {
    background-color: #343a40 !important;  /* Dark grey background */
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar a.nav-link {
    color: white !important;
}
.navbar a.nav-link:hover {
    color: #ffc107 !important;  /* Highlight on hover */
}

.hero-section{
    display: flex;
    align-items: center;
    background-color: #007bff; /* Bootstrap Primary Blue */
    color: #fff;
    /* padding: 1rem; */
}


/* Hero Section */
/*.hero-section {
    background-color: #007bff; 
    color: #fff;
    padding: 60px 0;
}*/

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

.hero-section p {
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Tour Packages and Hotel Options Sections */
#packages, #hotels {
    margin: 20px 0;
}

h2.text-center {
    margin-bottom: 20px;
    font-weight: bold;
}

.table {
    margin-bottom: 15px;
    border-radius: 5px;
}

.table th {
    text-align: center;
    font-size: 20px;
    background-color: #e9ecef;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th, .table-bordered td {
    border: 1px solid #dee2e6;
}

.table-light th {
    background-color: #f8f9fa;
}

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

/* Hotel Options Specific */
#hotels .table-light {
    background-color: #721717;
}

#hotels .table-light th {
    background-color: #3d6c9b;
    font-size: 18px;
    font-weight: bold;
}

/* Hotel Heading Colors */
.hotel-luxury {
    color: #d86d61;
}

.hotel-standard {
    color: #2980b9;
}

.hotel-general {
    color: #62b384;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 50px 20px;
    background: #f1f1f1;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info {
    background: #fff;
    display: inline-block;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.8rem;
    margin-right: 10px;
    color: #007bff;
}

.contact-text {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
}
/* Footer Section */
.footer-section {
    background-color: #333; /* Light Black */
    color: #fff;
    padding: 20px 0;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f1f1f1;
}

.footer-section p, .footer-section a {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

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

.footer-section li {
    margin: 5px 0;
}

.footer-section .text-center {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #bbb;
}
/* Thankyou Section */
.thank-you-section {
    background-color: #f8f9fa;
}

.image-placeholder {
    background-color: #e0e0e0;
    height: 100px;
    margin: 10px 0;
}

footer {
    background-color: #333;
}

footer p, footer a {
    color: #fff;
}
footer a:hover {
    text-decoration: underline;
}

html {
    scroll-behavior: smooth;
}
/*driver*/
/*typing */
.typing-effect::after {
    content: "|";
    animation: blink 1s infinite;
    font-weight: 300;
    font-size: 1px;
    margin-left: 4px;
    color: white;
}
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}


/* Fade-in animation */
@keyframes fadeInOnLoad {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Apply the fade-in */
  .fade-on-load {
    animation: fadeInOnLoad 0.5s ease-in-out;
  }
  
  
  .hero-section {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

@media (min-width: 992px) {
    .hero-section {
        flex-direction: row;
    }

    .vertical-separator {
        display: block;
        width: 2px;
        background-color: white;
    }
}

@media (max-width: 991px) {
    .vertical-separator {
        display: none;
    }
}

.content {
    background-color: #0249a3;
    padding: 40px 20px;
    text-align: center;
    height: 50vh;
}

@media (min-width: 992px) {
    .content {
        height: 100vh;
    }
}

.carousel-section {
    height: 50vh;
    overflow: hidden;
}

@media (min-width: 992px) {
    .carousel-section {
        height: 100vh;
    }
}

.carousel-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

html {
    scroll-behavior: smooth;
}

.scroll-horizontal {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .scroll-horizontal .card {
    min-width: 250px;
    flex: 0 0 auto;
  }

  @media (min-width: 992px) {
    .left-section,
    .right-section {
      max-width: 250px;
    }

    .center-form {
      flex: 1;
      margin: 0 1rem;
    }

    .booking-layout {
      display: flex;
      justify-content: space-between;
    }
  }

  .scroll-marquee {
    overflow: hidden;
    position: relative;
    height: 35px;
    background: #f8f9fa;
    border-left: 4px solid #0d6efd;
  }
  
  .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    font-size: 0.9rem;
    color: #333;
    padding-left: 100%;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  

  .scroll-marquee {
    overflow: hidden;
    position: relative;
    height: 35px;
    background: #f8f9fa;
    border-left: 4px solid #198754;
  }
  
  .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    font-size: 0.9rem;
    color: #333;
    padding-left: 100%;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  @media (max-width: 768px) {
    .mobile-hide {
      display: none !important;
    }
  }


/* temple */

.temple-scroll-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .temple-scroll {
    width: 100%;
  }
  
  .temple-track {
    display: flex;
    gap: 1rem;
    animation: scrollTemples 18s linear infinite;
    width: max-content;
    will-change: transform;
  }
  
  .temple-track:hover {
    animation-play-state: paused;
  }
  
  .temple-card {
    flex: 0 0 auto;
    width: 250px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    padding: 1rem;
  }
  
  .temple-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .temple-card h5 {
    font-weight: 600;
    margin-top: 10px;
  }
  
  .temple-card p {
    font-size: 0.9rem;
    color: #555;
  }
  
  @keyframes scrollTemples {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }

.hotel-scroll-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .hotel-scroll {
    width: 100%;
  }
  
  .hotel-track {
    display: flex;
    gap: 1rem;
    animation: scrollHotels 10s linear infinite;
    width: max-content;
    will-change: transform;
  }
  
  .hotel-track:hover {
    animation-play-state: paused;
  }
  
  .hotel-card {
    flex: 0 0 auto;
    width: 250px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    padding: 1rem;
  }
  
  .hotel-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .hotel-card h5 {
    font-weight: 600;
    margin-top: 10px;
  }
  
  .hotel-card p {
    font-size: 0.9rem;
    color: #555;
  }
  
  @keyframes scrollHotels {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
/*service section*/
  .service-box {
    transition: all 0.3s ease-in-out;
    background: #fff;
    border: 1px solid #eee;
  }
  
  .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
  }
  
  .service-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  @media (max-width: 576px) {
    .service-box {
      padding: 1.2rem;
    }
  }
  /*service section*/


.footer-section {
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-link {
  color: #ddd;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-section h5 {
  font-weight: 600;
  color: #fff;
}

.footer-section p, .footer-section a {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-section i {
  color: #f8c146;
}

@media (max-width: 767px) {
  .footer-section {
    text-align: center;
  }

  .footer-section .row > div {
    margin-bottom: 2rem;
  }
}


  /*contact section*/
  .contact-section {
    background-color: #f0f0f0; /* Light grey background */
  }
  
  .contact-box {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  
  .contact-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .contact-link:hover {
    color: #007bff;
  }
  
  @media (max-width: 768px) {
    .contact-box {
      padding: 1rem 1.2rem;
    }
  
    .contact-link {
      font-size: 1rem;
    }
  }

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
}

.car-rentals-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.car-rentals-section .title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #2c3e50;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.car-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.car-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.car-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.car-info {
  padding: 20px;
}

.car-name {
  color: #e74c3c;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.car-features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}

.car-features li strong {
  color: #2c3e50;
}

.car-note {
  font-size: 13px;
  color: #888;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 12px;
  margin-bottom: 15px;
}

.book-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #e74c3c;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background-color: #c0392b;
}

/* Ensure all images in the packages section have the same size */
.package-img {
  object-fit: cover;      /* Ensures the image covers the area without stretching */
  height: 200px;          /* Fixed height for all images */
  width: 100%;            /* Full width */
  border-bottom: 2px solid #ddd; /* Optional: Adds a subtle border to separate the image from the content */
}

.book-btn {
  background-color: #4B0082; /* Deep indigo */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
.temple-img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}


/* Better spacing for mobile */
@media (max-width: 576px) {
  .card-body {
    padding: 1rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .top-bar {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .navbar-brand span {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  ul {
    padding-left: 1.2rem;
  }
}

.card-img-top {
  width: 100%;
  height: 200px; /* Default height for desktop */
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Adjust height for smaller screens */
@media (max-width: 768px) {
  .card-img-top {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .card-img-top {
    height: 120px;
  }
}
.card-img-top {
  height: 200px; /* or any height you prefer */
  object-fit: cover;
}
