


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* ✅ Responsive for All Mobile Devices */
@media (max-width: 1024px) { /* Tablets */
    .container {
        width: 95%;
        padding: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) { /* Medium Phones */
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.6rem;
    }

    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) { /* Small Phones */
    h1 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }

    .container {
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 360px) { /* Extra Small Phones */
    h1 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.85rem;
    }

    .container {
        width: 100%;
        padding: 5px;
    }
}

.imgbox {
    width: 49px;
    height: 49px;
    border-radius: 12px; /* Makes it a circular profile */
    overflow: hidden;
    margin-left: 73px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Adds a soft shadow */
    background-color: #fff; /* White background to make the profile image pop */
    border: 2px solid #e0e0e0; /* Adds a subtle border for definition */
}

    .imgbox img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image fills the box without distortion */
    }
.trip-card-title {
    position: absolute;
    bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    top: -2rem;
    color: white;
    z-index: 1;
}

.trip-card-details {
    position: absolute;
    bottom: 15px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: white;
    z-index: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    max-width: 100%;
}*/


/*
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}*/

.partners {
    text-align: center;
/*    padding: 2rem;*/
    background: white;
}

h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 1rem;
}

/* Logo Slider */
.logos {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    margin: auto;
}

.logos-slide {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: slide 10s linear infinite;
}

.logos-slide img {
    width: 100px;
    height: auto;
    filter: grayscale(50%);
    transition: transform 0.3s;
}

.logos-slide img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Keyframe Animation */
@keyframes slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .logos-slide {
        gap: 1rem;
        animation-duration: 15s;
    }

    .logos-slide img {
        width: 80px;
    }
}



body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
/*    background: #f8f9fa;*/
}

.travel-section {
    text-align: center;
    padding: 2rem;
}

h2 {
    font-size: 2rem;
    color: #222;
}

/* Card Styling */
.card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    min-width: 250px;
}

.card:hover {
    transform: scale(1.05);
}

.card h3 {
    color: #0056b3;
    font-size: 1.2rem;
}

.card p {
    color: #555;
    font-size: 1rem;
}

.card img {
    margin-top: 1rem;
    width: 50px;
}

/* Swiper Slider Styles */
.swiper {
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: block;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
}

/* Navigation buttons */
.swiper-button-prev, .swiper-button-next {
    color: #0056b3;
}

.swiper-pagination {
    bottom: 10px;
}

/* Grid Layout for Desktop */
.grid-layout {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    max-width: 1200px;
    margin: auto;
}

@media (min-width: 768px) {
    .swiper {
        display: none;
    }
    .grid-layout {
        display: grid;
    }
}


.background-div {
    min-height: 600px; /* Fixed height of image */
    width: 100%;
    background-image: url('../images/form  (375 x 539 px) (375 x 600 px).png');
    background-size: contain; /* Ensure full image is visible */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.containerform {
    width: 90%;
    max-width: 400px;
   /* Optional: To make form more readable */
    padding: 20px;
    border-radius: 10px;
	align-items:center;
}


    .background-div img {
        max-width: 100%; /* Responsive width */
        height: auto; /* Maintain aspect ratio */
        object-fit: contain; /* Image stretch na ho */
    }



/* ✅ Input Fields */
label {
    display: block;
    margin-bottom: 5px;
}

.input-container {
    position: relative;
    margin-bottom: 15px;
	    width: 310px;
    margin-left: -18px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 10px 35px 10px 30px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: none;
    font-size: 16px;
}

    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="email"]:focus {
        border-color: yellow;
    }

/* ✅ Input Icon */
.iconform {
    position: absolute;
    top: 40%;
    left: 5px;
    transform: translateY(-50%);
    color: black;
    font-size: 16px;
}

/* ✅ Submit Button */
button[type="submit"] {
    background-color: #2755b0;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
}

    button[type="submit"]:hover {
        background-color: #ffc107;
    }

/* ✅ Responsive Adjustments */
@media (max-width: 1024px) { /* Tablets */
    .background-div {
        /*        height: 700px;*/
    }

    .containerform {
        width: 85%;
        /*        padding-top: 80px;*/
    }
}


