body {
    font-family: 'League Spartan', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(14, 50, 59);
}
.logo-overlay {
    position: absolute; /* Position it relative to the hero section */
    top: 40%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Perfect centering */
    z-index: 10; /* Ensure it overlays the carousel images */
    text-align: center; /* Center the logo inside the div */
    animation: fadeIn 1.5s ease-in-out; /* Subtle fade-in animation */
}




.logo-overlay img {
    max-width: 500px; /* Set default size for larger screens */
    height: auto; /* Maintain aspect ratio */
   
    padding: 10px; /* Space around the logo */
  
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

/* Hover Animation */
.logo-overlay img:hover {
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

/* Fade-In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%); /* Slight offset for a dynamic effect */
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .logo-overlay img {
        max-width: 500px; /* Adjust size for tablets */
    }
}

@media (max-width: 480px) {
    .logo-overlay img {
        max-width: 200px; /* Further reduce size for mobile devices */
    }
}



/* Navbar Styling */
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.8); /* Light background for visibility */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle depth */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index:1000;
    margin-bottom: 80px;
}

/* Navbar Header */
.navbar-header {
    display: flex;
    justify-content: space-between; /* Align logo on the left, icons on the right */
    align-items: center;
    width: 100%;
    margin-bottom: 15px; /* Space below the header */
}

/* Logo Styling */
.logo .brand-logo {
    height: 50px; /* Set logo size */
    max-width: 150px;
    object-fit: contain; /* Maintain aspect ratio */
}

/* Account Options Button */
.account-options {
    display: flex; /* Flex layout for icons */
    justify-content: center; /* Center-align icons within the button */
    align-items: center; /* Vertically align icons */
    gap: 15px; /* Space between icons */
    background: rgb(14, 50, 59); /* Button background color */
    color: white; /* Icon color */
    border: none; /* Remove border */
    border-radius: 30px; /* Smooth rounded edges */
    padding: 10px 10px; /* Add padding for the button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    cursor: pointer; /* Pointer cursor for interactivity */
    transition: background 0.3s ease, transform 0.3s ease; /* Smooth transition effects */
    position: absolute; /* Allow flexible placement */
    right: 20px; /* Align button to the right of the navbar */
    top: 50%; /* Vertically center in navbar on large screens */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
}



/* Individual Icons */
.account-options .icon {
    font-size: 1.2rem; /* Icon size */
    color: white; /* Icon color inside button */
    transition: transform 0.3s ease; /* Smooth transition on hover */
}

.account-options .icon:hover {
    transform: scale(1.1); /* Slight enlargement of individual icons */
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
    .account-options {
        top: 10px; /* Move button to top-right of navbar */
        transform: none; /* Remove vertical centering */
        gap: 6px; /* Adjust spacing for smaller screens */
        padding: 6px 10px; /* Reduce padding */
        margin-bottom: 20px;
    }

    .account-options .icon {
        font-size: 1rem; /* Smaller icon size for compact layout */
    }
}


.icon {
    font-size: 1.5rem; /* Icon size */
    color: rgb(14, 50, 59);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
    cursor: pointer;
}

.icon:hover {
    transform: scale(1.2); /* Enlarge slightly on hover */
    color: #007bff; /* Change color on hover */
}

/* Menu Section Styling */
.menu {
    display: flex; /* Flexbox for horizontal alignment */
    gap: 20px; /* Space between items */
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent items from wrapping to the next line */
    width: 100%; /* Ensure menu spans the full width */
    padding: 10px 0; /* Add padding above and below the menu */
    scroll-behavior: smooth; /* Smooth scrolling when users scroll horizontally */
}

.menu::-webkit-scrollbar {
    height: 8px; /* Visible scrollbar height */
}

.menu::-webkit-scrollbar-thumb {
    background-color: rgba(14, 50, 59, 0.7); /* Thumb color for scrollbar */
    border-radius: 10px; /* Rounded scrollbar thumb */
}

.menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1); /* Track color for scrollbar */
}

/* Menu Section Styling */
.menu {
    display: flex; /* Flexbox for horizontal alignment */
    justify-content: space-around; /* Evenly distribute space between items */
    align-items: center; /* Center items vertically */
    width: 75%; /* Occupy three-quarters of the viewport width */
    margin: 0 auto; /* Center menu within the navbar */
    gap: 30px; /* Add space between items */
    padding: 10px 0; /* Add vertical padding for breathing room */
}
/* Dropdown Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Toggle Button */
.dropdown-toggle {
    background: none;
    border: none;
    color: rgb(14, 50, 59);
    font-size: 1.0rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.dropdown-toggle:hover {
    color: #fff;
    background: rgb(14, 50, 59);
}

/* Dropdown Content (Initially Hidden) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Dropdown When Class is Applied */
.dropdown-content.visible {
    display: block;
    opacity: 1;
}


.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}


/* Menu Items Styling */
.menu a {
    text-decoration: none; /* Remove underline */
    color: rgb(14, 50, 59); /* Menu item text color */
    font-size: 1.2rem; /* Slightly larger font size for readability */
    font-weight: 600; /* Bold for emphasis */
    padding: 10px 15px; /* Add spacing around items */
    border-radius: 8px; /* Rounded edges */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
}

