@import url("loader.css");

body {
    font-family: Arial, sans-serif;
    background-color: #080808;
    margin: 0;
    padding: 0;
}

header {
    background: #0e0d0d83;
    color: white;
    padding: 5px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 0px;
    height: 100px;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: auto;
    
    
}

h2 {
    color: #fff;
    padding-left: 40px;
    font-size: 30px;
}

/* Banner Slider 
.slider-container {
    position: relative;
    width: auto;
    max-width: 1680px;
    margin: 20px auto;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: auto;
    border-radius: 10px;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0);
}*/

/* Navbar Styling */
.navbar {
    background: transparent;
    color: white;
    background-color: #e6b80000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Ensures vertical centering */
    padding: 45px 20px;
    font-size: 18px;
    height: 10px;
}

/* Logo Styling */
.logo img {
    display: block;
    height: auto;
    width: 150px;
    padding-top: 40px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
    /* Even spacing between links */
    align-items: center;
    /* Ensures vertical alignment */
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    transition: background 0.3s ease-in-out;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}



/****************************************/


/*********************************/

/* Deals Section */
.deals-section {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
}

.deal-card {
    display: inline-block;
    width: 400px;
    height: 340px;
    margin: 10px;
    padding: 0;
    border-radius: 5px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Overlay Effect */
.deal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 95%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent background */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect: Slide overlay up */
.deal-card:hover .deal-overlay {
    transform: translateY(-10px);
}

.deal-overlay h4 {
    margin: 0;
    font-size: 18px;
}

.deal-overlay p {
    font-size: 14px;
    margin: 5px 0;
}

/* Button Styling */
.deal-btn {
    margin-top: 10px;
    padding: 8px 20px;
    background: blue;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease;
    align-self: flex-end;
    /* Aligns button to the right */
}

.deal-btn:hover {
    background: darkblue;
}


/**********************************/
/* Fixed Departures Section */
.fixed-section {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
    position: relative;
    overflow: hidden;
    height: 400px;
}

/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    height: 440px;
}

/* Row Container */
.slider-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    height: auto;
    /* Ensures it expands properly */
}

/* Each Row */
.slider-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    /* Ensures items adjust properly */
}

/* Individual Cards */
.fixed-card {
    width: 400px;
    height: 320px;
    position: relative;
    background: rgba(255, 255, 255, 0);
    border-radius: 5px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
    overflow: hidden;
    margin-top: 25px;
    margin-bottom: 40px;
}

.fixed-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.fixed-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Overlay Effect */
.fixed-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    /* Dark overlay */
    transition: background 0.3s ease;
}

.fixed-card:hover::before {
    background: rgba(0, 0, 0, 0.527);
}

/* Card Content Overlay */
.card-content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-content strong {
    font-size: 18px;
}

.card-content p {
    font-size: 14px;
    margin: 5px 0;
}

.enquiry-button {
    background: rgba(16, 16, 128, 0.7);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    align-self: flex-end;
    transition: background 0.3s ease;
}

.enquiry-button:hover {
    background: rgba(0, 0, 255, 1);
}

/* Navigation Button */
.slider-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 20px;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.slider-btn:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
}

/***********************Domestic Deals******************************/
/* Domestic Deals Section */
.domestic-deals-section {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
}

.domestic-deal-card {
    display: inline-block;
    width: 400px;
    height: 340px;
    margin: 10px;

    background: rgba(255, 255, 255, 0);
    border-radius: 5px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image Styling */
.domestic-deal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Card Content - Flexbox removed, absolute positioning added */
.card-content-d {
    position: absolute;
    bottom: 5px;
    /* To keep a small gap from the bottom */
    left: 10px;
    /* Align text to the left */
    right: 10px;
    /* Allows space for button on the right */
    display: flex;
    justify-content: space-between;
    /* Ensures text and button are spaced correctly */
    z-index: 2;
}

/* Align Text at Bottom Left */
.card-content-d h4 {
    font-size: 24px;
    margin: 0;
    color: white;
    background-color: #0000006e;
    text-align: left;
    width: auto;
    padding: 5px;
    border-radius: 10px;
    /* Ensures text doesn't overlap button */
}

/* Align Button at Bottom Right */
.enquiry-button-d {
    background-color: rgba(16, 16, 128, 0.7);
    /* Semi-transparent blue */
    color: white;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
    /*position: absolute;*/
    bottom: 10px;
    /* Ensure button stays at the bottom */
    right: 10px;
    /* Align button to the right */
}

.enquiry-button-d:hover {
    background-color: rgba(0, 0, 255, 1);
}

/* Hover Effect */
.domestic-deal-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/*****************************************************/
/* Activities Section */
.activities-section {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
}

.activity-card {
    display: inline-block;
    width: 400px;
    height: 300px;
    margin: 0;
    padding: 0px;
    background: rgba(253, 251, 251, 0);

    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image Styling */
.activity-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;

    transition: transform 0.2s ease-in-out;
}

/* Overlay Content Styling */
.overlay-content {
    position: absolute;
    top: 90%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 40%;
    z-index: 2;
    /* Ensure text stays on top of the image */
}

.overlay-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;

    text-align: left;
}

