 :root{
      --accent:#ff6b35;
      --accent-2:#ff9f1c;
      --muted:#6c757d;
      --dark:#0b0b0b;
      --primary-red: #e44d3d; /* Used for the "Apply Now" button and borders */
    --primary-blue: #007bff; /* A standard blue, or match the screenshot's secondary color */
    --secondary-text: #6c757d;
    }
    body{
      font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
      color:#222;
      line-height:1.6;
      scroll-behavior:smooth;
      
    }
    
    
    /* ===== MOBILE VIEW FIXES ===== */

/* Prevent horizontal scroll / extra space */
html, body {
  width: 100%;
  overflow-x: hidden !important;
}

/* Make sure all elements fit within the screen */
* {
  box-sizing: border-box;
  max-width: 100%;
}

/* Fix possible layout overflow from positioned elements */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Specific fix for image-group and ovals (these often cause the issue) */
.image-group {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.image-oval {
  position: absolute;
  overflow: hidden;
}

/* Remove accidental Hindi characters or broken comments */
.image-group {
  height: 300px;
}


/*------end----------------*/
    
    
    /* Navbar */
    .navbar-brand{ font-weight:700; letter-spacing:0.4px; color:var(--accent) !important; }
    .btn-accent{ background:linear-gradient(90deg,var(--accent),var(--accent-2)); border:none; color:#fff !important; border-radius:50px; padding:10px 20px !important; text-decoration:none !important; }
    .btn-outline-accent{ border-color:var(--accent); color:#fff !important; }
    /* Hero */
    .hero {
      min-height:90vh;
      display:flex;
      align-items:center;
      position:relative;
      color:#fff;
      overflow:hidden;
    }
    
    .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
            color: #ff9820 !important;
    }
    
    .nav-link{
        color: #767676 !important;
        margin-right: 20px;
    }
    
    .nav-link:hover{
        color: #767676;
    }
    
    
    
    /* Navbar "Consult Now" Button */
.navbar .btn-accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.35);
}

.navbar .btn-accent:focus {
  box-shadow: 0 0 0 0.3rem rgba(255,107,53,0.4);
}


/* Remove Bootstrap default icon */
.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #ff6600; /* line color */
  transition: all 0.3s ease-in-out;
}

/* Create top and bottom bars */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #ff6600; /* same color */
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

/* When navbar is expanded (active state) */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}




/* Responsive adjustment */
@media (max-width: 991px) {
  .navbar .btn-accent {
    width: 100%;
    text-align: center;
  }
}



/*.mega-menu .dropdown-menu {*/
/*  width: 600px;*/
/*  border: none;*/
/*  border-radius: 10px;*/
/*  top: 100%;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  padding: 1.5rem;*/
/*  background: #fff;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.mega-menu-content h6 {*/
/*  color: #333;*/
/*  font-size: 16px;*/
/*}*/

/*.mega-menu-content ul li {*/
/*  margin-bottom: 8px;*/
/*}*/

/*.mega-menu-content ul li a {*/
/*  color: #555;*/
/*  text-decoration: none;*/
/*  font-size: 15px;*/
/*  transition: 0.3s;*/
/*}*/

/*.mega-menu-content ul li a:hover {*/
  color: #ff6600; /* Accent color */
/*}*/

/* Show Mega Menu on hover (desktop) */
/*@media (min-width: 992px) {*/
/*  .mega-menu:hover .dropdown-menu {*/
/*    display: block;*/
/*  }*/
/*}*/

/* Adjust for mobile */
/*@media (max-width: 991px) {*/
/*  .mega-menu .dropdown-menu {*/
/*    width: 100%;*/
/*    left: 0;*/
/*    transform: none;*/
/*  }*/
/*}*/


    
    
    
    
    .hero-overlay{
      position:absolute; inset:0; background:linear-gradient(180deg, rgba(3,7,18,0.45), rgba(3,7,18,0.55)); z-index:1;
    }
    .hero .container{ z-index:2; position:relative; }
    .hero .headline{ font-size:clamp(2rem,4vw,3.2rem); font-weight:700; text-shadow:0 6px 24px rgba(0,0,0,0.45); }
    .hero .sub{ font-size:1.1rem; margin-top:10px; color: #f6f6f6; text-shadow:0 4px 16px rgba(0,0,0,0.35); }
    .hero-cta > * { margin-right:10px; }
    /* Services */
    .service-card{ border:0; transition:transform .35s ease, box-shadow .35s ease; border-radius:12px; }
    .service-card:hover{ transform:translateY(-8px); box-shadow: 0 14px 40px rgba(19,19,19,0.08); }
    .why-item{ background:#fff; border-radius:10px; padding:20px; box-shadow:0 6px 18px rgba(10,10,10,0.04); }
    /* Destinations grid */
    .dest-card{ border-radius:12px; overflow:hidden; position:relative; }
    .dest-card img{ width:100%; height:220px; object-fit:cover; display:block; transition:transform .5s ease; }
    .dest-card:hover img{ transform:scale(1.05); }
    /* Testimonials */
    .testimonial{ background:#fff; border-radius:12px; padding:18px; box-shadow:0 8px 28px rgba(13,13,13,0.06); }
    /* Footer */
    footer{ background:#0b0b0b; color:#bfbfbf; padding:48px 0; }
    footer a{ color:#fff; text-decoration:none; }
    /* small screens tweaks */
    @media(max-width:767px){
      .hero{ padding-top:56px; }
    }
    /* Accessibility focus */
    a:focus, button:focus, input:focus, textarea:focus { outline:3px solid rgba(255,107,53,0.18); outline-offset:2px; }
    
    /* faq css */
    
    /* FAQ Section */
#faq {
  font-family: 'Poppins', sans-serif;
}

#faq h2.fw-bold {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark);
}

#faq .accordion-button {
  background-color: #fff;
  color: var(--dark);
  font-weight: 500;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 1rem 1.25rem;
  transition: all 0.35s ease;
}

#faq .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255,107,53,0.25);
}

#faq .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
}