.menu a:hover {
    color: #fff; /* Text color on hover */
    background: rgb(14, 50, 59); /* Background highlight on hover */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .menu {
        width: 90%; /* Widen menu width on medium screens */
        gap: 20px; /* Reduce spacing between items */
    }

    .menu a {
        font-size: 1.1rem; /* Adjust font size */
        padding: 8px 10px; /* Smaller padding for compact layout */
    }
}

@media (max-width: 768px) {
    .menu {
        width: 100%; /* Full-width layout for smaller screens */
        gap: 15px; /* Further reduce spacing */
    }

    .menu a {
        font-size: 1rem; /* Smaller font size for tight screens */
        padding: 6px 8px; /* Minimal padding */
    }
}


/* Home Icon Styling */
.home-icon {
    position: absolute; /* Position relative to the navbar */
    font-size: 1.5rem; /* Icon size */
    color: rgb(14, 50, 59); /* Icon color */
    text-decoration: none; /* Remove underline */
    cursor: pointer; /* Pointer cursor for interactivity */
    z-index: 1000; /* Ensure it stays above other navbar elements */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover and color transitions */

    /* Positioning for Large Devices */
    top: 40%; /* Align to bottom of navbar */
    left: 30px /* Align to bottom-left */
}


/* Positioning for Large Screens */
@media (min-width: 769px) {
    .home-icon {
        bottom: 10px; /* Position at the bottom of the navbar */
        left: 10px; /* Align to the bottom-left */
    }
}

/* Positioning for Small Screens */
@media (max-width: 768px) {
    .home-icon {
        top: 10px; /* Keep icon at the top-left corner */
        left: 10px; /* Maintain alignment */
        bottom: auto; /* Remove bottom positioning */
        font-size: 1.2rem; /* Slightly smaller size for mobile screens */
        padding: 8px; /* Adjust padding for compact layout */
    }
}



/* Hero Section */
.carousel {
    margin-top: 120px; /* Adjust based on navbar height */
}

.carousel-inner {
    height: 90vh; /* Full viewport height */
}

.carousel-item {
    position: relative;
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 90vh;
    
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better readability */
    padding: 20px;
    border-radius: 10px;
    animation: fadeInUp 1s ease-in-out;
}

.carousel-caption h5 {
    font-size: 2em;
    font-family: 'League Spartan', sans-serif;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Hero Navigation Controls */
.carousel-control-prev,
.carousel-control-next {
    filter: invert(100%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 30px 30px;
}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.5em;
    }
}



/* Floating Search Container */
.search-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 10px 20px;
    margin-top: 20px;
    width: 90%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.search-container input,
.search-container button {
    border: none;
    padding: 10px;
    border-radius: 30px;
    margin-right: 10px;
    font-size: 1em;
}

.search-container input:focus,
.search-container button:focus {
    outline: none;
}

.search-container input {
    flex: 1;
}

.search-container .quantity-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.search-container .quantity-container .quantity-type {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 30px;
    margin-bottom: 10px; /* Add margin at the bottom to separate rows */
}

.search-container .quantity-container .quantity-type i {
    font-size: 1.2em;
}

.search-container .quantity-container input {
    width: 30px;
    text-align: center;
    border-radius: 30px;
    background: #fff;
}

.search-container .quantity-container button {
    background-color: rgb(14, 50, 59);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}

.search-container .quantity-container button:hover {
    background-color: #555;
}

.search-container button {
    background-color: rgb(14, 50, 59);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.search-container button:hover {
    background-color: #555;
}

@media (min-width: 768px) {
    .search-container {
        flex-direction: row;
    }
}
/* Tour Section */
.tour-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.tour-description,
.tour-video {
    width: 100%;
    padding: 10px 0;
}

.tour-description h2 {
    
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.tour-description p {
   
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
}

.tour-video video {
    width: 100%;
    border-radius: 0px;
    height: auto;
}

@media (min-width: 768px) {
    .tour-section {
        flex-direction: row;
        padding: 40px 20px;
    }

    .tour-description,
    .tour-video {
        width: 50%;
        padding: 20px;
    }

    .tour-description h2 {
        font-size: 2em;
        text-align: left;
    }

    .tour-description p {
        font-size: 1.2em;
    }
}

/* Latest Tour Packages Section */
.latest-tours {
    padding: 40px 40px;
    background-color: #fff;
    height: 90vh;
}

.latest-tours h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.0em;
    font-weight: bolder;
    margin-bottom: 10px;
    text-align: center;
}

/* Wrapper for Tour Cards with Chevron Navigation */
.tour-cards-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start; /* Align items to the top of the wrapper */
    overflow: hidden; /* Hide horizontal overflow */
    width: 100%;
    padding: 0px 10px; /* Increased padding for better spacing */
    margin-left: 20px;
}

/* Horizontal Scrollable Cards */
.tour-cards {
    display: flex;
    gap: 30px; /* Increase space between cards */
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Enable snapping */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.tour-cards::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Edge */
}

