
/* ---------------------------------- */
/* GLOBAL */
/* ---------------------------------- */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}
body, html {
    overflow-x: hidden !important;
}

/* ---------------------------------- */
/* NAVBAR */
/* ---------------------------------- */

.navbar-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent; /* IMPORTANT – bg image shows behind navbar */
}

.navbar-box {
    width: 90%;
    background: white;
    padding: 6px 35px;
    border-radius: 60px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 55px;        /* adjust if needed */
    width: auto;         /* keeps aspect ratio */
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.logo img {
    height: 55px;        /* adjust if needed */
    width: auto;         /* keeps aspect ratio */
    max-width: 100%;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}
.footer-logo img {
    height: 60px;        /* control size */
    width: auto;         /* keep aspect ratio */
    max-width: 100%;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {
    .footer-logo img {
        height: 45px;
    }
}


.logo {
    font-size: 45px;
    font-weight: 800;
    color: #0A954F;
    padding-left: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0 auto;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #0A954F;
}

.book-btn {
    background: #0F9D58;
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.book-btn:hover { background: #0c7c47; }


.book-btn-mobile {
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 25px;
    text-decoration: none;
    margin-left: auto;
}

.book-btn-mobile i { color: #000; }

.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding-right: 10px;
}

/* MOBILE NAV FIXES */
@media (max-width: 991px) {
    .nav-links, .book-btn {
        display: none !important;
    }

    .logo {
        margin: 0 auto;
        padding-left: 0;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.mobile-menu {
    width: 50%;
    min-width: 200px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    font-size: 18px;

    position: fixed;          /* FIXED = stays under navbar always */
    top: 90px;                /* exactly under navbar */
    left: -60%;               /* hidden off-screen */
    z-index: 99999;

    transition: left 0.35s ease;
}

/* Show when opening */
.menu-open {
    left: 10%;               /* original popup spot */
}


.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu li { margin: 12px 0; }
.mobile-menu a { text-decoration: none; color: #000; font-weight: 500; }

/* ---------------------------------- */
/* HERO SECTION */
/* ---------------------------------- */

.first-section {
    width: 100%;
    height: 120vh;
    /* Placeholder for background image */
       position: relative;  
    padding-top:150px; 
    
}

/* The overlay is handled by linear-gradient above, removing ::before */

.first-section > * {
    position: relative;
    z-index: 2;
}

.first-sec-text {
    text-align: center;
    color: white;
    margin-top: 1%;
}

.first-sec-text h5 {
    margin-bottom: 2vh;
    font-size: 21px;
    font-weight: 800;
}

.first-sec-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.first-sec-text p {
    font-size: 17px;
}

@media (max-width: 768px) {
    .first-sec-text h2 {
        font-size: 22px;
    }
}


/* ---------------------------------- */
/* BOOKING SECTION */
/* ---------------------------------- */

.booking-section {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: 1%; /* FLOAT CARD UP */
}

.booking-card {
    width: 80%;
    background: rgba(255, 255, 255, 0.637)!important;
    padding: 40px 20px;
    border-radius: 35px;
    box-shadow: 0px 15px 30px rgba(213, 213, 213, 0.15);
    text-align: center;
}
.input-box select {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    /* background: white; */
    appearance: none;
    cursor: pointer;
}
.price {
    background: green;
    background-color: green !important;
}

.booking-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.booking-card label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.input-box { position: relative; }

.input-box input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.input-box .icon {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 18px;
    color: #555;
}

.book-btn-full {
    width: 100%;
    padding: 14px 25px;
    border: none;
    border-radius: 40px;
    background: #0F9D58;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

/* .book-btn-full:hover { background: #0c7c47; } */

/* RESPONSIVE BOOKING */
@media (max-width: 992px) {
    .booking-card {
        width: 90%;
        padding: 20px;
    }
    .booking-section {
        margin-top: 20px; /* remove floating on mobile */
    }
    .first-sec-text p { display: none; }
}

@media (max-width: 576px) {
        .booking-card {
        padding: 15px;
        }
        .booking-card h3 {
        font-size: 20px;
        }
        .book-btn-full {
        font-size: 16px;
        }
        .consent-box-text{
            font-size: 12px
        }
        .first-section  {
            padding-top: 100px;
}
    }


/* ---------------------------------- */
/* SECOND SECTION (About Us) */
/* ---------------------------------- */

.second-sec {
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.second-sec-content {
    width: 45%;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    margin-top: 10vh;
}

.second-sec-content h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 2%;
    margin-bottom: 30px;
}

.second-sec-content .sec-para {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #555;
}

.learn-more-btn {
    background-color: #0F9D58;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 5vh;
    transition: background 0.2s;
}

.learn-more-btn:hover { background-color: #0c7c47; }

/* RESPONSIVE SECOND SECTION */
@media (max-width: 992px) {
    .second-sec-content {
        width: 80%;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .second-sec-content {
        width: 90%;
    }
    .second-sec-content h2 {
        font-size: 32px;
    }
}


/* ---------------------------------- */
/* THIRD SECTION (Owl Carousel) */
/* ---------------------------------- */

.third-sec {
    width: 100%;
    padding: 80px 0;
    text-align: center;
}

.third-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5vh;
    color: #333;
}

.carousel-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.car-item {
    background: white;
    border-radius: 20px;
    padding-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.car-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.car-item i{
    color: #0F9D58;
    font-size: 20px
}
.car-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.car-info button {
    border: 2px solid #0F9D58;
    background: white;
    color: #0F9D58;
    padding: 6px 22px;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.2s;
}

.car-info button:hover {
    background: #0F9D58;
    color: white;
}

/* Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #0F9D58;
    cursor: pointer;
    z-index: 10;
}

.left-nav { left: -40px; }
.right-nav { right: -40px; }

/* Owl Carousel Dots (Standard Styling) */
.owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.owl-dots .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: #ccc !important;
    border-radius: 50%;
    transition: 0.3s;
    /* Ensure the span is visible and not hidden by Bootstrap */
    display: block !important;
}

.owl-dots .owl-dot.active span {
    background: #0F9D58 !important;
    transform: scale(1.2);
}

/* Arrow fix */
@media (max-width: 768px) {
    .left-nav { left: 0 !important; }
    .right-nav { right: 0 !important; }
    .third-title { font-size: 28px; }
}

/* ---------------------------------- */
/* FOURTH SECTION (Arching Carousel) */
/* ---------------------------------- */

.forth-sec {
        padding: 80px 0;
}

.carousel-track {
    /* Create 3D space for the arch illusion */
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; 
    position: relative;
    margin: 0 auto;
    max-width: 1400px;
}

.slide-item {
    position: absolute;
    width: 280px; 
    height: 280px;
    border-radius: 2rem; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 
        transform 0.6s ease-in-out, 
        opacity 0.6s ease-in-out, 
        z-index 0.0s linear 0.3s; 
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translateX(0) scale(0.5) rotate(0deg);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    transition: transform 0.6s ease-in-out;
}

.slide-item.is-active, .slide-item.next1, .slide-item.prev1, .slide-item.next2, .slide-item.prev2 {
    transition: 
        transform 0.6s ease-in-out, 
        opacity 0.6s ease-in-out,
        z-index 0.0s linear 0.0s;
}

/* --- MOBILE/DEFAULT (3-Item View) --- */
.slide-item.is-active {
    transform: scale(1.1) rotate(0deg);
    z-index: 100;
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}

.slide-item.prev1 {
    transform: translateX(-150px) scale(0.8) rotate(-10deg);
    z-index: 50;
    opacity: 0.7;
}

.slide-item.next1 {
    transform: translateX(150px) scale(0.8) rotate(10deg);
    z-index: 50;
    opacity: 0.7;
}

.slide-item.prev2, .slide-item.next2, .slide-item.hidden {
    transform: translateX(300px) scale(0.6) rotate(15deg);
    z-index: 10;
    opacity: 0;
}


.destination-name {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 1.5rem 1.5rem;
    width: 100%;
    text-align: center;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    position: absolute; 
    bottom: 0; 
    left: 0;
}

.slide-item.is-active:hover .destination-name {
    transform: translateY(0);
}

/* Navigation Dots FIX APPLIED HERE */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db; /* Gray */
    cursor: pointer;
    transition: all 0.3s;
    /* **THE CRITICAL FIX** to ensure horizontal layout within the flex container */
    display: inline-block !important; 
}

.dot.active {
    background-color: #0F9D58; /* Match the primary green */
    width: 12px;
    height: 12px;
}

/* --- DESKTOP (5-Item View) --- */
@media (min-width: 1024px) {
    .slide-item {
        width: 300px;
        height: 300px;
    }
    
    .slide-item.is-active {
        transform: scale(1.15) rotate(0deg);
    }
    
    .slide-item.prev1 {
        transform: translateX(-200px) scale(0.88) rotate(-10deg);
        opacity: 0.85;
        z-index: 50;
    }
    .slide-item.next1 {
        transform: translateX(200px) scale(0.88) rotate(10deg);
        opacity: 0.85;
        z-index: 50;
    }
    
    .slide-item.prev2 {
        transform: translateX(-450px) scale(0.7) rotate(-20deg);
        opacity: 0.7;
        z-index: 25;
    }
    .slide-item.next2 {
        transform: translateX(450px) scale(0.7) rotate(20deg);
        opacity: 0.7;
        z-index: 25;
    }
    
        .slide-item.hidden {
        transform: translateX(650px) scale(0.5) rotate(30deg);
        opacity: 0;
        z-index: 1;
    }
}

.logo-slider {
    width: 60%;
    overflow: hidden;
    white-space: nowrap;
    background: white;
    padding: 40px 0;
    margin-left: 20%;
}

.logo-track {
    display: inline-flex;
    gap: 90px;
    animation: slideRight 15s linear infinite;
}

.logo-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* fifth  */


.fifth {
    width: 100%;
    height: 100vh;
    position: relative;
        display: flex;
    align-items: center;
}

/* black overlay */
.fifth .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.36);
    z-index: 1;
}

.fifth-content {
    position: relative;
    z-index: 2; 
    margin-left: 70px;
    color: white;
    max-width: 600px;
}

.fifth-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 56.6px;
    line-height: 67px;
    letter-spacing: 2%;
    margin: 0 0 20px 0;
}

.fifth-btn {
    display: inline-block;
    background: #29cc74;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 20px;
    font-family: Poppins, sans-serif;
    text-decoration: none;
    transition: 0.3s ease;
}

.fifth-btn:hover {
    background: #22b866;
}
@media (max-width: 768px) {
    .fifth {
        height: 80vh;
        background-position: right center;
    }

    .fifth-content {
        margin-left: 20px;
    }

    .fifth-content h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .fifth-btn {
        font-size: 16px;
        padding: 10px 26px;
    }
    
.logo-slider {
    width: 80%;
    margin-left: 10%;
}
}
.home-page{
    margin-bottom: 20vh;
    /* position: fixed; */
}

/* pop up se  */



/* sixth */

.sixth {
    width: 100%;
    padding: 70px 6%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Header Section */
.sixth-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sixth-header h2 {
    font-weight: 500;
    font-size: 40.9px;
    line-height: 49px;
    letter-spacing: 2%;
    margin: 0;
}

.sixth-header p {
    max-width: 450px;
    font-weight: 300;
    font-size: 14.61px;
    line-height: 23px;
    letter-spacing: 2%;
    margin: 0;
}

/* Grid */
.package-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

/* Card */
.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.package-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.package-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}



/* Content */
/* Main Section */
.sixth {
    width: 100%;
    padding: 70px 6%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Header Section */
.sixth-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sixth-header h2 {
    font-weight: 500;
    font-size: 40.9px;
    line-height: 49px;
    letter-spacing: 2%;
    margin: 0;
}

.sixth-header p {
    max-width: 450px;
    font-weight: 300;
    font-size: 14.61px;
    line-height: 23px;
    letter-spacing: 2%;
    margin: 0;
}

/* Grid — EXACT 3 per row on desktop */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Card */
.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.package-card img {
    width: 100%;
    height: 300px; /* taller like screenshot */
    object-fit: cover;
    display: block;
}

/* Gradient overlay always visible */
.package-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

/* Content */
.package-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: white;
}

/* NAME: hidden initially */
.package-content h3 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 18.82px;
    line-height: 22.55px;
    letter-spacing: 2%;
    margin: 0 0 10px 0;

    opacity: 0;
    transform: translateY(12px);
    transition: 0.4s ease;
}

/* Name appears on hover only */
.package-card:hover .package-content h3 {
    opacity: 1;
    transform: translateY(0px);
}

/* Button: always visible */
.package-content button {
    padding: 6px 18px;
    background: #0E9F6E;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    cursor: pointer;
}

/* Tablet (2 per row) */
@media (max-width: 992px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 per row) */
@media (max-width: 600px) {
    .package-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .package-card img {
        height: 260px;
    }
}

/* HUGE screens — keep 3 per row */
@media (min-width: 1400px) {
    .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* seventh   */

.seventh {
    width: 80%;
    background: #2BA65D;
    margin-top: 40px;
    border-radius: 30px;
    padding: 60px 70px;
    position: relative;
    overflow: hidden;
    margin-left: 10%;
}

/* Green circle design */
.seventh::before,
.seventh::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.seventh::before {
    top: -100px;
    left: -120px;
}

.seventh::after {
    bottom: -140px;
    left: 100px;
}

/* Main layout */
.seventh-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    position: relative;
}

.left-text h2 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 54.8px;
    line-height: 74.49px;
    letter-spacing: -0.86px;
    text-transform: capitalize;
    color: white;
    margin: 0;
}

.right-text p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 17.13px;
    line-height: 28px;
    color: white;
    margin-bottom: 20px;
}

.call-btn {
    padding: 12px 32px;
    background: white;
    border: none;
    border-radius: 40px;
    font-family: Poppins;
    font-size: 16px;
    cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .seventh {
        padding: 40px 30px;
    }

    .seventh-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .left-text h2 {
        font-size: 38px;
        line-height: 50px;
    }

    .right-text p {
        font-size: 15px;
        line-height: 24px;
    }
}


/* eighth  */

.eighth {
    padding: 80px 120px;
        width: 100%;
    display: block;


}

.testimonial-title {
    font-family: Poppins;
    font-size: 46.45px;
    font-weight: 400;
    letter-spacing: -0.89px;
    text-transform: capitalize;
    margin-bottom: 50px;
    margin-bottom: 10vh;
}

.testimonial-nav {
    position: absolute;
    right: 120px;
    margin-top: -90px;
    display: flex;
    gap: 20px;
}

.nav-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #ccc;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
}

.nav-btn.next {
    background: #25a25a;
    border: none;
    color: white;
}

.testimonial-carousel .testimonial-card {
    background: #f6f7fb;
    padding: 40px;
    border-radius: 30px;
    min-height: 260px;
    transition: 0.3s;
    border: 1px solid #ddd;
}

.testimonial-card.active {
    background: #2da871;
    color: #fff !important;
    border: none;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.user-info img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block;
    
}

.user-name {
    font-family: "General Sans Variable";
    font-size: 25.01px;
    font-weight: 600;
    
}

.user-role {
    font-family: "General Sans Variable";
    font-size: 17.86px;
    font-weight: 500;
}

.testimonial-text {
    font-family: Poppins;
    font-size: 14.29px;
    line-height: 28.58px;
    margin-top: 10px;
}
/* ---------------------- RESPONSIVE FIX ----------------------- */

/* Tablet */
@media (max-width: 992px) {

    .eighth {
        padding: 60px 50px;
    }

    .testimonial-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .nav-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .testimonial-nav {
        right: 50px;
        margin-top: -70px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .user-info img {
        width: 60px !important;
        height: 60px !important;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .eighth {
        padding: 40px 25px;
    }

    .testimonial-title {
        font-size: 28px;
        text-align: center;
        /* margin-bottom: 60px; */
        margin-bottom: 10vh;
        margin-top: 10vh;
    }

    .testimonial-nav {
        position: relative;
        right: 0;
        margin-top: -40px;
        justify-content: center;
        
        /* margin-bottom: 5vh; */
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 5vh;
    }

    .testimonial-card {
        padding: 25px;
        border-radius: 20px;
        margin-bottom: 5vh;
    }

    .user-info {
        gap: 15px;
    }

    .user-info img {
        width: 55px !important;
        height: 55px !important;
    }

    .user-name {
        font-size: 20px;
    }

    .user-role {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 24px;
    }
}


/* Small mobile */
@media (max-width: 480px) {

    .testimonial-title {
        font-size: 24px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

 /* NINRTH  */

 .nineth {
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    border-top: 2px solid #000;      /* or any color */
    border-bottom: 2px solid #000;
}

.contact-container {
    width: 85%;
    max-width: 1200px;
}

.get-started {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.contact-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;        /* SemiBold */
    font-size: 60.09px;
    line-height: 66.77px;
    margin-bottom: 50px;
    color: #000;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.form-row input {
    flex: 1;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
    font-size: 16px;
    font-family: inherit;
    height: 120px;
    outline: none;
    margin-bottom: 40px;
}

.submit-btn {
    background: #2E9E5B;
    color: white;
    padding: 16px 32px;
    border-radius: 40px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.submit-btn:hover {
    transform: scale(1.03);
}


/* footer  */


.cont-info-footer {
    position: relative; /* To position the content over the background image */
    /* width: 1440px; Based on the width provided */
    width: 100%;
    /* Height is 350px, but it's better to let content and padding define it */
    padding: 60px 180px; /* padding-top: 60px; padding-right: 180px; padding-bottom: 60px; padding-left: 180px; */
    /* border: 1px solid rgba(122, 116, 116, 1); border: 1px solid rgba(122, 116, 116, 1) */
    background-color: #f7f7f7; /* Assuming a very light/off-white background color based on the image */
    overflow: hidden; /* To contain the absolute-positioned background image */
}

/* Background Image Styles */
.contact-info-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    opacity: 1; /* opacity: 1; */
    z-index: 1; /* Place the image layer behind the content */
}

/* Content Container */
.contact-info-content {
    position: relative;
    z-index: 2; /* Place content over the image */
    display: flex;
    justify-content: space-between;
    gap: 51.75px; /* gap: 51.75px; */
    max-width: 100%;
}

/* Left Section: Contact Info Text */
.contact-info-text {
    flex-grow: 1;
}

.contact-info-title {
    /* Contact Info=font-family: Poppins; font-weight: 400; font-size: 18px; line-height: 27px; */
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    margin: 0;
    /* color: #4CAF50; Assuming a green color based on the visual cue */
}

.contact-info-heading {
    /* We are always happy to assist you=font-family: Poppins; font-weight: 700; font-size: 42px; line-height: 130%; */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.3; /* 130% */
    margin-top: 5px;
    color: #000000;
    max-width: 400px; /* Adjust as needed for better wrapping */
}

/* Right Section: Contact Details Group */
.contact-details-group {
    display: flex;
    gap: 100px; /* Adjust spacing between Email and Number */
}

.contact-detail {
    display: flex;
    flex-direction: column;
    width: 200px; /* A fixed width helps align the content */
}

.detail-label {
    /* Email Address, Number=font-family: Poppins; font-weight: 600; font-size: 16.5px; line-height: 100%; */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16.5px;
    line-height: 1; /* 100% */
    margin-bottom: 5px;
    color: #000000;
}

.separator {
    width: 30px; /* Short line beneath the label */
    height: 2px;
    background-color: #000000; /* Assuming black line */
    margin-bottom: 20px;
}

.detail-value {
    /* help@info.com, (808) 998-34256 (Same as label but bold) */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16.5px;
    line-height: 1;
    margin-bottom: 15px;
    color: #000000;
}

.detail-hours {
    /* Assistance hours: Monday - Friday 6 am to 8 pm EST=font-family: Poppins; font-weight: 400; font-size: 15px; line-height: 24px; */
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6; /* 24px / 15px = 1.6 */
    margin: 0;
    color: #000000;
}
@media (max-width: 1200px) {
    .cont-info-footer {
        width: auto; /* Allow the container to take full width */
        padding: 60px 80px; /* Reduce horizontal padding */
    }

    .contact-details-group {
        gap: 50px; /* Reduce gap between email and number columns */
    }
}

/* ========================================= */
/* 📱 Media Query for Mobile and Tablets (Max width 768px) */
/* Stack the main content vertically */
@media (max-width: 768px) {
    .cont-info-footer {
        padding: 40px 20px; /* Further reduce padding for mobile */
    }

    .contact-info-content {
        flex-direction: column; /* Stack the text (left) and details (right) */
        gap: 40px;
    }

    .contact-info-heading {
        font-size: 32px; /* Reduce heading size for mobile */
    }

    .contact-details-group {
        flex-direction: column; /* Stack the Email and Number details */
        gap: 30px; /* Add vertical space between the contact info blocks */
    }

    .contact-detail {
        width: 100%; /* Allow contact detail columns to take full width */
    }
    .contact-title {

        font-size: 30px;
    }
}


/* footer  */
/* --- Global Styles for Footer --- */
.main-footer {
    width: 100%;
    font-family: Arial, sans-serif; /* Fallback font */
}

/* ========================================= */
/* 1. Newsletter Section (Top Green Part) */
/* ========================================= */
.newsletter-section {
    background-color: #38a55e; /* Vibrant green color */
    padding: 60px 100px 80px 100px; /* Adjust padding for visual balance */
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Optional: Constrain content width */
    margin: 0 auto;
}

.newsletter-text {
    max-width: 450px;
    color: #fff;
}

.newsletter-heading {
    font-family: 'Poppins', sans-serif; /* Assuming Poppins based on the image style */
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.newsletter-description {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.email-input {
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.4); /* Semi-transparent background */
    width: 300px;
    outline: none;
}
.email-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.subscribe-button {
    background-color: #ffffff;
    color: #38a55e;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
.subscribe-button:hover {
    background-color: #e6e6e6;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    bottom: -20px; /* Position half outside the section */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #4CAF50; /* A darker shade of green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Styling the arrow inside the button */
.back-to-top svg {
    transform: translateY(-2px); /* Slight lift for visual balance */
}


/* ========================================= */
/* 2. Main Footer (Bottom Dark Part) */
/* ========================================= */
.footer-bottom {
    background-color: #000000; /* Dark background color */
    color: #ffffff;
    padding: 80px 100px 40px 100px;
}

.footer-content {
    max-width: 1400px; /* Match newsletter width */
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* This section contains the navigation links and social icons */
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
    transition: color 0.3s;
}
.footer-nav a:first-child { margin-left: 0; }
.footer-nav a:hover {
    color: #38a55e;
}

.pipe {
    color: #777;
    font-size: 16px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
}
.social-icon:hover {
    background-color: #38a55e;
    border-color: #38a55e;
}

.footer-separator {
    border: none;
    height: 1px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.footer-copyright-policy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ccc;
}

.privacy-policy {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.privacy-policy:hover {
    color: #38a55e;
}


/* ========================================= */
/* 📱 Responsive Adjustments (Max width 768px) */
/* ========================================= */
@media (max-width: 768px) {
    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 20px 60px 20px;
    }

    .newsletter-content {
        flex-direction: column; /* Stack text and form */
        align-items: flex-start;
        gap: 30px;
    }

    .newsletter-heading {
        font-size: 28px;
    }

    .newsletter-form-container {
        flex-direction: column; /* Stack input and button */
        width: 100%;
        gap: 10px;
    }

    .email-input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }

    /* Main Footer Section */
    .footer-bottom {
        padding: 60px 20px 30px 20px;
    }

    .footer-links-social {
        flex-direction: column; /* Stack links and social icons */
        align-items: flex-start;
        gap: 20px;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap; /* Allow links to wrap */
    }

    .footer-nav a, .pipe {
        margin: 0 5px;
    }

    .footer-copyright-policy {
        flex-direction: column; /* Stack copyright and policy */
        gap: 10px;
        align-items: flex-start;
    }
}