#faq .accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

#faq .accordion-button::after {
  font-size: 1.25rem;
  transition: transform 0.35s ease;
}

#faq .accordion-body {
  background: #fff;
  padding: 1rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.04);
}

#faq .accordion-item + .accordion-item {
  margin-top: 1rem;
}

#faq .accordion-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* AOS Fade Effects */
[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-50px);
  transition-property: opacity, transform;
  transition-duration: 900ms;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

    
  /* Custom CSS for the Accreditation Section */
.accreditations-section {
    background-color: #f0f8ff; /* Light background for contrast */
}

/* 1. Styling the Text Block to look like an arrow */
.accreditation-text-box {
    /* The deep blue color */
    background-color:#182c65;
    padding: 1.5rem 1rem 1.5rem 1.5rem; /* Padding inside the blue box */
    position: relative; /* Needed for the arrow pseudo-element */
    height: 100%; /* Ensure it takes full height of the column */
    display: flex;
    align-items: center; /* Vertically center the text */
}

/* Creating the Arrow Shape (The right-pointing tip) */
.accreditation-text-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: -25px; /* Adjust this value to change the arrow size */
    width: 0;
    height: 0;
    /* Creating the arrow tip using transparent borders */
    border-top: 30px solid transparent; /* Half the height of the container or more */
    border-bottom: 30px solid transparent;
    border-left: 25px solid #182c65; /* Arrow color must match background-color */
    z-index: 1; /* Keep it above the logos */
}

/* 2. Styling the Logos */
.logo-block {
    /* Adding some padding to keep logos away from the arrow tip on the left */
    padding-left: 30px !important; 
}

/* Individual list items for spacing */
.accreditation-item {
    margin: 0.5rem 1rem; /* Space around each logo */
    /* Flex properties to handle logo sizing */
    flex-basis: auto; /* Allow items to naturally size */
    max-width: 120px; /* Maximum size for the logos */
}

.accreditation-logo {
    /* Ensure all logos are displayed as blocks and maintain aspect ratio */
    display: block;
    width: 100%;
    height: auto;
}

/* 3. Responsiveness for small screens (adjusting the arrow and layout) */
@media (max-width: 767.98px) {
    /* On smaller screens, the text block takes the full width */
    .accreditation-text-box {
        padding: 1rem;
        /* Remove the arrow shape on small screens for better layout */
        border-bottom-right-radius: 5px; 
        border-top-right-radius: 5px; 
        margin-bottom: 1rem; /* Space below the text block */
    }
    
    .accreditation-text-box::after {
        content: none; /* Hide the arrow */
    }
    
    .logo-block {
        padding: 0 !important; /* Remove the extra left padding */
        /* Center the logos below the text */
        justify-content: center !important; 
    }
}  
    
    
    
    /* Tour Packages Section */
#packages {
  font-family: 'Poppins', sans-serif;
}

#packages h2.fw-bold {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark);
}

.tour-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover img {
  transform: scale(1.1);
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.tour-card .card-body {
  padding: 1.5rem;
  text-align: center;
}

.tour-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
}

.tour-card .card-text {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0.75rem 0 1.25rem 0;
}

.btn-tour {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-tour:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.35);
}

.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50px;
  padding: 10px 20px !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
}




 /* Fixed button styling */
.fixed-enquiry-btn {
      position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    background-color: #ff5722;
    color: #fff;
    padding: 18px 9px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}

.fixed-enquiry-btn:hover {
    background-color: #e64a19; /* Darker shade for hover */
    text-decoration: none;
    color: #fff;
}

/* Optional icon size - placed below the text in vertical mode */
.fixed-enquiry-btn i {
    font-size: 18px;
    margin-top: 5px; /* Add a slight margin above the icon to space it from text */
}
    
    
    
/* Banner Container Styling */
.banner-container {
    background-color:#f9f9f9;
    background-repeat: no-repeat;
    background-size: 
    color: var(--text-light);
    padding: 50px 0;
    position: relative;
    overflow: hidden; */
}

/* --- Image Oval Styling --- */

