/* ===========================
   Google Font & Reset
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* outline:1px solid red;  */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    scroll-padding-top: 65px;
}

body {
    background: #ffffff;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

/* ===========================
   Header
=========================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    z-index: 1000;

}

#about,
#why-us,
#gallery,
#booking,
#payment,
#contact,
#faq,
#location {
    scroll-margin-top: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.logo h2 {
    color: #0d6efd;
    font-size: 28px;
    font-weight: 700;
}

.logo p {
    color: #333;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    transition: .3s;
}

nav a:hover {
    color: #0d6efd;
}

.menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* =========================
   Hero Section
========================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Slider */

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 2;
}

/* Hero Content */

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 65px;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn,
.btn2 {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.btn {
    background: #0d6efd;
}

.btn:hover {
    background: #0b5ed7;
}

.btn2 {
    background: #25D366;
}

.btn2:hover {
    background: #128C7E;
}

/* Responsive */

@media(max-width:768px) {

    .hero {
        height: 70vh;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn,
    .btn2 {
        width: 220px;
    }

}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px) {

    header {
        padding: 15px 20px;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }

    .logo h2 {
        font-size: 22px;
    }

    nav {
        display: none;
    }

    .menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn,
    .btn2 {
        width: 220px;
        text-align: center;
    }

}

/* Back To Top */

#topBtn {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: #0d6efd;

    color: white;

    font-size: 25px;

    cursor: pointer;

    display: none;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);

    transition: .3s;

    z-index: 9999;

}

#topBtn:hover {

    background: #198754;

}


/* Mobile Menu */

@media (max-width:768px) {

    .menu {
        display: block;
        cursor: pointer;
        font-size: 30px;
        z-index: 1002;
    }

    header nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: 0.4s;
        z-index: 1000;
    }

    header nav.active {
        left: 0;
    }

    header nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 20px;
        border-bottom: 1px solid #eee;
    }

    .theme-btn {
        margin-top: 20px;
    }

}


/*==========================
      About
==========================*/

.about {
    padding: 80px 8%;
    text-align: center;
    background: #fff;
}

.about h2 {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.about p {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    font-size: 18px;
}

/*==========================
      Why Choose Us
==========================*/

.why-us {
    padding: 80px 8%;
    background: #f8f9fa;
    text-align: center;
}

.why-us h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #0d6efd;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    transition: .4s;
}

.card:hover {
    transform: translateY(-12px);
}

.icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: #0d6efd;
}

/* ==========================
   Statistics Section
========================== */

.stats {
    padding: 80px 8%;
    background: linear-gradient(135deg, #0d6efd, #00b894);
    color: #fff;
    text-align: center;
}

.stats h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.stats p {
    font-size: 18px;
    margin-bottom: 50px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, .15);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: .4s;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .25);
}

.counter {
    font-size: 50px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
}

.stat-box span {
    display: block;
    font-size: 18px;
}

/*==========================
      Gallery
==========================*/

.gallery {

    padding: 80px 8%;

    background: white;

    text-align: center;

}

.gallery h2 {

    font-size: 40px;

    color: #0d6efd;

    margin-bottom: 15px;

}

.gallery p {

    margin-bottom: 40px;

}

.gallery-container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

}

.gallery-container img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    border-radius: 15px;

    cursor: pointer;

    transition: .4s;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);

}

.gallery-container img:hover {

    transform: scale(1.05);

}

/*==========================
      Lightbox
==========================*/

#lightbox {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    display: none;

    justify-content: center;

    align-items: center;

    background: rgba(0, 0, 0, .9);

    z-index: 99999;

}

#lightbox img {

    max-width: 90%;

    max-height: 90%;

    border-radius: 15px;

}

#close {

    position: absolute;

    top: 30px;

    right: 40px;

    font-size: 45px;

    color: white;

    cursor: pointer;

}

/*====================================
        TESTIMONIAL SLIDER
====================================*/

.testimonials {

    padding: 80px 8%;

    background: #f8f9fa;

    text-align: center;

}

.testimonials h2 {

    font-size: 40px;

    color: #0d6efd;

}

.testimonials p {

    margin-bottom: 40px;

}

.testimonial-slider {

    max-width: 700px;

    margin: auto;

    position: relative;

}

.testimonial {

    display: none;

    animation: fade .8s;

}

.testimonial.active {

    display: block;

}

.testimonial img {

    width: 200px;

    height: 200px;

    border-radius: 30%;

    object-fit: cover;

    margin-bottom: 20px;

    border: 5px solid #0d6efd;

}

.testimonial p {

    font-size: 18px;

    line-height: 1.8;

    color: #444;

    font-style: italic;

}

.testimonial h3 {

    color: #FFD700;

    margin-top: 20px;

    font-size: 28px;

}

.testimonial span {

    display: block;

    margin-top: 10px;

    color: #0d6efd;

    font-weight: bold;

}

