/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oxygen', sans-serif;
   
    line-height: 1.6;
}

header {
  /*  background: url('tp.jpg') no-repeat center center/cover;*/
    height: 100vh;
    color: white;
    text-align: center;
}

/* Add this at the end of your existing CSS */

.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0; /* Ensure bubbles are behind the text */
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 0, 0.5);
    border-radius: 50%;
    animation: rise 10s infinite ease-in-out;
    opacity: 0;
}

.bubble:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.bubble:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.bubble:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.bubble:nth-child(5) {
    left: 50%;
    animation-delay: 1s;
    animation-duration: 9s;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) scale(1);
        opacity: 0;
    }
}


nav { font-family: 'Oxygen', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
   /* Adjusted to account for the top bar */
    z-index: 1000;
    
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #e67e22;
    margin: 20px auto 0;
    border-radius: 2px;
}
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

#menu-toggle {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0a500;
}



.hero-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeIn 2s ease-in-out;
    font-family: 'Oxygen', sans-serif;
}
.hero-subcontent {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  
    animation: fadeIn 3s ease-in-out;
    font-family: 'Oxygen', sans-serif;
  
}

.book-now-btn {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    color: white;
    background-color: #f0a500;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.book-now-btn:hover {
    background-color: #e59400;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Existing styles */


    .hero {
        position: relative;
        height: 100vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


  .background-slider {
        position: absolute;
        background-size: cover;
        background-position: center;
        transition: background-image 1s ease-in-out;

        width: 100%;
        height: 100%;
        z-index: -1;
        animation: slideAnimation 15s infinite;
    }


    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

.slide:nth-child(1) {
    animation: slide1 3s infinite;
}

.slide:nth-child(2) {
    animation: slide2 5s infinite;
}

.slide:nth-child(3) {
    animation: slide3 15s infinite;
}

@keyframes slide1 {
    0% { opacity: 1; }
    33.33% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes slide2 {
    0% { opacity: 0; }
    33.33% { opacity: 1; }
    66.66% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes slide3 {
    0% { opacity: 0; }
    66.66% { opacity: 0; }
    100% { opacity: 1; }
}


.popular-destinations {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    font-family: 'Oxygen', sans-serif;  

}

.popular-destinations h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;

}

.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.destination-card {
    background: white;
    margin: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 200px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.destination-card h3 {
    margin: 0.5rem 0;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.destination-card:hover img {
    transform: scale(1.1);
}
.more-destinations-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #e59400;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.more-destinations-btn:hover {
  background-color: #f0a500;
}

.destination-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.destination-card a img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.destination-card a h3 {
    text-align: center;
    margin-top: 10px;
    font-size: 1.2rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.travel-packages {
    padding: 4rem 1rem;
    background: #f9f9f9;
    text-align: center;
    font-family: 'Oxygen', sans-serif;
}

.travel-packages h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.travel-packages p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card img {
    width: 100%;
    height: auto;
}

.package-card h3 {
    font-size: 1.5rem;
    margin: 1rem;
    color: #333;
}

.package-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0 1rem 1rem 1rem;
}

.package-link {
    display: block;
    text-align: center;
    background-color: #e59400;
    color: #fff;
    padding: 0.75rem;
    margin: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.package-link:hover {
    background: #ba7600;
}

.more-packages-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e59400;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 2rem;
}

.more-packages-btn:hover {
    background: #ba7600;
}

@media (max-width: 768px) {
    .packages-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Horizontal image section styles */
.travel-images {
    text-align: center;
    padding: 3rem 1rem;
    background: #f3f3f3;
}

.travel-images h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.travel-images p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.horizontal-images-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem;
}
.image-grid {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 128, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay h3 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease-in-out;
}

.image-card:hover .image-overlay h3 {
    transform: translateY(0);
}
/* Footer styles */
.site-footer {
    background: linear-gradient(to right, #000000, #0c0c0c);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Oxygen', sans-serif;  /* Add this line */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column p, .footer-column ul {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #1abc9c;
}

.social-links a {
    margin: 0 0.5rem;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #1abc9c;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-form input[type="email"] {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    width: 80%;
    max-width: 300px;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background: #1abc9c;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #16a085;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
}
/* Banner Section */
.banner {
    background: url('111.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.banner-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.banner h1 {
    font-size: 2.5rem;
}

.banner p {
    font-size: 1.2rem;
}

/* Content Section */
.content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
}

.content-text {
    flex: 1;
    padding: 20px;
    font-size: 1.1rem;
}

.content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        display: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px; /* height of the nav bar */
        left: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links li a {
        padding: 1rem;
        display: block;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .dropdown-content {
        position: static;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown .dropbtn::after {
        content: '\25BC';
        font-size: 0.6em;
        margin-left: 0.5em;
    }

    .dropdown-content {
        display: none;
    }

    .dropdown .dropbtn:focus + .dropdown-content {
        display: block;
    }
    .image-card {
        width: 90%;
        margin-bottom: 1rem;
    }
    .details-container {
        flex-direction: column;
    }

    .details-image, .details-text {
        max-width: 100%;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin: 1rem 0;
    }
}
.slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    display: block;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.nav-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.nav-btn i {
    font-size: 20px;
}
/* Call Now Button Styles */
.call-now a {
    background-color: #f0a500;/* Change this to your desired color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.call-now a:hover {
    background: #ba7600; /* Change this to your desired hover color */
color: white;
}


/* WhatsApp Chat Icon */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.whatsapp-popup {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeInUp 0.5s ease;
}

.whatsapp-header {
    background-color: #25d366;
    color: white;
    padding: 10px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-popup {
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.whatsapp-body {
    padding: 15px;
    font-size: 1rem;
    color: #333;
}

.start-chat {
    display: inline-block;
    padding: 10px 15px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.start-chat:hover {
    background-color: #1ebe57;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Existing styles */

.hero .book-now-btn,
.hero .special-offer-btn {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    background-color: #f0a500; /* Use the same color as Book Now button */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.hero .special-offer-btn {
    background-color: #f0a500; /* Different color for Special Offer button */
}

.hero .book-now-btn:hover,
.hero .special-offer-btn:hover {
    background: #ba7600;
    color: white;
}

/* Existing styles */

/* Special Offer Banner */
.special-offer-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #010101; /* Background color */
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 1s ease-out;
}

.special-offer-banner p {
    margin: 0;
}

.special-offer-banner .highlight-offer {
    color:white;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #f0a500;
    transition: background-color 0.3s ease;
}

.special-offer-banner .highlight-offer:hover {
    background-color: #fcffff;
    color: black;
}

/* Text Highlighting Animation */
@keyframes textHighlight {
    0% { color: #fff; }
    50% { color: #f0a500; }
    100% { color: #fff; }
}

.special-offer-banner p {
    animation: textHighlight 2s infinite;
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Popup Styles */
.special-offer-popup,
.whatsapp-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1100; /* Increased z-index */
    animation: fadeIn 0.5s;
}

.special-offer-popup {
    width: 300px;
    padding: 20px;
}

.special-offer-header,
.whatsapp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.close-offer-popup,
.close-popup {
    cursor: pointer;
    font-size: 24px;
}

.special-offer-body,
.whatsapp-body {
    font-size: 16px;
}

.special-offer-body .book-now-btn,
.whatsapp-body .start-chat {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.whatsapp-chat .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 48px;
    color: #25D366;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
