/* Font and general style */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Top Info Bar */
.top-bar {
  background: #2a2a72;
  font-size: 14px;
}
.top-bar span {
  font-weight: 600;
}

/* Navbar */
.custom-navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo {
  height: 45px;
}
.navbar-brand span {
  font-weight: 600;
  color: #2a2a72;
  font-size: 20px;
}
.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #e63946 !important;
}
.btn-agent {
  background: #e63946;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-agent:hover {
  background: #c71c2b;
}

/* Hero Section */
.hero-section {
  background: url('../images/slider/bl2.png') center/cover no-repeat;
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}
.booking-form {
  background: rgba(255,255,255,0.95);
  position: relative;
  z-index: 2;
  border-radius: 12px;
}
.form-group label {
  font-weight: 600;
  color: #444;
}
.form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  transition: border 0.3s ease;
}
.form-control:focus {
  border-color: #2a2a72;
  box-shadow: none;
}
.btn-book {
  background: #2a2a72;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-book:hover {
  background: #1f1f60;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    display: flex;
    flex-direction: column;
  }
  .form-group {
    width: 100% !important;
  }
  .hero-section {
    height: auto;
    padding: 60px 0;
  }
  .btn-book {
    width: 100%;
  }
}


/* marquee arae //// */

/* ================================
   TOP DESTINATIONS SECTION
================================ */
.top-destinations {
  background: #fff;
  overflow: hidden;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #2a2a72;
  position: relative;
}

.section-title span {
  color: #e63946;
}

/* Marquee Animation */
.destinations-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
}

.destination-box {
  flex: 0 0 auto;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin: 0 15px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 260px;
  transition: all 0.3s ease;
}

.destination-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.destination-box span {
  font-weight: 500;
  font-size: 16px;
  color: #2a2a72;
  white-space: nowrap;
}

.btn-book {
  background: #2a2a72;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #e63946;
}

/* Marquee Animation Keyframes */
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .destination-box {
    min-width: 220px;
    margin: 0 10px;
    padding: 10px 15px;
  }

  .destination-box span {
    font-size: 14px;
  }

  .btn-book {
    padding: 5px 10px;
    font-size: 13px;
  }
}


/* about us  */

/* ================================
   ABOUT SECTION
================================ */
.about-section {
  background: #fff;
  position: relative;
}

.about-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #2a2a72;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #e63946;
}

.about-content p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn-readmore {
  background: #e63946;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-readmore:hover {
  background: #c71c2b;
  text-decoration: none;
  color: #fff;
}