@keyframes fade {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==========================
      Booking
==========================*/

.booking {

    padding: 80px 8%;

    background: #f8f9fa;

    text-align: center;

}

.booking h2 {

    font-size: 40px;

    color: #0d6efd;

    margin-bottom: 15px;

}

.booking p {

    margin-bottom: 40px;

}

#bookingForm {

    max-width: 700px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 20px;

}

#bookingForm input,
#bookingForm textarea,
#bookingForm select {

    padding: 15px;

    font-size: 16px;

    border: 2px solid #ddd;

    border-radius: 10px;

    outline: none;

}

#bookingForm input:focus,
#bookingForm textarea:focus,
#bookingForm select:focus {

    border-color: #0d6efd;

}

#bookingForm button {

    padding: 15px;

    border: none;

    background: #25D366;

    color: white;

    font-size: 18px;

    border-radius: 10px;

    cursor: pointer;

    transition: .3s;

}

#bookingForm button:hover {

    background: #128C7E;

}

/*==========================
      Contact
==========================*/

.contact {

    padding: 80px 8%;

    background: white;

    text-align: center;

}

.contact h2 {

    font-size: 40px;

    color: #0d6efd;

    margin-bottom: 15px;

}

.contact p {

    margin-bottom: 30px;

}

.contact-box {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;

}

.contact-card {

    background: #f8c0fa;

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);

    transition: .3s;

}

.contact-card:hover {

    transform: translateY(-10px);

}

.contact-card h3 {

    margin-bottom: 15px;

    color: #0d6efd;

}

/*==========================
      Payment
==========================*/

.payment {

    padding: 80px 8%;

    background: #fff;

    text-align: center;

    color: #333;

}

.payment h2 {

    font-size: 40px;

    color: #0d6efd;

    margin-bottom: 15px;

}

.payment-container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    margin-top: 40px;
    color: #0d6efd;


}

.payment-box {

    background: #d0e0f0;

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0 10px 20px rgba(9, 9, 9, 0.1);

    color: #0a0202;

    line-height: 2.9;

}

.payment-box img {

    width: 220px;

    border-radius: 10px;

}

.payment-container h3 {
    margin-bottom: 15px;

    color: #0d6efd;
}

.pay-btn {

    display: inline-block;

    margin-top: 20px;

    padding: 14px 28px;

    background: #25D366;

    color: #fff;

    text-decoration: none;

    border-radius: 30px;

}

/* ==========================
      Location
========================== */

.location {

    padding: 80px 8%;

    background: #f8f9fa;

    text-align: center;

}

.location h2 {

    font-size: 40px;

    color: #0d6efd;

    margin-bottom: 15px;

}

.location p {

    margin-bottom: 30px;

    color: #555;

}

.location iframe {

    width: 100%;

    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);

}

@media(max-width:768px) {

    .location iframe {

        height: 300px;

    }

}

/*====================================
            FOOTER
====================================*/

footer {

    background: #0b1f3a;

    color: #fff;

    padding: 70px 8% 25px;

}

.footer-container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;
    text-align: center;

}

.footer-box h3 {

    margin-bottom: 20px;
    color: #FFD700;
    font-size: 24px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}

.footer-box p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    line-height: 1.4;
    color: #ddd;
}

.footer-box a {

    display: block;

    color: #ddd;

    text-decoration: none;

    margin-bottom: 12px;

    transition: .3s;

}

.footer-box a:hover {

    color: #FFD700;

    padding-left: 8px;

}

.footer-social {

    display: flex;
    justify-content: right;
    gap: 15px;
    margin-top: 20px;

}

.footer-social a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #fff;

    color: #0d6efd;

    font-size: 20px;

    transition: .3s;

}

.footer-social a:hover {

    background: #FFD700;

    color: #000;

    transform: translateY(-5px);

}

.footer-bottom {

    text-align: center;

    margin-top: 50px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, .2);

    color: #bbb;

}

/*==========================
      Floating WhatsApp
==========================*/

.whatsapp {

    position: fixed;

    bottom: 100px;

    right: 25px;

    width: 60px;

    height: 60px;

    background: #25D366;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    font-size: 32px;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);

    z-index: 999;

}

.whatsapp:hover {

    transform: scale(1.1);

}

/*==========================
      Back To Top
==========================*/

#topBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fd0d0d;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    transition: .3s;
}

#topBtn:hover {
    background: #198754;
}

/* ==========================
      FAQ Section
========================== */

.faq {
    padding: 80px 8%;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    color: #0d6efd;
    font-size: 40px;
}

.faq>p {
    text-align: center;
    margin: 20px 0 50px;
}