/* Individual Cards */
.tour-card {
    flex: 0 0 auto; /* Ensure cards take their own space */
    background-color: #ffffff;
    border-radius: 15px; /* Round corners for a sleek look */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    padding: 20px; /* Add padding inside the card */
    width: 370px; /* Slightly wider cards */
    min-height: 620px; /* Ensure enough height to fit all content, including the button */
    text-align: left;
    overflow: visible; /* Allow full content visibility */
    display: flex;
    flex-direction: column; /* Stack child elements */
    justify-content: space-between; /* Push the button to the bottom */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth hover animation */
}

/* Button at the Bottom of Cards */
.tour-card .view-details-btn {
    display: inline-block;
    background-color: #007bff; /* Button background */
    color: white; /* Button text color */
    padding: 10px 20px; /* Padding around the button */
    border-radius: 5px; /* Smooth rounded edges */
    text-align: center;
    text-decoration: none; /* Remove underline */
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Add hover effects */
}

.tour-card .view-details-btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: scale(1.05); /* Slightly enlarge button */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tour-card {
        width: 90%; /* Adjust card width for smaller screens */
        min-height: 600px; /* Reduce height for smaller devices */
    }
}


.tour-card:hover {
    transform: scale(1.02); /* Slight hover effect for interactivity */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced hover shadow */
}

/* Card Image */
.tour-card img {
    width: 100%;
    border-radius: 15px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    height: 230px; /* Increased height for consistent image display */
    object-fit: cover; /* Ensure image covers the container */
    margin-bottom: 5px;
}

/* Card Title */
.tour-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5em; /* Slightly larger title font */
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
    text-align: left;
}

/* Card Info */
.tour-card-info {
    font-family: 'League Spartan', sans-serif;
    font-size: 1em;
    margin-bottom: 10px; /* Add space between info lines */
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    text-align: left;
}

/* Card Info Icons */
.tour-card-info i {
    color: rgb(14, 50, 59); /* Icon color */
    font-size: 1.3em; /* Slightly larger icons */
}

/* Chevron Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.scroll-btn i {
    font-size: 1.5em;
    color: #007b8a;
}

.left-btn {
    left: 15px;
}

.right-btn {
    right: 15px;
}

.scroll-btn:hover {
    background-color: #007b8a;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-card {
        width: 320px; /* Adjust width for smaller screens */
        height: 520px; /* Maintain the new increased height */
    }
}

/* Footer Wrapper */
.footer-wrapper {
    
    padding: 60px 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden; /* For decorative elements */
}

/* Decorative Circles */
.footer-wrapper::before,
.footer-wrapper::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.footer-wrapper::before {
    top: -50px;
    left: -50px;
}

.footer-wrapper::after {
    bottom: -50px;
    right: -50px;
}

/* Footer Container */
.footer-container {
    display: flex;
    flex-wrap: wrap; /* Wrap cards on smaller screens */
    justify-content: space-evenly; /* Evenly distribute cards */
    gap: 30px; /* Increased spacing between cards */
    position: relative;
    z-index: 3; /* Ensure cards stay above decorative elements */
}

/* Footer Cards */
.footer-card {
    flex: 1 1 300px; /* Adaptive card width */
    background: rgba(255, 255, 255, 0.98); /* Semi-transparent for elegance */
    border-radius: 20px; /* Softer, more luxurious rounding */
    color: #333333;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow depth */
    padding: 25px;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 123, 255, 0.1);
    transform: rotate(45deg);
    z-index: 0;
    transition: opacity 0.4s ease;
}

.footer-card h3 {
    color: #000;
    margin-bottom: 20px;
    font-size: 1.6rem;
    z-index: 2;
    position: relative;
}

.footer-card:hover {
    transform: translateY(-10px); /* Subtle floating effect */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); /* Stronger hover shadow */
    background: #f8f9fa; /* Lighten background on hover */
}

.footer-card:hover::before {
    opacity: 0;
}

.footer-card:hover h3 {
    color: #0056b3; /* Slightly darker hover text */
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
    z-index: 4;
    position: relative;
}

.footer-links a:hover {
    color: #0056b3; /* Smooth transition to darker color */
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
    color: #e0e0e0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-card {
        flex: 1 1 100%; /* Cards stack vertically */
    }

    .footer-wrapper::before, .footer-wrapper::after {
        width: 200px;
        height: 200px;
    }
}

/* Social Media Section */
.social-media {
    margin-top: 15px;
    text-align: left;
    z-index: 4;
    position: relative;
}

.social-media h4 {
    font-size: 16px;
    color: black;
    margin-bottom: 10px;
}

.social-media .social-icon {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #ffffff;
    background-color: rgb(14, 50, 59);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-media .social-icon:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.1); /* Slight zoom on hover */
}

.social-media .social-icon i {
    font-size: 18px;
    line-height: 40px;
}


.agm-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background-image: url('{% static "images/rej5.jpg" %}');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    color: white;
}

.agm-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    display: inline-block;
}

.agm-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.agm-section p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-agm {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    color: #fff;
    background-color: #008080;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-agm:hover {
    background-color: #005555;
}

