/* ===================================
   🌐 Global Styles (Common)
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* ===================================
   🔥 Header Section (Common)
=================================== */
.header {
  background: linear-gradient(to right, #004080, #262728);
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo a {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu li a {
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.3s;
  font-weight: 600;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background-color: rgba(255,255,255,0.2);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  background-color: #004080;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  padding: 10px 15px;
  color: white;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: rgba(255,255,255,0.2);
}


/* ===================================
   🚩 Hero Section (Home Page)
=================================== */
.hero {
  background: linear-gradient(to right, #f4a404, #000000);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}


/* ===================================
   ✈️ Tour & Cab Sections (Home Page)
=================================== */
/* ==== Common Section Styling ==== */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: #004080;
}

/* ==== Card Grid 2 per row ==== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* ==== Card Styling ==== */
.card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: fadeInOut 15s ease-in-out infinite;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  padding: 15px 20px 5px;
  font-size: 20px;
  color: #004080;
}

.card p {
  padding: 0 20px 15px;
  color: #555;
  font-size: 15px;
}

/* ==== Fade Animation ==== */
@keyframes fadeInOut {
  0%, 100% { opacity: 0; transform: scale(0.95); }
  10%, 90% { opacity: 1; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* ==== Responsive ==== */
@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 200px;
  }
}



/* ===================================
   🌟 Testimonials Section
=================================== */
/* ==== Testimonial Section ==== */
.testimonial-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.testimonial-section .section-title {
  text-align: center;
  color: #004080;
  font-size: 28px;
  margin-bottom: 40px;
}

.testimonial-slider {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.testimonial {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #004080;
}

.testimonial p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.testimonial h4 {
  font-size: 18px;
  color: #004080;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonial {
    padding: 20px 15px;
  }
}



/* ===================================
   🔗 Footer Section (Common)
=================================== */
.footer {
  background-color: #00264d;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer p {
  margin-bottom: 8px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  margin-top: 8px;
}


/* ===================================
   📱 Responsive Header, Body, Footer
=================================== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 16px;
  }
}


/* ⭐ North India Page CSS ⭐ */
/* ========= HERO SECTION ========= */

/* ========= TOUR PACKAGE SECTION ========= */
.section {
  padding: 50px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #004080;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 10px;
  color: #004080;
  font-size: 22px;
}

.card p {
  color: #444;
  font-size: 16px;
  padding: 0 10px 15px;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .section-title {
    font-size: 26px;
  }
  .card img {
    height: 180px;
  }
  .card h3 {
    font-size: 20px;
  }
  .card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 15px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .section {
    padding: 30px 15px;
  }
  .card img {
    height: 160px;
  }
}

/* =======================================
   ✅ SOUTH INDIA PAGE CSS
   ======================================= */

/* ===== HERO SECTION (South India) ===== */


/* ===== TOUR PACKAGES SECTION (South India) ===== */
.section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #004080;
  margin-bottom: 30px;
}

/* ===== Card Grid ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card h3 {
  color: #004080;
  font-size: 22px;
  margin: 15px 0 5px;
}

.card p {
  color: #555;
  font-size: 16px;
  padding: 0 15px 15px;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .card img {
    height: 180px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }
}

/* ==== International Tour Page Section ==== */
/* ✅ Section Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #004080;
  margin-bottom: 1.5rem;
}

/* ✅ Card Grid Layout */


/* ✅ Card Grid Section */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ✅ Card Style */
.card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  padding: 12px 15px 5px;
  font-size: 18px;
  color: #004080;
}

.card p {
  padding: 0 15px 15px;
  color: #555;
  font-size: 14px;
}

/* ✅ Responsive Cards */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card img {
    height: 140px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }
}
@media (max-width: 600px) and (min-width: 400px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}





.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* ✅ Individual Tour Cards */
.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #004080;
}

.card p {
  color: #666;
  padding: 0 10px 15px;
  font-size: 14px;
}

