/* Base styling */
/* Fallbacks for browsers that do not support CSS variables */
body {
    --primary-color: #007BFF;
    --secondary-color: #333;
    --discount-color: #ff9800;
    --price-color: #4caf50;
    --error-color: #e74c3c;
    --cta-whatsapp: #25D366;
    --cta-whatsapp-hover: #1ebd58;
    --cta-book-now: #007BFF;
    --cta-book-now-hover: #218838;
    --background-color: #f8f8f8;
    --white: #fff;
    --shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    --font-large: 32px;
    --font-medium: 20px;
    --font-small: 14px;
    --spacing: 50px;
    --border-radius: 10px;
}

/* Global resets with browser fallback support */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth; /* Use a fallback for non-supporting browsers */
}

/* Fallback for `scroll-behavior` */
html {
    scroll-behavior: auto; /* Will not impact modern browsers */
}

/* Body Styles */
.body {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-color: var(--background-color, #f8f8f8); /* Fallback: #f8f8f8 */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* For unsupported CSS variables in old browsers */
body {
    background-color: #f8f8f8; /* Fallback for --background-color */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fallback font family */
}

/* Adding fallback for font family */
 

/* Shadow Fallback for unsupported browsers */
.box {
    box-shadow: var(--shadow, 0 6px 15px rgba(0, 0, 0, 0.1)); /* Fallback for shadow */
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Radius Fallback */
.button {
    border-radius: var(--border-radius, 10px); /* Fallback for radius */
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
}





/* Navbar Styles */
.navbar-container {
    width: 100%;
    background-color: #222;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 12px;
    transition: background 0.3s ease;
}

.nav-links li a:hover {
    background-color: whitesmoke;
    border-radius: 5px;
}

.menu-button {
    display: none;
}

.sidebar {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background-color: #333;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar-nav-links {
        list-style: none;
        margin-top: 40px;
    }
    .sidebar-nav-links li {
        margin-bottom: 20px;
    }
    .sidebar-nav-links li a {
        text-decoration: none;
        color: #fff;
        font-size: 18px;
    }
    .sidebar.active {
        transform: translateX(0);
    }
}


@import "https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css";



/*************************Day wise packges************************/



/* Tour Card */
.tour-card {
    display: flex;
    margin: 50px auto;
    max-width: 2000px;
    background-color: white;
    padding: 80px;
    border-radius: 10px;
}

.tour-card__image img {
    width: 100%;
    max-width: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.tour-card__details {
    flex: 1;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tour-card__title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.tour-card__discount {
    background-color: #ff9800;
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
}

.tour-card__info {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.tour-card__info-item span {
    font-weight: 600;
    color: #555;
}

.tour-card__info-item p {
    margin-top: 5px;
    font-size: 16px;
    color: #333;
}

.tour-card__price-section {
    margin-top: 30px;
    font-size: 18px;
    text-align: right;
}

.tour-card__price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-card__old-price {
    text-decoration: line-through;
    color: #e74c3c;
    font-weight: 600;
    margin-right: 15px;
    font-size: 20px;
}

.tour-card__new-price {
    color: #4caf50;
    font-weight: 600;
    font-size: 26px;
}

.tour-card__per-person {
    color: rgb(85, 85, 85); /* Fallback in RGB format */
    color: #555; /* Hexadecimal format */
    color: hsl(0, 0%, 33%); /* HSL format as an alternative */

    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
}

/* Responsive Tour Card Adjustments */
@media (max-width: 768px) {
    .tour-card {
        flex-direction: column;
        padding: 40px;
    }

    .tour-card__details {
        margin-left: 0;
        margin-top: 20px;
    }

    .tour-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-card__price-section {
        text-align: left;
    }

    .economy-package {
        padding: 20px;
    }

    .economy-package__nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .economy-package__section h2 {
        font-size: 22px;
    }

    .cta .btn {
        padding: 12px 30px;
        font-size: 16px;
        display: block;
        margin: 10px auto;
    }
}

/* Small Tablet & Large Mobile Devices (600px and below) */
@media (max-width: 600px) {
    .tour-card {
        padding: 30px;
    }

    .tour-card__image img {
        max-width: 100%;
        margin-top: 40px;
    }

    .tour-card__title {
        font-size: 28px;
    }

    .tour-card__info {
        flex-direction: column;
        gap: 20px;
    }

    .economy-package__nav a {
        padding: 10px 15px;
    }
    
    .cta .btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .tour-card {
        padding: 20px;
    }

    .tour-card__title {
        font-size: 24px;
    }

    .tour-card__info-item p {
        font-size: 14px;
    }

    .tour-card__new-price {
        font-size: 22px;
    }

    .cta .btn {
        padding: 8px 20px;
        font-size: 14px;
        width: 100%;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .tour-card {
        padding: 15px;
    }

    .tour-card__title {
        font-size: 20px;
    }

    .tour-card__info-item p {
        font-size: 12px;
    }

    .tour-card__price-section {
        font-size: 16px;
    }

    .cta .btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}






 

.economy-package {
    max-width: 2000px;
    margin: 0 auto;
    padding: 80px;
    background-color: #fff;
    box-shadow: 0 12px 24px rgba(212, 73, 73, 0.1); /* Slightly deeper shadow for a 3D look */
    border-radius: 16px; /* Rounded corners for macOS feel */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.economy-package:hover {
     /* Subtle lift effect on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Stronger shadow for depth */
}

/* Navigation Styles */
.economy-package__nav ul {
    display: flex;
    gap: 25px;
    justify-content: center;
    list-style: none;
    margin-bottom: 40px; /* More spacing for a cleaner look */
}

.economy-package__nav a {
    text-decoration: none;
    font-weight: 600;
    color: #007BFF;
    padding: 12px 18px; /* Slightly larger padding for better click area */
    border-radius: 10px;
    transition: color 0.3s, background-color 0.3s, transform 0.2s;
}

.economy-package__nav a:hover,
.economy-package__nav a:focus {
    background-color: #007BFF;
    color: #fff;
    transform: translateY(-2px); /* Hover effect with lift */
}

/* Section Content */
.economy-package__section {
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.economy-package__section h2 {
    font-size: 28px; /* Larger font size for better readability */
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    font-weight: 700;
}

/* List Styling */
.economy-package__list {
    list-style: none;
    padding: 0;
}

.economy-package__list-item {
    background: #f9f9f9; /* Softer background for a clean look */
    padding: 16px 24px;
    margin: 8px 0;
    border-left: 5px solid #fc0050;
    border-radius: 10px; /* Rounded corners */
    font-size: 18px;
    transition: transform 0.2s ease-in-out;
}

.economy-package__list-item:hover {
    transform: translateX(4px); /* Slight horizontal shift on hover for depth */
}

.economy-package__list-item strong {
    color: #007BFF;
}

/* Media Queries */
@media (max-width: 1024px) {
    .economy-package {
        padding: 60px;
    }

    .economy-package__nav ul {
        gap: 20px;
        flex-wrap: wrap; /* Wrap navigation links to the next line if needed */
    }

    .economy-package__section h2 {
        font-size: 24px; /* Reduce font size for smaller screens */
    }

    .economy-package__list-item {
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .economy-package {
        padding: 40px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Slightly lighter shadow */
    }

    .economy-package__nav ul {
        gap: 15px;
    }

    .economy-package__nav a {
        padding: 10px 16px;
    }

    .economy-package__section h2 {
        font-size: 22px;
    }

    .economy-package__list-item {
        padding: 10px 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .economy-package {
        padding: 20px;
        border-radius: 10px; /* Smaller border-radius for compact screens */
    }

    .economy-package__nav ul {
        flex-direction: column; /* Stack navigation links vertically */
        gap: 10px;
    }

    .economy-package__nav a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .economy-package__section h2 {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .economy-package__list-item {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Call to Action Buttons */


 
/* CTA Container */
.cta {
    display: flex;
    gap: 20px;
}

/* CTA Button 1: Book Now */
.cta-1 .cta-btn-1 {
    text-decoration: none;
    padding: 14px 40px;
    color: white;
    background-color: #007BFF;
    border-radius: 8px;
    font-size: 20px; /* Larger text for prominence */
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.cta-1 .cta-btn-1:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* CTA Button 2: Chat with Us */
.cta-2 .cta-btn-2 {
    text-decoration: none;
    color: white;
    background-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 10px; /* Slightly smaller than "Book Now" for balance */
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.cta-2 .cta-btn-2:hover {
    background-color: #1ebd58;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* Chat Icon Styling */
.chat-icon {
    width: 24px;
    height: 24px;
}

/* Floating Chat Button */
.cta-2 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    font-size: 8px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    z-index: 1000;
}

.chat-button img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
}

.chat-button:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Hide-on-Scroll Effect */
.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta .cta-btn-1 {
        padding: 16px 50px;
        font-size: 16px;
    }

    .cta .cta-btn-2{
        padding: 16px 50px;
        font-size: 12px;
        justify-content: center;
    }
}




/* General Section Styling */
 
/* Container Setup */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.container {
    max-width: 2000px;
    margin: 50px auto;
    background-color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* Slightly deeper shadow for a 3D look */
    border-radius: 16px; /* Rounded corners for macOS feel */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

/* Section Title */
.text-center {
    text-align: center;
}

h6 {
    font-size: 16px;
    color: #007BFF;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

h1:hover {
    color: #007BFF; /* Title color change on hover */
}

/* Service Cards */
.service-item {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: all 0.3s ease-in-out;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px); /* Subtle lift on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

/* Icon Styling */
.service-item i {
    color: #007BFF;
    font-size: 50px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.1); /* Slight scaling effect */
    color: #333; /* Icon color change on hover */
}

/* Service Heading */
.service-item h5 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-item:hover h5 {
    color: #007BFF; /* Heading color change on hover */
}

/* Service Description */
.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.service-item:hover p {
    opacity: 1;
    color: #333; /* Text color darkens on hover */
}

/* Responsiveness */
@media (max-width: 992px) {
    .service-item {
        padding: 35px 25px; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 768px) {
    .service-item {
        padding: 30px 20px; /* More compact padding for mobile */
    }

    .service-item i {
        font-size: 40px; /* Smaller icons on mobile */
    }

    .service-item h5 {
        font-size: 18px; /* Smaller heading text */
    }

    .service-item p {
        font-size: 12px; /* Smaller paragraph text */
    }
}

/* Hover and Focus Effects for Links (if used within services) */
.service-item a {
    text-decoration: none;
    color: #007BFF;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-item a:hover,
.service-item a:focus {
    color: #333; /* Darker color on hover */
    text-decoration: underline;
}

 