.overlay-content .inquiry-button {
    padding: 10px 20px;
    background: #1d3fad;
    color: #fdfbfb;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.overlay-content .inquiry-button:hover {
    background: #082cf5;
}

/* Hover Effect for Cards */
.activity-card:hover img {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    background: #ffffff00;
}

/***********************************************/
/**************favorite-section****************/
.favorite-section {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0);

}

.favorite-section a {
    text-decoration: none;
    color: inherit;
}

.favorite-card {
    display: inline-block;
    width: 250px;
    height: 200px;
    margin: 10px;
    padding: 0;
    background: rgba(253, 251, 251, 0);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image Styling */
.favorite-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Text Overlay */
.favorite-card .card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centers the text */
    width: 100%;
    background: rgba(10, 10, 10, 0.233);
    /* Semi-transparent background */
    color: rgb(249, 249, 252);
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
}

/* Hover Effect */
.favorite-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    background: #ffffff00;
}


/**************** Airfare Deals Section **************/
.airfare-deals {
    text-align: center;
    margin: 40px auto;
    max-width: 900px;
    /* Prevents section from stretching too wide */
    padding: 10px;
    background: #f8f8f888;
    border-radius: 10px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    /* Ensures even column distribution */
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px 0;
}

.airfare-card {
    padding: 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    min-height: 80px;
    /* Ensures all cards have the same height */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.brown {
    background-color: #6B542A;
}

.maroon {
    background-color: #5A1F41;
}

.teal {
    background-color: #3E5F5C;
}

.navy {
    background-color: #1F3C64;
}

.green {
    background-color: #2F4F2F;
}

.orange {
    background-color: #D2691E;
}

/* Chocolate Orange */
.blue {
    background-color: #1E4D7B;
}

/* Deep Blue */

.airfare-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    /* Subtle hover shadow effect */
}

/***********************************************************/

/*********************************************************/
/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.2;
}

/* Ensure content is above the video */
.content-o {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

/* Container Styling */
.container-0 {
    background: rgba(255, 255, 255, 0.9);
    /* Slight transparency */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

/**********************************************************/

/* Hero Section */
.hero-1 {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Tagline Styling */
.tagline {
    position: absolute;
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    /* Better readability */
    background: rgba(0, 0, 0, 0.082);
    /* Dark overlay for contrast */
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tagline {
        font-size: 24px;
        padding: 10px 20px;
    }
}

/************************************************/
/* Scroll Up Button */
#scrollUpBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: rgba(41, 40, 40, 0.486);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    /* Hidden by default */
    transition: opacity 0.3s, transform 0.3s;
}

#scrollUpBtn:hover {
    background: rgba(46, 46, 46, 0.9);
    transform: scale(1.1);
}

/********************Tour****************************/
.tour-container-t {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 15px;
    max-width: 1200px;
    margin: 50px auto;
}

.tour-card-t {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.large-t {
    grid-column: span 2;
}

.tour-card-t img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}

.tour-card-t:hover img {
    transform: scale(1.06);
}

.tour-overlay-t {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.247);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.tour-overlay-t h3 {
    font-size: 24px;
    margin-bottom: 10px;
    padding-right: 20px;
}

.tour-btn-t {
    background: #ffcc00;
    color: #000;
    padding: 8px 16px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    margin-right: 40px;
}

.tour-btn-t:hover {
    background: #e6b800;
}

@media (max-width: 768px) {
    .tour-container-t {
        grid-template-columns: 1fr;
    }

    .large-t {
        grid-column: span 1;
    }
}

/**********************Footer*************************/
.footer {
    background: #0401275b;
    color: #ffffff;
    padding: 50px ;
}
.footer-container {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-column {
    width: 22%;
}
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-column p, .footer-column ul {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 8px;
}
.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: #00aaff;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: #50505000;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #cccccc;
}
.footer-bottom a {
    color: #00aaff;
    text-decoration: none;
}

/********************Hover Icon**********************/
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 60px;
    width: 50px;
    height: 50px;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}