/* ✅ Responsive Design */
@media (max-width: 768px) {
    .background-div {
        min-height: 500px;
        padding: 1.5rem;
    }

    .containerform {
        width: 95%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .background-div {
        min-height: 450px;
        padding: 1rem;
    }

    .containerform {
        width: 100%;
        padding: 15px;
		
    }
}



@media (max-width: 414px) {
    .background-div {
        min-height: 450px;
        padding: 1rem;
    }

    .containerform {
        width: 100%;
        padding: 15px;
		margin-left:8px;
		
    }
}


.containerform {
    width: 95%;
    /*        padding-top: 40px;*/
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    font-size: 14px;
    padding: 8px 30px 8px 25px;
}



@media (max-width: 360px) { /* Extra Small Phones */
    .background-div {
        height: auto;
        padding: 1.5rem 1rem;
    }

    .containerform {
        width: 100%;
        /*        padding-top: 30px;*/
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        font-size: 13px;
        padding: 8px 25px 8px 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --container: 112rem;
  --m-auto: 0 auto;
}

/* .divone {
  font-size: 62.5%;
  scroll-behavior: smooth;
  
} 

 .divtwo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  height: 100vh; 
  display: flex;
  align-items: center;
  justify-content: center;
}  */

.containerswip {
  max-width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; /* Center align the Swiper */
  align-items: center; /* Optional: Vertical alignment */
  overflow: hidden; /* Prevent overflow */
}

.swiper {
  position: relative;
  width: 287px; /* New width */
  height: 389px;
  margin: 0 auto;
  transition: width 0.3s ease; /* Smooth transition on width change */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide {
  border-radius: 18px;
  overflow: hidden; /* Ensure no content spills outside the rounded corners */
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}



.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* Transparent black background */
  color: #fff; /* White text color */
  padding: 10px;
  text-align: center;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.card-info h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.card-info p {
  margin: 5px 0 0;
  font-size: 1.4rem;
  font-weight: 400;
}

/* .heading {
  padding-top: 3rem;
  text-align: center;
} */


/* rating section */
/* Review Section Styles */


    /* mobile footer */
       /* Mobile Footer */
   .mobile-footer {
       display: none; /* Hide by default */
       position: fixed;
       bottom: 0;
       left: 0;
       right: 0;
       background-color: #fff;
       border-top: 1px solid #ddd;
       display: flex;
       justify-content: space-around;
       align-items: center;
       padding: 0.5rem 0;
       z-index: 1000;
       box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
   }

   .footer-icon {
       text-decoration: none;
       color: #555;
       font-size: 0.75rem;
       text-align: center;
       display: flex;
       flex-direction: column;
       align-items: center;
   }

       .footer-icon img {
           width: 24px;
           height: 24px;
           margin-bottom: 0.25rem;
           transition: transform 0.2s ease;
       }

       .footer-icon:hover img {
           transform: scale(1.2);
       }

       .footer-icon span {
           font-size: 0.75rem;
           font-weight: 500;
       }

   /* Mobile-Only Visibility */
   @media (max-width: 767px) {
       .mobile-footer {
           display: flex; /* Show footer only on mobile */
       }
   }

   @media (min-width: 767px) {
       .mobile-footer {
           display: none; /* Show footer only on mobile */
       }
   }

 /*        footer*/
/* General Footer Styling */

footer {
    background: linear-gradient(180deg, #e0e7ff, #f9f9f9); /* Light gradient for a cleaner look */
    padding: 60px 20px; /* Increased padding for more space */
    font-family: 'Poppins', sans-serif;
    color: #2563eb; /* Vibrant blue for text */
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

footer::before,
footer::after {
    content: '';
    position: absolute;
    background: rgba(37, 99, 235, 0.15); /* Slightly more visible light blue circles */
    border-radius: 50%;
    z-index: 0;
}

footer::before {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -100px;
    animation: expandCircle 6s infinite ease-in-out; /* Added animation for dynamic effect */
}

footer::after {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -150px;
    animation: expandCircle 6s infinite ease-in-out reverse;
}

footer .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

footer .footer-column {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    color: #333;
    animation: slideUp 1s ease-in-out;
    transition: transform 0.3s ease;
}

footer .footer-column:hover {
    transform: translateY(-5px); /* Slight hover effect to lift column */
}

footer h4 {
    font-size: 1.5rem;
    color: #1d4ed8;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase; /* Uppercase for a bolder look */
}

footer h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    margin-top: 5px;
    border-radius: 10px;
    animation: growLine 1s ease-in-out;
}

footer a {
    font-size: 1rem;
    color: #555;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #1d4ed8;
    transform: translateX(10px) scale(1.1); /* Added scale to make hover more interactive */
    font-weight: 600;
}

footer .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    background: linear-gradient(90deg, #2563eb, #1d4ed8); /* Gradient for footer bottom */
    padding: 15px;
    border-radius: 10px; /* Rounded corners for a modern feel */
    color: white;
    animation: fadeIn 1.2s ease-in-out;
}

/* Responsive Layout */
@media (max-width: 768px) {
    footer .footer-column {
        flex: 1 1 calc(50% - 20px);
    }

    footer .footer-bottom {
        margin-bottom: 50px;
    }

    .rounded-3 {
        margin-bottom: 100px;
    }
}

@media (max-width: 480px) {
    footer .footer-column {
        flex: 1 1 100%;
    }
}

/* Animations */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes growLine {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}

@keyframes expandCircle {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

/* Headerar */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

        /* Sticky Header */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        /* Left Section: Logo */
        .left-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2563eb;
            text-decoration: none;
        }

        /* Center Section: Navigation */
        .nav-menu {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

        .nav-item {
            position: relative;
            font-size: 1rem;
            color: #333;
            font-weight: 500;
            cursor: pointer;
        }

        .nav-item:hover {
            color: #2563eb;
        }

        .nav-item::after {
            content: '▼';
            font-size: 0.8rem;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .nav-item:hover::after {
            transform: rotate(180deg);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 10px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: #f0f0f0;
        }

        /* Right Section: Icons and Login Button */
        .right-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .icon {
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }

        .icon:hover {
            color: #2563eb;
        }

        .divider {
            width: 1px;
            height: 40px;
            background-color: #ddd;
        }

        .login-btn {
            padding: 8px 16px;
            background-color: #2563eb;
            color: white;
            font-size: 1rem;
            font-weight: 500;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .login-btn:hover {
            background-color: #1d4ed8;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .login-btn {
                display: none;
            }

            .mobile-toggle {
                display: block;
                font-size: 1.5rem;
                color: #333;
                cursor: pointer;
            }
        }

        @media (min-width: 769px) {
            .mobile-toggle {
                display: none;
            }
        }

        /* toggel */
        

        /* mobile menue */


        /* Funky Hamburger Icon */
.menu-toggle {
    display: flex;
    flex-direction: column-reverse; /* Reverse alignment of bars */
    justify-content: space-between;
    width: 40px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 10000;
    transition: transform 0.3s ease; /* Smooth scaling effect */
    margin-right: 20px;
    margin-bottom: 9px;
}

.menu-toggle:hover {
  transform: scale(1.1) rotate(-3deg); /* Funky zoom and slight tilt on hover */
}

.menu-toggle .bar {
  height: 4px;
  background-color: black; /* Classic black color */
  border-radius: 3px;
  transition: transform 0.4s ease, width 0.4s ease, opacity 0.4s ease;
}

/* Bars with reversed varying widths */
.menu-toggle .bar:nth-child(1) {
  width: 80%; /* Medium bar */
}
.menu-toggle .bar:nth-child(2) {
  width: 100%; /* Full-length bar */
}
.menu-toggle .bar:nth-child(3) {
  width: 60%; /* Short bar */
}

/* Hover effects */
.menu-toggle:hover .bar:nth-child(1) {
  transform: translateX(-8px) rotate(-5deg); /* Opposite tilt and shift */
}
.menu-toggle:hover .bar:nth-child(2) {
  transform: scale(1.1) rotate(5deg); /* Scale and slight tilt */
}
.menu-toggle:hover .bar:nth-child(3) {
  transform: translateX(8px) rotate(10deg); /* Tilt and shift */
}

/* Active state animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-8px, -8px); /* Cross top */
  width: 100%; /* Uniform width for cross */
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0; /* Middle bar disappears */
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-8px, 8px); /* Cross bottom */
  width: 100%; /* Uniform width for cross */
}

/* Hide Toggle Button for Larger Screens */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}


/* Mobile Header with Logo, Contact, and Close Button */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  position: fixed;
}

.mobile-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-contact {
  flex-grow: 1;
  text-align: center;
}

.contact-number {
  font-size: 16px;
  color: #1e40af;
  text-decoration: none;
  font-weight: bold;
}

.contact-number:hover {
  color: #2563eb;
}

.close {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 10000;
}

.close-icon {
  width: 25px;
  height: 3px;
  background-color: black;
  border-radius: 2px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.mobile-menu.active .close-icon:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active .close-icon:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  transition: left 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);

}

.mobile-menu.active {
  left: 0;
  overflow: hidden;
}

/* Header Section */
.mobile-menu .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  
}