/* ✅ Hero Section */
.hero {
  background: linear-gradient(to right, #004080, #0073e6);
  color: white;
  padding: 50px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  margin: 20px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* ✅ Responsive for Mobile */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  .card img {
    height: 180px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* ============================= */
/* === CAB SERVICE PAGE BODY === */
/* ============================= */

/* Hero Section for Cab Service */


/* Cab Card Section */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #004080;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  color: #004080;
  margin: 15px 0 5px;
  font-size: 22px;
}

.card p {
  padding: 0 15px 20px;
  color: #555;
  font-size: 16px;
}

/* ============================= */
/* === RESPONSIVE CAB SERVICE === */
/* ============================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .section-title {
    font-size: 26px;
  }
}

/* ============================
   ✅ Booking Page CSS 
   (Body Section Only)
   ============================ */

/* ===== Hero Section for Booking Page ===== */


/* ===== Booking Form Section ===== */
.booking-form {
  max-width: 600px;
  background: white;
  margin: 40px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.booking-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #004080;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #0073e6;
  outline: none;
}

.booking-form textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-form button {
  width: 100%;
  background-color: #004080;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.booking-form button:hover {
  background-color: #0066cc;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .booking-form {
    padding: 20px;
    margin: 30px 20px;
  }
}

/* ==============================
   ✅ Header Section (Common)
============================== */
.header {
  background-color: #004080;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-menu a:hover {
  background-color: #ffc107;
  color: black;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #004080;
  padding: 10px 0;
  border-radius: 5px;
  min-width: 180px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu a {
  color: white;
}

.dropdown-menu a:hover {
  background-color: #ffc107;
  color: black;
}


/* ==============================
   ✅ Hero Section (Page Banner)
============================== */
/* ===============================
   ✅ GLOBAL STYLES
================================= */
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
  scroll-behavior: smooth;
}

a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===============================
   ✅ HEADER SECTION
================================= */
header.bg-dark {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

header .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

header .nav-link:hover {
  color: #ffc107;
}

/* ===============================
   ✅ HERO SECTION
================================= */
section.bg-primary {
  background: linear-gradient(to right, #004080, #007bff);
  color: #fff;
}

section.bg-primary h1 {
  font-size: 2rem;
  font-weight: 700;
}

section.bg-primary p.lead {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* ===============================
   ✅ CARD SECTION (Cabs)
================================= */
.card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.card-text {
  color: #666;
}

/* ===============================
   ✅ FOOTER
================================= */
footer.bg-dark {
  background-color: #212529 !important;
}

footer p, footer a {
  font-size: 14px;
  color: #ddd;
}

footer a:hover {
  color: #ffc107;
}

/* ===============================
   ✅ RESPONSIVE FIXES
================================= */
@media (max-width: 767.98px) {
  section.bg-primary h1 {
    font-size: 1.5rem;
  }

  .card-img-top {
    height: 160px;
  }
}


/* ==============================
   ✅ Contact Section Body
============================== */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Left Info Box */
.contact-info {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.contact-info h3 {
  margin-top: 0;
  color: #004080;
}

.contact-info p {
  margin: 8px 0;
  color: #555;
}

.contact-info a {
  color: #004080;
}

/* Right Form Box */
.contact-form {
  flex: 1 1 500px;
  background-color: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.contact-form h3 {
  color: #004080;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}

.form-group textarea {
  min-height: 100px;
}

.contact-form button {
  background-color: #004080;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #0066cc;
}


/* ==============================
   ✅ Google Map Section
============================== */
.map-container {
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.map-container h2 {
  text-align: center;
  color: #004080;
  margin-bottom: 20px;
}

.map-container iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}


/* ==============================
   ✅ Footer Section (Common)
============================== */
.footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 20px;
   border-top-right-radius: 20px;
  
}

.footer a {
  color: #ffc107;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-top: 10px;
}


/* ==============================
   ✅ Responsive Design
============================== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }

  .contact-section {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }
}

/* ===== About Us Section ===== */
.main-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

.highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.highlight h2 {
  color: #004080;
  margin-bottom: 15px;
  font-size: 28px;
}

.highlight p {
  color: #333;
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 20px;
}

.highlight ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.highlight ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #444;
  font-size: 17px;
}

.highlight ul li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 0;
  color: #2e8b57;
  font-size: 18px;
}

/* Link styling inside about */
.highlight a {
  color: #0073e6;
  text-decoration: none;
  transition: 0.3s;
}

.highlight a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* ✅ Responsive for Mobile */
@media (max-width: 600px) {
  .highlight {
    padding: 25px;
  }
  .highlight h2 {
    font-size: 24px;
  }
  .highlight p,
  .highlight ul li {
    font-size: 16px;
  }
}

/* ========================== */
/* ✅ Thank You Page CSS */
/* ========================== */

.thankyou-page {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-page h1 {
  color: #004080;
  font-size: 42px;
  margin-bottom: 10px;
}

.thankyou-page h2 {
  color: #0073e6;
  font-size: 28px;
  margin-bottom: 20px;
}

.thankyou-page p {
  color: #333;
  font-size: 20px;
  margin-bottom: 30px;
}

.home-btn {
  background-color: #004080;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.home-btn:hover {
  background-color: #0073e6;
}

/* ✅ Responsive */
@media (max-width: 600px) {
  .thankyou-page h1 {
    font-size: 30px;
  }

  .thankyou-page h2 {
    font-size: 22px;
  }

  .thankyou-page p {
    font-size: 18px;
  }
}

/* ==== Testimonial Page ==== */
/* ✅ Testimonial Section */
/* ✅ Testimonial Hero Section */
.testimonial-hero {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative;
}

/* ✅ Hero Image */
.testimonial-hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
}

/* ✅ Hero Text (Optional) */
.hero-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  background: rgba(0, 64, 128, 0.75);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-text h1 {
  margin: 0;
  font-size: 28px;
}

.hero-text p {
  margin: 5px 0 0;
  font-size: 16px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .testimonial-hero img {
    height: 400px;
  }
  .hero-text h1 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .testimonial-hero img {
    height: 250px;
  }
  .hero-text {
    bottom: 15px;
    left: 15px;
    padding: 10px 15px;
  }
  .hero-text h1 {
    font-size: 18px;
  }
  .hero-text p {
    font-size: 14px;
  }
}


 /* hero section cab service */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.hero {
  padding: 50px 20px;
  text-align: center;
}
/* ✅ WhatsApp Button */
.whatsapp-btn {
  display: block;
  background-color: #25d366;
  color: white;
  text-align: center;
  padding: 8px 0;
  margin: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

/* ✅ WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: white;
  text-align: center;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

/* ✅ Itinerary Section */
.itinerary h3 {
  margin-top: 20px;
  color: #004080;
}

.itinerary p {
  margin-bottom: 10px;
  color: #333;
}
/* ✅ WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: white;
  text-align: center;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

/* ✅ Itinerary Styling */
.itinerary h3 {
  margin-top: 20px;
  color: #004080;
}

.itinerary p {
  margin-bottom: 10px;
  color: #333;
}
/* ✅ WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: white;
  text-align: center;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

/* ✅ Itinerary Styling */
.itinerary h3 {
  margin-top: 20px;
  color: #004080;
}

.itinerary p {
  margin-bottom: 10px;
  color: #333;
}

/*style for every new pages single tour package itinerary page image card*/

/* ✅ Banner Section - Kullu Manali */
/* ✅ Banner Section - Kullu Manali */
.banner-section {
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9; /* Light background */
}

.banner-img {
  width: 90%;
  max-width: 800px;
  max-height: 600px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* ✅ Stronger shadow */
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* ✅ Tablet View */
@media (max-width: 768px) {
  .banner-img {
    max-height: 350px;
    width: 95%;
  }
}

/* ✅ Mobile View */
@media (max-width: 480px) {
  .banner-img {
    max-height: 250px;
    width: 95%;
  }
}

/* ================================
   ✅ Privacy Policy Page Styles
   ================================ */

/* Section Styling */
.section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

/* Container */
.section .container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Heading */
.section h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
}

/* Subheadings */
.section h3 {
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0056b3;
}

/* Paragraph */
.section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

/* Lists */
.section ul {
  padding-left: 20px;
}

.section ul li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
}

/* Email Link */
.section a {
  color: #007bff;
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .section .container {
    padding: 25px 20px;
  }

  .section h1 {
    font-size: 1.5rem;
  }

  .section h3 {
    font-size: 1.125rem;
  }
}
/* === HEADER STICKY STYLE === */
.header {
  position: sticky;
  top: 0;
  z-index: 1000; /* ensures it stays above all content */
  background-color: #000; /* solid background to prevent transparency issues */
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* optional: shadow for 3D effect */
}

/* Optional: make nav links look good */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ffc107; /* Bootstrap warning color for hover effect */
}

footer a {
  font-size: 15px;
}

@media (max-width: 576px) {
  footer .d-inline-flex {
    flex-direction: column;
    gap: 6px;
  }
}


