/* -------------------------
   GLOBAL
------------------------- */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: #222;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}




/* HEADER */
.video-header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.video-header video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY (GUARANTEED) */
.video-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.content a {
  text-decoration: none;
  background: #e91e63;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
}

.logo { 
  height: 200px; 
  margin-top: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .content h1 {
    font-size: 2.2rem;
  }
  .logo {
    margin-top: 8px;
    height: 100px; 
  }
}




/* -------------------------
   ABOUT SECTION
------------------------- */

.about-section {
  padding: 60px 20px;
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.align-center {
  align-items: center;
}

.rounded-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.left-title {
  text-align: left;
  margin-bottom: 15px;
}

.text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn:hover {
  background-color: #e91e63;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .left-title {
    text-align: center;
  }

  /* CENTER PARAGRAPH TEXT */
  .text {
    text-align: center;
  }

  /* CENTER WHATSAPP BUTTON */
  .btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    
  }
}








/* -------------------------
   Tours Pick-Up & Drop Services
------------------------- */
.highlight {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* -------------------------
   CARD
------------------------- */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  max-width: 1200px;
  margin: auto;
}

/* -------------------------
   TABLE
------------------------- */
.overflow {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  min-width: 700px; /* important for mobile scroll */
  border-collapse: collapse;
  text-align: center;
  font-size: 15px;
}

.price-table thead tr {
  background: #e91e63;
  color: #fff;
}

.price-table th,
.price-table td {
  padding: 12px;
  border: 1px solid #eee;
}

/* -------------------------
   TEXT & BUTTON
------------------------- */
.small-center {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.center {
  text-align: center;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn:hover {
  background-color: #e91e63;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 768px) {
  .price-table {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
  }
}







/* Explore Mahabaleshwar & Panchgani */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION */
.packages {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
}

.center-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* IMAGE */
.card-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* PRICE */
.price {
  margin-bottom: 15px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn:hover {
  background-color: #e91e63;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    text-align: center;
  }

  .btn {
    display: block;
    width: fit-content;
    margin: 15px auto 0;
  }
}








/* -------------------------
   GALLERY SECTION
------------------------- */
.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

.carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks for mobile */
@media (max-width: 768px) {
  .carousel-item img {
    height: 200px; /* smaller height */
  }
}







/* Inquiry Section Styling */
section.bg-light {
  background: #f7f9fc;
}

.card {
  background: #ffffff;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.btn-success {
  background-color: #e91e63;
  border-color: #e91e63;
}

.btn-success:hover {
  background-color: #e91e63;
  border-color: #e91e63;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .card {
    padding: 25px 20px;
  }

  h2 {
    font-size: 1.75rem;
  }
}








/* -------------------------
   FOOTER
------------------------- */
.footer {
  background: #111;
}

.footer-logo {
  max-width: 180px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.footer-title {
  margin-bottom: 12px;
  font-weight: 600;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
}

.footer a:hover {
  color: #25D366;
}

/* Social Icons */
.social-icon {
  font-size: 22px;
  color: #ccc;
  transition: 0.3s ease;
}

.social-icon:hover {
  color: #25D366;
  transform: scale(1.1);
}

/* Bottom bar */
.footer-bottom {
  background: #000;
  font-size: 14px;
  color: #aaa;
}

/* -------------------------
   FLOATING WHATSAPP
------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

/* Mobile */
@media (max-width: 576px) {
  .footer {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }
}






















