* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
    --primary-bg: #4596ab; /* Maroon */
    --accent: #f89c1c; /* Golden Orange */
    --light-bg: #fff8f0;
}

/*
 * Custom Styles for Tour & Travels Website
 * This file replaces all previous custom CSS.
 * Ensure this file is linked AFTER Bootstrap's CSS in your HTML.
 */

/* ========================================= */
/* 1. General Styling & Top Bar */
/* ========================================= */
.top-bar {
  background: linear-gradient(135deg, #b30000, #d40000) !important; 
  color: #fff;
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
  overflow: hidden;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.top-bar .contact-info,
.top-bar .social-lang-group {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.top-bar a,
.top-bar i,
.top-bar span,
.top-bar small {
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.top-bar a.social-icon {
  font-size: 1.2rem;
}

.top-bar a.social-icon:hover i {
  color: #f89c1c; 
  transform: scale(1.3) rotate(5deg);
}

.language-select {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.language-select .form-select {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.25rem 1.5rem 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.language-select .form-select option {
    color: #000;
}

/* ========================================= */
/* 2. Main Navbar Styling */
/* ========================================= */
.navbar {
  background-color: #ffffff!important; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 998;
}

.navbar-brand img {
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color:black; /* NAVBAR LINKS IN MAROON - NEW */
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 700;
  transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: #f89c1c; /* Orange on hover for maroon links */
  transform: translateY(-2px);
}

/* Dropdown Menu (for larger screens) */
.navbar-nav .dropdown-menu {
  background-color: #4596ab; /* Maroon background for open dropdown */
  border: 1px solid #4596ab; /* Matching border */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-top: 0;
  min-width: 10rem;
}

.navbar-nav .dropdown-menu .dropdown-item {
  color: #ffffff; /* White text for dropdown items */
  font-weight: normal;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #D40000; /* Slightly darker maroon on hover */
  color: #f89c1c; /* Orange text on hover */
}

/* ========================================= */
/* 3. Enquiry Button (Desktop) */
/* ========================================= */
.btn-enquiry-custom {
  background-color: #f89c1c;
  color: #D40000;
  padding: 7px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.05rem;
  overflow: hidden;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 6px 15px rgba(0,0,0,0.25); }
  50% { transform: scale(1.02); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
  100% { transform: scale(1); box-shadow: 0 6px 15px rgba(0,0,0,0.25); }
}

.btn-enquiry-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: transform 0.6s ease;
  z-index: -1;
  pointer-events: none;
}

.btn-enquiry-custom:hover {
  background-color: #D40000;
  color: white;
  border-color: #f89c1c;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  animation: none;
}

.btn-enquiry-custom:hover::before {
  transform: translateX(250%);
}

/* ========================================= */
/* 4. Responsive Navigation (Mobile/Tablet) */
/* ========================================= */

/* Toggler button appearance */
.navbar-toggler {
  border: 1px solid #4596ab;
  border-radius: 5px;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  border-color: #f89c1c;
  box-shadow: 0 0 0 0.25rem rgba(248, 156, 28, 0.25);
}

/* Toggler Icon - MAROON - CONFIRMED */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%234596ab' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important; /* Force Maroon lines */
}

/* When toggler is expanded, keep icon maroon */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%234596ab' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}


/* Collapsed menu background (Maroon) */
@media (max-width: 991.98px) { /* Bootstrap's 'lg' breakpoint */
  .navbar-collapse {
    background-color: #4596ab;
    padding: 15px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    margin-top: 10px;
  }

  /* All main links within the collapsed menu (white and bold) */
  .navbar-nav .nav-item .nav-link,
  .navbar-nav .nav-item .dropdown-toggle {
    color: #ffffff;
    font-weight: bold;
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav .nav-item:last-child .nav-link,
  .navbar-nav .nav-item:last-child .dropdown-toggle {
    border-bottom: none;
  }

  .navbar-nav .nav-item .nav-link:hover,
  .navbar-nav .nav-item .dropdown-toggle:hover {
    background-color: #D40000;
    color: #f89c1c;
  }

  /* Dropdown menu within the collapsed navbar */
  .navbar-nav .dropdown-menu {
    position: static;
    width: auto;
    box-shadow: none;
    border: none;
    background-color: #D40000; /* Slightly darker maroon for dropdown background */
    padding-left: 1rem;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  /* Dropdown items within the collapsed menu */
  .navbar-nav .dropdown-menu .dropdown-item {
    color: #ffffff;
    font-weight: bold;
    padding-top: 8px;
    padding-bottom: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #D40000; /* Lighter maroon on hover */
    color: #f89c1c; /* Orange text on hover */
  }

  /* Enquiry button in collapsed menu */
  .navbar-nav .btn-primary,
  .navbar-nav .btn-enquiry-custom {
    width: 100%;
    margin-top: 15px;
    margin-left: 0 !important;
    background-color: #f89c1c;
    color: #4596ab;
    border-color: #4596ab;
    font-weight: bold;
    animation: none;
  }

  .navbar-nav .btn-primary:hover,
  .navbar-nav .btn-enquiry-custom:hover {
    background-color: #4596ab;
    color: #f89c1c;
    border-color: #f89c1c;
    transform: scale(1.02);
  }

  .navbar-nav .btn-enquiry-custom::before {
      display: none;
  }
}


/* ========================================= */
/* 5. Modal Form Styling */
/* ========================================= */
.modal-content {
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border: none;
}

.modal-header {
  background-color: #4596ab;
  color: #fff;
  border-bottom: none;
  padding: 1rem 1.5rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.modal-title {
  font-weight: bold;
  font-size: 1.25rem;
}

.modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
  padding: 1.5rem;
}

.modal-body .form-label {
  font-weight: bold;
  color: #333333;
  margin-bottom: 0.5rem;
}

.modal-body .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.modal-body .form-control:focus {
  border-color: #f89c1c;
  box-shadow: 0 0 0 0.25rem rgba(248, 156, 28, 0.25);
}

.modal-body .btn-primary {
  background-color: #f89c1c;
  border-color: #f89c1c;
  color: #4596ab;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.modal-body .btn-primary:hover {
  background-color: #4596ab;
  border-color: #4596ab;
  color: #f89c1c;
} 

/* ========================================= */
/* 7. Scrolling Text (Marquee) with Icon */
/* ========================================= */
.move_content {
  background-color: #d40000!important;; /* Maroon background */
  color: #fff;
  padding: 10px 0; /* Add some vertical padding */
  overflow: hidden; /* Important for scrolling effect */
  white-space: nowrap; /* Keep content on one line */
}

.scrolling-text {
  display: flex; /* Use flexbox to arrange items horizontally */
  align-items: center; /* Vertically align content */
  animation: scroll-left 20s linear infinite; /* Adjusted duration for more content */
  font-size: 18px;
  box-sizing: border-box;
  padding-left: 100%; /* Start the content off-screen to the right */
}

/* Ensure each paragraph stays inline and spaced */
.scrolling-text p {
  display: inline-flex; /* Use inline-flex to keep content and icon together */
  align-items: center; /* Vertically align icon with text */
  margin: 0; /* Remove default paragraph margins */
  padding-right: 40px; /* Space between each message block */
  white-space: nowrap; /* Keep paragraph content on one line */
}

/* Keyframe animation for the scrolling effect */
@keyframes scroll-left {
  0% {
    transform: translateX(0%); /* Start at 0% */
  }
  100% {
    transform: translateX(-100%); /* Scroll entirely off-screen to the left */
  }
}

/* Styling for the Saathiya Icon (THE ICON) */
.saathiya-icon {
  font-size: 20px; /* Adjust size as needed */
  color: #f89c1c; /* Orange color for the icon */
  vertical-align: middle; /* Align with text */
  margin-right: 10px; /* Space between icon and text */
  flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Optional: Pause animation on hover */
.scrolling-text:hover {
  animation-play-state: paused;
}
/* Add this to your CSS, or ensure bg_maroon is defined elsewhere if you use it globally */
.bg_maroon {
    background-color: #4596ab; /* Your specific maroon color */
}

/* ========================================= */
/* 8. Blinking Box with Color Change & Style */
/* ========================================= */

.blinking-box {
    background-color: #d40000!important; /* Initial Orange background */
    color: white; /* Initial Maroon text */
    font-weight: bold;
    border-radius: 5px;
    animation: color-blink-pulse 1.8s ease-in-out infinite; /* New animation: name, duration, timing, repetition */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    cursor: pointer; /* Indicates it's clickable, especially for the phone number */
}

/* Styling for the H2 inside the blinking box */
.blinking-box h2 {
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

/* Optional: Make it slightly interactive on hover */
.blinking-box:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* More prominent shadow on hover */
    animation-play-state: paused; /* Pause blinking on hover */
    background-color: #ffb14e; /* Ensure background changes on hover even if animation is paused */
    color: #D40000; /* Darker maroon on hover */
}

/* Adjustments for the H1 section (remains the same as before) */
.container .text-white h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* Responsive adjustments (remain the same as before) */
@media (max-width: 768px) {
    .blinking-box h2 {
        font-size: 1.3rem;
    }
    .container .text-white h1 {
        font-size: 1.8rem;
    }
    .blinking-box {
        padding: 10px 15px !important;
    }
}

@media (max-width: 576px) {
    .blinking-box h2 {
        font-size: 1.1rem;
    }
    .container .text-white h1 {
        font-size: 1.5rem;
    }
    .blinking-box {
        padding: 8px 10px !important;
    }
}


/* NEW Keyframe for the color change and subtle pulse effect */
@keyframes color-blink-pulse {
    0% {
        background-color: #D40000; /* Initial orange */
        color: white; /* Initial maroon */
        transform: scale(1);
    }
    50% {
        background-color: #D40000; /* Lighter orange/yellowish */
        color: white; /* Keep text maroon or change to black */
        transform: scale(1.01); /* Slight pulse effect */
    }
    100% {
        background-color: #D40000; /* Return to initial orange */
        color: white; /* Return to initial maroon */
        transform: scale(1);
    }
}
 

.tour-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 16px rgba(128, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

/* Hover Effect */
.tour-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 24px rgba(128, 0, 0, 0.35);
}

/* Image Section */
.tour-img {
    overflow: hidden;
    position: relative;
}
.tour-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-img img {
    transform: scale(1.08);
}

/* Icons Section */
.tour-icons {
    background: linear-gradient(90deg, #fbb034, #ffdd55);
    color: #000;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    font-weight: 600;
    font-size: 14px;
}
.tour-icons span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Content Section */
.tour-content {
    background: #d40000 ;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    min-height: 70px;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Footer Section */
.tour-footer {
    background: linear-gradient(90deg, #fbb034, #ffdd55);
    padding: 12px;
    color: #000;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-weight: 500;
    border-top: 2px solid #fff;
}
.tour-footer p {
    margin: 0;
}

/* View Button */
.btn-view {
    background: #d40000;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 15px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}
.btn-view:hover {
    background: linear-gradient(135deg, #b30000, #d40000);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(128,0,0,0.4);
}
.btn-view1 {
    background: rgb(64, 218, 64);
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 15px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
    animation: blinkBtn 1.2s infinite; /* blinking effect */
}

/* Hover Effect */
.btn-view1:hover {
    background: linear-gradient(135deg, #b30000, #d40000);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.45);
}

/* Blinking Animation */
@keyframes blinkBtn {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.55;
    }
}

.why-choose-section {
  background: #72a838;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.why-choose-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: orange;
  margin-bottom: 15px;
}

.underline {
  width: 100px;
  height: 5px;
  background: orange;
  margin: 15px auto 40px;
  border-radius: 10px;
}

/* Card Style */
.trust-card {
  background: linear-gradient(145deg, #ffffff, #fff9e6);
  border: 1px solid #f0e6d2;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: orange; /* Darker golden on hover */
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.25);
}

/* Hover Shine Effect */
.trust-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 223, 186, 0.4), transparent);
  transform: skewX(-25deg);
}

.trust-card:hover::after {
  animation: shine 0.8s ease forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* Icon Style */
.trust-card .icon i {
  font-size: 55px;
  color: orange;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.trust-card:hover .icon i {
  color: #b8860b;
}

.trust-card h5 {
  font-weight: 700;
  color: #456aab;
  margin-bottom: 10px;
}

.trust-card p {
  color: #444;
  font-size: 15px;
}
.info-contact-section {
  background: #fff; /* Clean white background */
  padding: 50px 20px;
}

.styled-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.styled-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn-maroon {
  background-color: #D40000;
  color: #fff;
  border: none;
  font-weight: bold;
  padding: 10px;
  transition: background 0.3s ease;
}

.btn-maroon:hover {
  background-color: #a32424;
}

.input-style1:focus, .form-control:focus {
  border-color: #fbb03b;
  box-shadow: 0 0 8px rgba(251, 176, 59, 0.5);
}

.floating-icon {
  animation: floatIcon 2s infinite ease-in-out;
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
.custom-footer {
  background: #D40000; /* Elegant maroon gradient */
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-logo {
  max-width: 180px;
}

.footer-tagline {
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-offer {
  font-size: 20px;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 5px;
}

.limited {
  font-size: 16px;
  color: #fff;
}

.blinks {
  animation: blink 1.2s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.footer-right {
  max-width: 400px;
  text-align: left;
}

.footer-right h5 {
  color: #ffcc00;
}

.contact-info p {
  font-size: 15px;
  margin: 5px 0;
}

.contact-info i {
  color: #ffcc00;
  margin-right: 6px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

.footer-bottom {
  background: orange;
  font-size: 18px;
  color: #fff;
}

.custom-footer {
  animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}
/* Hero Section */
.hero {
    color: #fff;
    text-align: center;
    padding: 80px 15px;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero-content p {
    font-size: 1.2rem;
    margin: 10px 0;
}
.hero-content .btn {
    background: linear-gradient(45deg, #f5a623, #ffcc70);
    border: none;
    font-weight: 700;
    padding: 14px 40px;
    color: #000;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

.hero-content .btn::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.3);
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.hero-content .btn:hover::before {
    opacity: 1;
    top: -70%;
    left: -70%;
}

.hero-content .btn:hover {
    background: linear-gradient(45deg, #ffcc70, #f5a623);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Section Content */
.content-section {
    padding: 50px 0;
}
.about-text h4 {
    background: #D40000;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}
.about-text p {
    font-size: 1rem;
    color: #444;
    margin: 15px 0;
}

/* Cards */
.card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.card h5 {
    font-weight: bold;
    color: #D40000;
}
.card img {
    width: 100%;
    border-radius: 8px;
}

/* Forms */
.form-control, textarea {
    border-radius: 8px;
}
.btn-warning {
    background: #f5a623;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
}
.btn-warning:hover {
    background: #a80707;
    color: #fff;
}

/* Carousel */
.carousel-caption {
    background: rgba(0,0,0,0.6);
    padding: 12px;
    border-radius: 10px;
}

.travel-tips-card {
    background:#4596ab;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.travel-tips-list {
    list-style: none;
    padding: 0;
}
.travel-tips-list li {
    background: #fff;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #D40000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.travel-tips-list li i {
    color: #ff9800;
    font-size: 16px;
}
.travel-tips-list li:hover {
    background: #f8d7da;
    transform: scale(1.05);
}
.featured-packages-card {
    background:#4596ab;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.featured-packages-list {
    list-style: none;
    padding: 0;
}

.featured-packages-list li {
    background: #fff;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #D40000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.featured-packages-list li i {
    color: #ff9800;
    font-size: 16px;
}

.featured-packages-list li:hover {
    background: #f8d7da;
    transform: scale(1.05);
}

.featured-packages-card .btn {
    font-weight: bold;
    background-color: #ff9800;
    color: #fff;
    border: none;
    transition: background 0.3s ease;
}

.featured-packages-card .btn:hover {
    background-color: #e68900;
}
.testimonial-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.testimonial-heading {
    color: #F28A27;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.testimonial-card {
    background: #fff;
    color: #333;
    padding: 30px;
    max-width: 800px;
    margin: auto;
    border-radius: 12px;
    border-left: 6px solid #F28A27;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
}

.testimonial-card h3 {
    margin-top: 15px;
    color: #F28A27;
    font-weight: bold;
    font-size: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #D40000;
    border-radius: 50%;
    padding: 12px;
}
#contact-page {
    background: linear-gradient(135deg, #fff, #f8f8f8);
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin: 30px auto;
    max-width: 1200px;
}

/* Section Title */
.section-title h5 {
    color: #D40000;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 16px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #222;
}

/* Form Styling */
.main-form input,
.main-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 15px;
    background-color: #fff;
    transition: 0.3s ease-in-out;
}
.main-form input:focus,
.main-form textarea:focus {
    border-color: #D40000;
    box-shadow: 0 0 8px rgba(111, 2, 0, 0.15);
    outline: none;
}
textarea {
    resize: none;
}
.main-btn {
    display: inline-block;
    background: #D40000;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.main-btn:hover {
    background: #a80200;
    transform: scale(1.05);
}

/* Contact Address Styling */
.contact-address {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    margin-top: 20px;
}
.contact-heading h5 {
    color: #D40000;
    font-weight: bold;
    margin-bottom: 10px;
}
.contact-heading p {
    font-size: 14px;
    margin-bottom: 20px;
}
.singel-address {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.singel-address .icon {
    background: #D40000;
    color: #fff;
    font-size: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.singel-address .cont p {
    margin: 0;
    font-size: 15px;
    color: #444;
}

/* Map Styling */
#map-section iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media(max-width: 768px) {
    #contact-page {
        padding: 30px 15px;
    }
    .contact-address {
        margin-top: 40px;
    }
}
/* General Theme Colors */
:root {
  --primary-color: #D40000; /* Maroon */
  --secondary-color: #f89c1c; /* Yellow */
  --text-color: #fff;
  --bg-light: #f8f8f8;
}

/* Image Box */
.tour-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.tour-image {
  transition: transform 0.6s ease, filter 0.3s ease;
}

.tour-image-box:hover .tour-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Offer Box */
/* Image Wrapper */
.tour-image-box {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.tour-image {
  transition: transform 0.6s ease, filter 0.3s ease;
}

.tour-image-box:hover .tour-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Full Width Offer Banner */
.offer-banner {
  width: 100%;
  background: var(--primary-color);
  color: var(--text-color);
  text-align: center;
  padding: 12px;
  border-radius: 0 0 10px 10px;
  font-weight: bold;
  animation: fadeInUp 1s ease-in-out;
}

.offer-banner .main-offer {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.offer-banner .sub-offer {
  font-size: 1.1rem;
  color: #f0f0f0;
}

/* Hover Effect on Banner */


/* Heading */
.tour-heading {
  color: var(--primary-color);
  font-weight: bold;
  margin-top: 15px;
}

/* Tabs */
.custom-tabs .nav-link {
  background: var(--primary-color);
  color: var(--text-color);
  margin: 2px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.custom-tabs .nav-link.active,
.custom-tabs .nav-link:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: bold;
}

/* Tab Content */
.custom-tab-content {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}

/* Sidebar Cards */
.custom-card {
  border: none;
  background: var(--primary-color);
  color: var(--text-color);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
}

.custom-card h5 {
  color: var(--secondary-color);
  font-weight: bold;
}

.tips-card ul li {
  list-style: none;
  margin: 10px 0;
}

.tips-card ul li i {
  color: var(--secondary-color);
  margin-right: 8px;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.day-heading {
    background-color: #f89c1c; /* Yellow */
    color: #D40000; /* Maroon text */
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px;
    margin: 25px 0 10px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    animation: slideIn 0.8s ease-in-out;
    text-align: center;
    letter-spacing: 1px;
}

/* Hover Effect */
.day-heading:hover {
    background-color: #D40000; 
    color: #f89c1c;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    transform: scale(1.02);
}

/* Animation */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* For content styling */
.itinerary p, .itinerary ol {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

table#customers {
    margin-bottom: 40px;
}
#customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    background: #f1e2d9;
    text-align: center;
}
#customers tr:nth-child(odd) {
    background: #fff;
}
#customers th:nth-child(1) {
    width: 5%;
}
#customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #0d72c9;
    color: #ffffff;
    font-weight: 500;
}
#customers td, #customers th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
.iter-pack strong, .incl-excl strong {
    width: 100%;
    display: block;
    /* background: #262226; */
    color: #fff;
    padding-left: 10px;
    border-left: 5px solid #ffc107;
    padding: 10px;
    margin-bottom: 13px;
    font-size: 18px;
    margin-top: 30px;
    background-image: linear-gradient( 45deg, #e5910d, #8f5d0e);
}
#customers tr:hover {
    background-color: #e5910d !important;
}
.lower-table tr:nth-child(1) td {
    background: #0d72c9;
    color: #fff;
}
.cost-tabss-ul ul {
    margin-top: 0px !important;
    margin-left: 0px !important;
	padding-left: 0px;
}
.cost-tabss-ul li:before {
    content: "\f0a4";
    font-family: 'FontAwesome';
    left: -30px;
    position: absolute;
    color: #ffffff;
    background: #811f16;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    margin-top: 2px;
}
.singel-publication {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
}
.singel-publication .image{
    position: relative;
}
.singel-publication .image img{
    width: 100%;
}

/* -----------------------------------
   ABOUT SECTION STYLING
----------------------------------- */

.vs-about {
  position: relative;
  padding: 80px 0;
  background: #f8f8f8;
  overflow: hidden;
}

/* Floating Icons */
.about-icon-1,
.about-icon-2 {
  position: absolute;
  opacity: 0.15;
  z-index: 0;
}

.about-icon-1 {
  top: 50px;
  left: 40px;
}

.about-icon-2 {
  bottom: 50px;
  right: 40px;
}

/* Parachute Animation */
@keyframes parachuteMove {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.animate-parachute {
  animation: parachuteMove 5s infinite ease-in-out;
}

/* -----------------------------------
   TITLE AREA
----------------------------------- */

.title-area {
  position: relative;
  z-index: 5;
}

.sec-subtitle {
  color: #D40000;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.sec-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

/* -----------------------------------
   ABOUT CONTENT AREA
----------------------------------- */

.about-info-area {
  padding: 20px;
  z-index: 5;
  position: relative;
}

.about-info p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Services List */
.custom-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.custom-ul li {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.custom-ul li svg {
  color: #D40000;
  flex-shrink: 0;
}

/* -----------------------------------
   BUTTON STYLE
----------------------------------- */

.vs-btn.style6 {
  display: inline-block;
  background: orange;
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.vs-btn.style6:hover {
  background: #D40000;
}

/* -----------------------------------
   ABOUT IMAGE
----------------------------------- */

.about-thumb img {
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */

@media (max-width: 768px) {
  .sec-title {
    font-size: 26px;
  }

  .about-info-area {
    margin-bottom: 30px;
  }

  .about-icon-1,
  .about-icon-2 {
    display: none; /* Hide background icons on small screens */
  }
}

/*================= Train Ticketing Feature Area =================*/

/* Section background & spacing */
.awards-style1 {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.awards-style1 img.awards-icon-1,
.awards-style1 img.awards-icon-2 {
    position: absolute;
    width: 80px;
    height: auto;
}

.awards-style1 img.awards-icon-1 {
    top: 20px;
    left: 50px;
}

.awards-style1 img.awards-icon-2 {
    bottom: 50px;
    right: 50px;
}

/* Heading */
.awards-style1 .title-area {
    margin-bottom: 40px;
}

.awards-style1 .sec-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #e68900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.awards-style1 .sec-title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

/* Google Reviewed Box */
.google-reviewed {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.google-reviewed .left {
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

.google-reviewed .left img {
    width: 40px;
    height: auto;
}

.google-reviewed .left .info strong {
    font-size: 16px;
    display: block;
}

.google-reviewed .left .info span {
    font-size: 12px;
    color: #666;
}

.google-reviewed .right {
    background: #0d72c9;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
}

.google-reviewed .right h4 {
    font-size: 28px;
    margin: 0;
}

.google-reviewed .stars ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.google-reviewed .stars ul li {
    color: #ffd700;
    margin-right: 2px;
}

.google-reviewed .review {
    font-size: 12px;
    margin-top: 5px;
}

/* Feature Boxes */
.award-box-style1 {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px 20px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.award-box-style1:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Icon */
.award-box-style1 .award-box-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #0d72c9;
}

/* Header */
.award-box-style1 .award-box-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.award-box-style1 .award-box-header h6 {
    font-size: 18px;
    font-weight: 600;
}

/* Body */
.award-box-style1 .award-box-body span {
    display: inline-block;
    font-size: 14px;
    color: #4596ab;
    background: #fbbe6b;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Footer */
.award-box-style1 .award-box-footer p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .awards-style1 .sec-title {
        font-size: 28px;
    }

    .award-box-style1 .award-box-header h6 {
        font-size: 16px;
    }

    .google-reviewed {
        flex-direction: column;
        text-align: center;
    }

    .google-reviewed .right {
        align-items: center;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .awards-style1 {
        padding: 60px 0;
    }

    .award-box-style1 {
        padding: 20px 15px 15px 15px;
    }
}
/* ============================================================
   PASSPORT & VISA SECTION – SAME UI STYLE AS PROVIDED SCREENSHOT
   Colors used: Dark Teal + Orange Accent
   ============================================================ */

/* Section Background */
.vs-services-style2 {
    background: #72a838; /* dark teal */
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Floating icons subtle opacity */
.vs-services-style2-icon-1,
.vs-services-style2-icon-2 {
    opacity: 0.25;
    z-index: 0;
}

/* ----------------------------
   TITLE AREA
---------------------------- */
.sec-subtitle {
    color: #E68900;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sec-title {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 800;
    text-transform: capitalize;
}

/* ----------------------------
   LEFT BIG IMAGE
---------------------------- */
.service-thumb-box img {
    border-radius: 22px;
    border: 6px solid #E68900;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* ----------------------------
   NAV TABS – Like screenshot
---------------------------- */
.nav-pills .nav-link {
    background: white; /* dark grey pill */
    color: #E68900;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    padding: 12px 28px;
    margin-right: 12px;
    position: relative;
    transition: all .3s ease;
    border: none;
}

/* Active Tab */
.nav-pills .nav-link.active {
    background: white;
    color: #E68900;
}

.nav-pills .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 60%;
    background: #E68900;
    border-radius: 5px;
}

/* Hover */
.nav-pills .nav-link:hover {
    background: white;
}

/* ----------------------------
   CONTENT AREA
---------------------------- */
.service-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-content-box p {
    color: #cfdadd;
    line-height: 1.7;
    font-size: 16px;
}
a{
  text-decoration: none !important;
}
/* ----------------------------
   JOURNEY BOX
---------------------------- */
.jurny {
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-top: 25px;
    border-left: 5px solid #E68900;
}

.jurny-number {
    color: #E68900;
    font-size: 44px;
    font-weight: 800;
}

.jurny-number em {
    color: #E68900;
    font-style: normal;
    font-weight: bold;
}

.jurny .title {
    color: #E68900;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

/* ----------------------------
   SERVICE IMAGES RIGHT SIDE
---------------------------- */
.service-img {
    margin-top: 25px;
    position: relative;
}

.service-img img:first-child {
    width: 230px;
    border-radius: 16px;
    opacity: 0.9;
}

.service-img img:last-child {
    position: absolute;
    width: 110px;
    right: -30px;
    bottom: -20px;
    opacity: 0.55;
}

/* Hover zoom */
.service-img img {
    transition: all .3s ease;
}

.service-img:hover img:first-child {
    transform: scale(1.05);
}
.carousel-item1 {
    height: 450px!Important;               /* Fixed height for desktop */
    position: relative;
}

.carousel-item1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* Prevents stretching */
}

/* Responsive override for mobile */
@media (max-width: 767px) {
    .carousel-item1 {
        height: 250px;           /* Smaller height for phones */
    }
}