.image-group {
    display: flex;
    align-items: center;
    position: relative;
    height: 300px; ं */
}

.exciting-tours-img{
    width:88%;
}

@media (max-width: 767.98px) {
    .exciting-tours-img {
    width:100% !important;
}

}

.image-oval {
    position: absolute;

    width: 150px;
    height: 250px;
    border-radius: 50% / 60% 60% 40% 40%;
    overflow: hidden;
    border: 5px solid #fff;/
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.image-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* छवि को अंडाकार के अंदर भरने के लिए */
}

.left-img {
    left: 0;
    z-index: 2; /* थोड़ा आगे */
    transform: rotate(-5deg);
}

.center-img {
    left: 100px; /* ओवरलैप करने के लिए */
    z-index: 3; /* सबसे आगे */
    width: 180px; /* केंद्र वाली छवि को बड़ा करें */
    height: 300px;
    border-radius: 50% / 60% 60% 40% 40%; /* केंद्र वाली छवि के लिए अंडाकार आकार */
}

.right-img {
    left: 250px; /* ओवरलैप करने के लिए */
    z-index: 2; /* थोड़ा आगे */
    transform: rotate(5deg);
}

/* Responsive adjustments for images */
@media (max-width: 991px) {
    .image-group {
        height: 250px;
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .image-oval {
        width: 100px;
        height: 180px;
    }

    .center-img {
        width: 130px;
        height: 220px;
        left: 50%;
        transform: translateX(-50%);
    }

    .left-img {
        left: calc(50% - 130px);
        transform: rotate(-5deg);
    }

    .right-img {
        left: calc(50% + 50px);
        transform: rotate(5deg);
    }
}

/* --- Text and Button Styling --- */

.explore-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.exciting-tour-text {
    font-size: 3.5rem; 
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.tour-btn {
    background-color: transparent;
    border: 1px solid #cccccc;
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px; 
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.tour-btn:hover {
    background-color: var(--text-light);
    color: var(--primary-red);
}

.call-now-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 900;
    margin-left: 5px;
}

.btn-expert {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
text-decoration: none;
}

.btn-expert:hover {
    background-color: #666;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .exciting-tour-text {
        font-size: 2.5rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
}    
    
    /* whats app float icon */ 
    
   .float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
       
   }

.my-float {
    margin-top: 16px; /* आइकन को बीच में लाने के लिए */
} 
    
    
    
    
    
/*services page style*/






/* ===== HERO SECTION STYLING ===== */
.hero-common {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?w=1600&q=80'); /* Replace with your services-related image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Overlay for better text visibility */
.hero-common::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Center content */
.herocommon-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 10px 20px !important;
}

.herocommon-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease forwards;
}

.herocommon-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease forwards;
}

.btn-custom {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 30px;
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s ease forwards;
}

.btn-custom:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* ===== Animations ===== */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}




/* ===== Service Cards ===== */
.servicepage-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 30px 20px;
  text-align: center;
}
.servicepage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.servicepage-card i {
  font-size: 45px;
  color: #ff6b35;
  margin-bottom: 15px;
}
.servicepage-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 10px;
}
.servicepage-card p {
  color: #555;
  font-size: 0.95rem;
}

/* ===== Detailed Service Blocks ===== */
.service-detail {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px 30px;
  margin-bottom: 50px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
}
.service-detail:hover {
  transform: scale(1.02);
}
.service-detail h3 {
  color: #1e3c72;
  font-weight: 700;
}
.service-detail p {
  color: #555;
  font-size: 1rem;
}
.service-detail ul {
  list-style: none;
  padding-left: 0;
}
.service-detail ul li {
  padding: 6px 0;
}
.service-detail ul li::before {
  content: "✔";
  color: #007bff;
  margin-right: 10px;
}
.btn-custom {
  background-color: #007bff;
  color: white;
  border-radius: 25px;
  padding: 10px 25px;
  border: none;
  transition: all 0.3s ease;
}
.btn-custom:hover {
  background-color: #0056b3;
}

/* ===== Animation ===== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fadeInUp {
  animation: fadeInUp 1s ease both;
}
    
    
    
 /*About Us Page css*/
 
 
    /* Custom shadow to mimic the screenshot's subtle lift effect */
.custom-card-shadow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-card-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.custom-image-shadow img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem; /* Match Bootstrap rounded-3 */
}
    
    
/* Apply Now Button style */
.btn-warning {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
}

.custom-btn-hover:hover {
    background-color: #c93b2e !important; /* Slightly darker on hover */
    transform: translateY(-2px);
    transition: all 0.3s;
}

/* Happy Customer Card Background */
.custom-happy-customer-bg {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient for the "Happy Customers" stat */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}    
    
  /* Keyframes for a smooth fade-in from bottom */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Keyframes for a gentle zoom-in (for cards) */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.9, 0.9, 0.9);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* Apply the animations to classes */
.animate__fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__zoomIn {
    animation-name: zoomIn;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* Example: Apply animation to the IATA section */
.animate__slideInLeft {
    animation-name: slideInLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}  
    
    
    