.faq-item {
    max-width: 900px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.faq-question {
    width: 100%;
    border: none;
    background: #0d6efd;
    color: #fff;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-size: 28px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 20px;
    line-height: 1.8;
    color: #333;
}

/* ==========================
      Theme Button
========================== */

.theme-btn {

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    cursor: pointer;

    background: #0d6efd;
    color: #fff;

    font-size: 20px;

    transition: .3s;

}

.theme-btn:hover {

    transform: rotate(180deg);

}

/* ==========================
      Dark Mode
========================== */

body.dark {

    background: #121212;
    color: #ffffff;

}

body.dark header {

    background: #1f1f1f;

}

body.dark nav {

    background: #1f1f1f;

}

body.dark nav a {

    color: #ffffff;

}

body.dark .about,
body.dark .why-us,
body.dark .stats,
body.dark .gallery,
body.dark .payment,
body.dark .faq,
body.dark .booking,
body.dark .contact,
body.dark footer {

    background: #1e1e1e;
    color: #ffffff;

}

body.dark .feature,
body.dark .stat-box,
body.dark .payment-box,
body.dark .contact-card,
body.dark .faq-answer {

    background: #2b2b2b;
    color: #ffffff;

}

body.dark .booking-form input,
body.dark .booking-form textarea,
body.dark .booking-form select {

    background: #2c2c2c;
    color: #fff;
    border: 1px solid #444;

}

body.dark .theme-btn {

    background: #FFD700;
    color: #000;

}

/*====================================
        WEBSITE LOADER
====================================*/

#loader {

    position: fixed;

    inset: 0;

    background: #ffffff;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 99999;

    transition: opacity .3s ease,
        visibility .3s ease;

}

#loader.hide {

    opacity: 0;

    visibility: hidden;

}

.loader-box {

    text-align: center;

}

.loader-box img {

    width: 120px;

    margin-bottom: 25px;

}

.loader-box h2{
    color: #0b5ed7;
}

.spinner {

    width: 65px;

    height: 65px;

    margin: auto;

    border: 6px solid #ddd;

    border-top: 6px solid #0d6efd;

    border-radius: 50%;

    animation: spin 1s linear infinite;

}

.loader-box h3 {

    margin-top: 25px;

    color: #0d6efd;

    font-size: 22px;

    letter-spacing: 1px;

}

@keyframes spin {

    100% {

        transform: rotate(360deg);

    }

}

/* ===================================
   Contact & Payment Responsive
=================================== */

@media (max-width: 768px) {

    /* Contact */

    .contact {
        padding: 60px 20px;
    }

    .contact h2 {
        font-size: 30px;
    }

    .contact p {
        font-size: 15px;
    }

    .contact-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px 20px;
        font-size: 16px;
    }

    .contact-card h3 {
        font-size: 22px;
    }

    /* Payment */

    .payment {
        padding: 60px 20px;
    }

    .payment h2 {
        font-size: 30px;
    }

    .payment p {
        font-size: 15px;
    }

    .payment-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .payment-box {
        padding: 25px;
        text-align: center;
    }

    .payment-box img {
        width: 180px;
        max-width: 100%;
    }

    .payment-info {
        text-align: center;
    }

    .payment-info h3 {
        font-size: 24px;
    }

    .payment-info p {
        font-size: 16px;
        line-height: 1.8;
    }

    .pay-btn {
        width: 100%;
        display: block;
        text-align: center;
    }

}

@media(max-width:768px) {

    .footer-container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-social {

        justify-content: center;

    }

    .footer-box a:hover {

        padding-left: 0;

    }

}

/*====================================
      Scroll Progress Bar
====================================*/

#progress-bar {

    position: fixed;

    top: 0;

    left: 0;

    width: 0%;

    height: 4px;

    background: linear-gradient(90deg, #0d6efd, #25D366);

    z-index: 99999;

    transition: width .1s linear;

}

/*====================================
      Active Navigation
====================================*/
/* 
nav a.active {

    color: #0d6efd;

    font-weight: 700;

    position: relative;

}   

nav a.active::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 100%;

    height: 3px;

    background: #25D366;


    border-radius: 10px;

}

section h2 {

    position: relative;

    display: inline-block;

}

section h2::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -12px;

    transform: translateX(-50%);

    width: 80px;

    height: 4px;

    background: #25D366;

    border-radius: 20px;

} */

/*====================================
        Upcoming Trips
====================================*/

/* .trips {

    padding: 80px 8%;

    background: #ffffff;

    text-align: center;

}

.trips h2 {

    font-size: 40px;

    color: #0d6efd;

}

.trips p {

    margin-bottom: 40px;

}

.trip-container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

}

.trip-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);

    transition: .4s;

}

.trip-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);

}

.trip-card img {

    width: 100%;

    height: 240px;

    object-fit: cover;

}

.trip-content {

    padding: 25px;

}

.trip-content h3 {

    color: #0d6efd;

    margin-bottom: 15px;

}

.trip-content p {

    margin: 10px 0;

    color: #555;

}

.trip-btn {

    display: inline-block;

    margin-top: 15px;

    padding: 12px 28px;

    background: #25D366;

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    transition: .3s;

}

.trip-btn:hover {

    background: #128C7E;

}

@media(max-width:768px) {

    .trip-container {

        grid-template-columns: 1fr;

    }

    .trip-card img {

        height: 220px;

    }

} */