/* Image grid styling */
.about-images {
  display: flex;
  gap: 10px;
}
.about-images .img-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.about-images .main-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-images img {
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive design */
@media (max-width: 991px) {
  .about-images {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .about-content {
    text-align: center;
  }
  .about-images {
    flex-direction: column;
    align-items: center;
  }
  .about-images img {
    width: 90%;
  }
}


/* ================================
   WHY CHOOSE US SECTION
================================ */
.why-choose-us {
  background-color: #2a2a72;
  color: #fff;
  position: relative;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}

.section-title span {
  color: #e63946;
}

.section-subtitle {
  color: #ddd;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.choose-box {
  background: #ffffff10;
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.choose-box:hover {
  background: #ffffff20;
  transform: translateY(-8px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
}

.choose-box .icon {
  font-size: 45px;
  color: #e63946;
  margin-bottom: 15px;
}

.choose-box h4 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.choose-box p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .choose-box {
    margin-bottom: 20px;
  }
}


/* ================================
   OUR GALLERY SECTION
   ================================ */

.gallery-area {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.gallery-heading {
  font-size: 2.2rem;
  color: #2a2a72;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.gallery-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e63946;
  margin: 8px auto 0;
  border-radius: 2px;
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-box {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-box:hover img {
  transform: scale(1.08);
}

.gallery-box:hover {
  transform: translateY(-5px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-heading {
    font-size: 1.8rem;
  }

  .gallery-wrapper {
    gap: 15px;
  }
}

/* =====================================
   OUR SERVICES SECTION - New Raj Travels
   ===================================== */

.service-area {
  background-color: #2a2a72;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.service-heading {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.service-heading::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #ffcc00;
  margin: 10px auto 0;
  border-radius: 3px;
}

.service-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.service-card {
  background: #ffffff;
  color: #333;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a2a72;
  margin: 15px 0 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 15px 15px;
  color: #555;
}

.service-btn {
  display: inline-block;
  background-color: #e63946;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.service-btn:hover {
  background-color: #ff5c5c;
  transform: translateY(-3px);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-heading {
    font-size: 1.9rem;
  }

  .service-card img {
    height: 180px;
  }
}




/* ///////// packages area //////// */

.packages-section {
  background-color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a2a72;
}

.package-card {
  background-color: #2a2a72;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-svg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
}

.package-img {
  width: 100px;
  height: auto;
}

.package-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-desc {
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-custom {
  display: inline-block;
  padding: 10px 25px;
  background-color: #ff6b6b;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #ff3b3b;
}


/* faq area  */

.faq-section {
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a2a72;
}

.faq-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background-color: #2a2a72;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-faq {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 20px;
  position: relative;
}

.btn-faq::after {
  content: '\002B'; /* plus sign */
  position: absolute;
  right: 20px;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-faq.collapsed::after {
  transform: rotate(0deg);
}

.btn-faq:not(.collapsed)::after {
  transform: rotate(45deg);
}

.card-body {
  background-color: #1f1f5c;
  padding: 15px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}


/* contact area here  */

.contact-section {
  background-color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a2a72;
}

.contact-card {
  background-color: #2a2a72;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.card-svg {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 70px;
  height: 70px;
}

.contact-icon {
  font-size: 2rem;
}

.contact-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-info {
  font-size: 1rem;
  line-height: 1.5;
}


/* /////////////// footer ///////////// */

.footer-section {
  background-color: #2a2a72;
  color: #fff;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff6b6b;
}

.footer-social a {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff6b6b;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}
 
/* about us 2  */

.about-section2 {
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a2a72;
}

.about-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.clickable-number {
  color: #ff6b6b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.clickable-number:hover {
  color: #ff3b3b;
}

.about-section2 img {
  max-width: 100%;
  height: auto;
}


/* booking ////////////// */

.booking-section2 {
  background-color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a2a72;
}

.booking-card {
  background-color: #2a2a72;
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.vehicle-img {
  width: 120px;
  height: auto;
}

.vehicle-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.vehicle-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.btn-book2 {
  display: inline-block;
  padding: 10px 25px;
  background-color: #ff6b6b;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-book2:hover {
  background-color: #ff3b3b;
}


/* Contact Page Styles (append to your style.css) */

/* Section base */
.contact-page-section {
  background-color: #f7f8fb;
  color: #222;
}

/* Title */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2a2a72;
}

/* FORM CARD */
.form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(42,42,114,0.08);
  border: 1px solid rgba(42,42,114,0.04);
}

.card-heading {
  font-size: 1.25rem;
  color: #2a2a72;
  font-weight: 700;
}

/* custom inputs */
.custom-input {
  border: 1px solid rgba(42,42,114,0.12);
  border-radius: 8px;
  padding: 10px 12px;
  height: calc(1.5em + 1rem + 2px);
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .15s ease;
}

.custom-input:focus {
  border-color: #2a2a72;
  box-shadow: 0 6px 20px rgba(42,42,114,0.07);
  outline: none;
}

/* submit button (custom) */
.btn-submit {
  display: inline-block;
  background: linear-gradient(90deg,#ff6b6b,#ff3b3b);
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,59,59,0.18); }

/* INFO STACK / CARDS */
.info-stack {}

/* info-card uses the theme color for background */
.info-card {
  background-color: #2a2a72;
  color: #fff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  min-height: 130px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.info-card:hover { transform: translateY(-6px); box-shadow: 0 18px 35px rgba(42,42,114,0.18); }

.card-svg { position: absolute; top: -18px; right: -18px; width: 80px; height: 80px; }

/* icon and text */
.info-icon { font-size: 1.6rem; margin-bottom: 6px; }
.info-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 6px 0; }
.info-text { margin: 0 0 6px 0; font-size: 0.95rem; color: #fff; }
.info-link { color: rgba(255,255,255,0.95); text-decoration: none; font-weight: 600; }
.info-link:hover { color: #ffce6b; }

/* small note */
.info-small { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 0; }

/* clickable phone/email styling */
.click-number, .click-email {
  color: #ffcfb0;
  font-weight: 700;
  text-decoration: none;
}
.click-number:hover, .click-email:hover { color: #fff; }

/* Map responsiveness */
.map-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(42,42,114,0.04);
  box-shadow: 0 10px 30px rgba(42,42,114,0.06);
  min-height: 220px;
}

/* make iframe responsive and keep aspect ratio */
.map-responsive {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect */
}
.map-responsive iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: 0;
}

/* small screens: stack nicely */
@media (max-width: 991.98px) {
  .info-card { min-height: 120px; }
}

/* extra spacing for mobile */
@media (max-width: 767.98px) {
  .form-card { margin-bottom: 20px; }
}


/* whatsapp  */

/* Floating Buttons */
.float-whatsapp,
.float-call {
  position: fixed;
  z-index: 9999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2a72;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.float-whatsapp img,
.float-call img {
  width: 28px;
  height: 28px;
}

.float-whatsapp {
  bottom: 20px;
  left: 20px;
}

.float-call {
  bottom: 20px;
  right: 20px;
}

/* Hover effects */
.float-whatsapp:hover,
.float-call:hover {
  transform: scale(1.1);
  background-color: #ff6b6b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .float-whatsapp,
  .float-call {
    width: 50px;
    height: 50px;
  }

  .float-whatsapp img,
  .float-call img {
    width: 24px;
    height: 24px;
  }

  .float-whatsapp {
    bottom: 15px;
    left: 15px;
  }

  .float-call {
    bottom: 15px;
    right: 15px;
  }
}


