/* ===================================
   🌐 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, #0073e6);
  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, #004080, #0073e6);
  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 ========= */
.hero {
  background: linear-gradient(to right, #004080, #0088cc);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* ========= 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) ===== */
.hero {
  background: linear-gradient(to right, #004080, #00bcd4);
  padding: 50px 20px;
  text-align: center;
  color: white;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* ===== 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 {
  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 */
.hero {
  background: linear-gradient(to right, #004080, #008080);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  border-radius: 0 0 30px 30px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* 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 ===== */
.hero {
  background: linear-gradient(to right, #004080, #008cff);
  padding: 50px 20px;
  text-align: center;
  color: white;
  border-radius: 0 0 30px 30px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* ===== 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)
============================== */
.hero {
  background: linear-gradient(to right, #004080, #0073e6);
  padding: 50px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 38px;
}

.hero p {
  margin-top: 10px;
}


/* ==============================
   ✅ 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: #00264d;
  color: white;
  text-align: center;
  padding: 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 {
  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;
  }
}
 /* 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;
}