.mobile-menu .header .logo {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.mobile-menu .header .menu-toggle {
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

/* Menu Items */
.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 40px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.mobile-nav-menu li {
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-menu li a {
  font-size: 18px;
/*  font-weight: bold;*/
  color: #333;
  text-decoration: none;
  display: block;
  padding: 12px 25px;
/*  background: #f9f9f9;*/
  border-radius: 10px;
/*  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-menu li a:hover {
  background-color: #2563eb;
  color: #ffffff;
  transform: scale(1.05);
}

/* Login/Register Section */
.auth-box {
    text-align: center;
    padding: 15px 20px;
    opacity: 0; /* Initially hidden */
    transform: translateY(10px); /* Slightly off-screen */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Show the Login/Register Section when Menu is Active */
.mobile-menu.active .auth-box {
    opacity: 1;
    transform: translateY(0); /* Slide into place */
}

/* Login/Register Buttons */
.auth-link {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    margin: 5px;
    padding: 10px 25px;
    background: #2563eb; /* Blue Background */
    border-radius: 8px;
    border: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .auth-link:hover {
        background: #1e40af; /* Darker Blue */
        transform: scale(1.05);
    }


/* Smooth Fade-in Effect for Menu */
.mobile-menu.active {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hide the Toggle Button on Laptops and Larger Screens */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

    /* Video Section */
.video-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  overflow: hidden;

}

/* Background Video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the entire section */
}

/* * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
*/
.SearchDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56vh;
    /* background: rgba(0, 0, 0, 0.7); */
    /* background-blend-mode: darken; */
    /* background-image: url('https://via.placeholder.com/1920x1080'); */
    background-size: cover;
    background-position: center;
}

.content {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 2rem;
    border-radius: 10px;
}

    .content h1 {
        font-size: 2.5rem; /* Default for large screens */
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    }

/* Responsive Font Size */
@media (max-width: 1200px) {
    .content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .content h1 {
        font-size: 1.63rem;
    }
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 1.63rem;
    }
}

@media (max-width: 576px) {
    .content h1 {
        font-size: 1.63rem;
    }
}

@media (max-width: 400px) {
    .content h1 {
        font-size: 1.45rem;
    }
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

    .tabs button {
        background: linear-gradient(45deg, #6a11cb, #2575fc);
        color: #fff;
        padding: 0.8rem 1.5rem;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .tabs button:hover {
            transform: translateY(-3px);
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
        }

        .tabs button.active {
            background: linear-gradient(45deg, #ff512f, #dd2476);
        }



/* Basic Styling for the button */
.theme-scrolltop-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff; /* Keeping the same color */
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    opacity: 0.9; /* Slightly transparent for a modern feel */
}

/* Hover effects */
.theme-scrolltop-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.1) translateY(-5px); /* Slightly enlarge and lift */
    opacity: 1; /* Make fully opaque on hover */
}

/* Active state (when the button is clicked) */
.theme-scrolltop-btn:active {
    background-color: #004085;
    transform: scale(0.95); /* Shrinks the button when pressed */
}

/* Icon style */
.theme-scrolltop-btn i {
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Rotate the icon and change color on hover */
.theme-scrolltop-btn:hover i {
    transform: rotate(360 deg); /* Rotates icon by 45 degrees */
    color: #ffffff; /* Icon turns white */
}

/* Hide button initially (visible on scroll) */
.theme-scrolltop-btn.hidden {
    display: none;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .theme-scrolltop-btn {
        padding: 12px;
        font-size: 20px;
        bottom: 80px; /* Adjust bottom position */
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15); /* Slightly increase size */
    }
    100% {
        transform: scale(1);
    }
}

/* Apply pulse animation */
.theme-scrolltop-btn {
    animation: pulse 2s infinite; /* Continually pulse */
}


/* Destination */

.destination-heading {
     /*        text-align: center;*/
     font-size: 32px;
     font-weight: bold;
     color: #333;
     margin-bottom: 20px;
 }




 /* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

 /* Container Styling - Mobile-Only */
 .containercimg {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     background: white;
     padding: 2rem 1.25rem;
     padding-top: 2rem; /* Adjusted padding for top */
     padding-bottom: 0rem;
 }

 /* Mobile Specific Styling */
 @media (max-width: 767px) {
     /* Ensuring that only visible on mobile screens */
     .containercimg {
         display: block;
     }
     /* Scrollable Horizontal Menu */
     .scrollbar-hidden {
         display: flex;
         flex-direction: row;
         gap: 1rem;
         overflow-x: auto;
         padding: 2px;
         scroll-behavior: smooth;
     }
         /* Hide scrollbar */
         .scrollbar-hidden::-webkit-scrollbar {
             display: none;
         }
     /* Styling each category item */
     .flex {
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 0.5rem;
         padding: 0.125rem;
         min-width: 80px;
         justify-content: center;
     }
     /* Circular Image */
     .rounded-full {
         height: 4rem;
         width: 4rem;
         border-radius: 50%;
         overflow: hidden;
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
         transition: transform 0.3s ease;
     }

         .rounded-full img {
             height: 100%;
             width: 100%;
             object-fit: cover;
             transition: transform 0.3s ease;
         }
     /* Hover effect for images */
     .flex:hover .rounded-full img {
         transform: scale(1.1); /* Slight zoom effect */
     }
     /* Text below the image */
     .btn-tab {
         font-size: 0.625rem;
         font-weight: 500;
         text-align: center;
         line-height: 1.1;
     }
         /* Adjusting the button text on hover for better visibility */
         .btn-tab:hover {
             color: #007bff;
         }
 }
 /* For Larger Screens (Laptop/Tablet and Above) */
 @media (min-width: 768px) {
     /* Hide the mobile container on larger screens */
     .containercimg {
         display: none;
     }
 }

/* Explore */
/* Explore Section */
/* Explore Section */
.explore-section {
    padding: 13px 20px;
    /* background-color: #f9f9f9;
    text-align: center; */
}

/* Heading for the Explore Section */
/* .explore-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
} */

/* Card Container */
.explore-card-container {
    display: flex; /* Use flexbox to align cards horizontally */
    gap: 20px;
    overflow-x: auto; /* Enable horizontal scrolling */
    padding-bottom: 10px; /* Add some padding at the bottom */
    scroll-snap-type: x mandatory; /* Enable smooth scroll snapping */
}

/* Individual Card */
.explore-card {
    flex: 0 0 auto; /* Prevent the cards from shrinking and allow horizontal scroll */
    width: 180px;  /* Reduced width */
    height: 220px; /* Reduced height */
    border-radius: 12px; /* Rounded corners */
    background-color: #F2FDFF; /* Light background color */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    position: relative; /* Positioning for title */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Align content to the bottom */
    color: #333; /* Title text color */
    text-align: center;
}

/* Image inside the card */
.explore-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fully covers the card */
    padding: 12px; /* Increased padding on all sides */
    border-radius: 26px; /* Border radius to round image edges */
}

/* Title under the image */
.explore-card-title {
 
    font-weight: bold;
    margin-top: 5px; /* Add some space between image and title */
    z-index: 2;
}

/* Scrollbar Styling */
.explore-card-container::-webkit-scrollbar {
    height: 8px; /* Set the height for horizontal scrollbar */
}

.explore-card-container::-webkit-scrollbar-thumb {
    background-color: #007bff; /* Set color for scrollbar thumb */
    border-radius: 10px;
}

/* Hide Explore Section on larger screens */
@media (min-width: 769px) {
    .explore-section {
        display: none; /* Hide the explore section on larger screens */
    }
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .explore-card-container {
        justify-content: flex-start; /* Align cards to the left on smaller screens */
    }

    /* Hide the scrollbar on mobile */
    .explore-card-container::-webkit-scrollbar {
        display: none; /* Hide the scrollbar completely */
    }
}

/* Basic Styles for Upcoming Trips */
.upcoming-trips-section {
    /* padding: 40px 20px; */
    /* text-align: center;
    background-color: #f5f5f5; */
    padding: 13px 20px;
}

/* Heading */
/* .section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
} */

/* Tab styles */
.tabs-container {
    overflow-x: auto; /* Enable horizontal scrolling for tabs */
    /* margin-bottom: 30px; */
}

.tabs {
    display: flex;
    gap: 15px;
    padding: 10px;
}

.tab {
    padding: 10px 20px;
  
    font-weight: bold;
    margin: 0;
    cursor: pointer;
    background-color: #fff;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tab:hover {
    transform: scale(1.05);
}

.tab.active {
    background-color: #F2FDFF; /* Light blue for active tab */
}

/* Card container */
.trip-cards-container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: scroll; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Enable smooth scroll snapping */
    padding: 20px 0; /* Add vertical padding */
    width: 100%; /* Ensure full width */
}

/* Individual Card */
.trip-card {
    flex: 0 0 auto; /* Prevent the cards from shrinking and allow horizontal scroll */
    width: 100%; /* Card takes full width of the container */
    max-width: 366px; 
    height: 533px; /* Set a fixed height for the card */
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    scroll-snap-align: start; /* Snap the card to the start position */
    transition: transform 0.3s ease;
}

/* Image in the card */
.trip-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
}

/* Card details */
.trip-card-details {
    position: absolute;
    bottom: 15px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: white;
    z-index: 1;
}

    .trip-card-details i {
        margin: 4px -3px;
    }

/* Card Title */
.trip-card-title {
    position: absolute;
    bottom: 10px;
   
    font-size: 14px;
    font-weight: bold;
    top:-2rem;
    color: white;
    z-index: 1;
}

/* Card Description */
.trip-card-description {
    font-size: 14px;
    color: white;
    z-index: 1;
}

/* Hide scrollbar for neatness (optional) */
.trip-cards-container::-webkit-scrollbar {
    display: none;
}

/* International Trips */
/* International Trips Section */
.section-heading {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-align: center; /* Center align */
    width: 100%; /* Ensure it takes full width */
}


    /* Subtle Underline Effect */
/*    .section-heading::after {
        content: "";
        display: block;
        width: 50px;
        height: 2px;
        background: #333;
        margin: 5px auto 0;
        border-radius: 10px;
        opacity: 0.8;
    }*/

/* 🔹 Responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 18px;
    }
}











.section-heading {
    font-size: 18px;
/*    font-weight: bold;*/
    /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);*/ /* Optional: Adds a shadow to the heading for better visibility */
/*    margin: 0;*/
    margin-bottom:1rem;
}




/* Default logo size (for mobile) */
.logo-img {
    width: 150px; /* Set the mobile size */
    margin-bottom: 25px;
    margin-left: 10px;

}

/* Logo size for laptop and larger screens */
@media (min-width: 1024px) {
  .logo-img {
    width: 225px; /* Set the desktop/laptop size */
  }
}




