@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ------------------------------------------------ nav container --------------------------------------------------------------- */

.nav-container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 20px;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    z-index: 999;
}

/* Glass Effect on Scroll */
.nav-container.nav-bg {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* -------------------- LOGO -------------------- */

.nav-logo {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.nav-logo a img {
    width: 8rem;
}

/* -------------------- DESKTOP MENU -------------------- */

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding-right: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    font-size: 0.92rem;
    color: #0c717a;
    font-weight: 500;
}

/* -------------------- DROPDOWN DESKTOP -------------------- */

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;

    min-width: 230px;
    background: #ffffff;
    border-radius: 12px;

    padding: 12px 0;
    list-style: none;

    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Item style */
.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

/* Hover effect */
.dropdown-menu li a:hover {
    background: #f3f3f3;
    padding-left: 25px;
}


/* -------------------- HAMBURGER -------------------- */

.hamburger {
    width: 25px;
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #a55626;
    border-radius: 3px;
    transition: 0.4s ease;
}

/* Animated X */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* -------------------- MOBILE SLIDE MENU -------------------- */

.mobile-menu {
    position: fixed;
    right: -260px;
    top: 70px;
    width: 260px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(15px) saturate(200%);
    -webkit-backdrop-filter: blur(15px) saturate(200%);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    background-attachment: fixed;
    padding: 20px;
    height: auto;
    border-radius: 10px;
    transition: 0.4s ease;
    z-index: 1000;
}

.mobile-menu.active {
    right: 10px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: #0c717a;
}

/* -------------------- MOBILE DROPDOWN -------------------- */

@media (max-width: 850px) {
    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        /* background: rgba(193, 40, 40, 0.9); */
        display: none;
        margin-top: 20px;
        box-shadow: none;
        /* padding-left: 15px; */
        box-shadow: none;
        padding: 0 0 0 18px;
        top: 0px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 0;
    }
}

/* ---------------------------------------------- dot ------------------------------------------------------ */


.right-dot {
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: transform 0.35s ease;
}



/* ---------------------------------------------- commen section ------------------------------------------------------ */

/* ===================== Call Us Section ======================== */

.callus-container {
    width: 100%;
    /* height: 200px; */
    padding: 50px 0;
    background-color: #0c717a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 40px; */
}

.callus-content-main {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.callus-content {
    width: 70%;
    /* background-color: violet; */
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* margin-left: -100px; */
}

.callus-content h2 {
    font-size: 2.4rem;
    letter-spacing: 2px;
    color: #0c717a;
}

.callus-content p {
    font-size: 1.2rem;
}

.callus-btn {
    /* width: 150px; */
    height: 45px;
    padding: 10px 20px;
    border-radius: 15px;
    border: none;
    background-color: #a55626;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.callus-btn:hover {
    background-color: #0c717a;
    cursor: pointer;
}

.callus-btn:hover::after {
    content: "Go >>";
    color: white;
}

/* Hide original text on hover */
.callus-btn:hover span {
    display: none;
}

.callus-btn img {
    width: 19px;
}

@media (max-width:1100px) {
    .callus-content h2 {
        font-size: 2.2rem;
    }

    .callus-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 990px) {
    .callus-content-main {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .callus-content-main {
        width: 90%;
    }

    .callus-content {
        width: 100%;
    }
}

@media (max-width:500px) {
    .callus-content h2 {
        font-size: 2rem;
    }

    .callus-content p {
        font-size: 1rem;
    }
}

/* ===================== Testimonial ======================== */

.testimonial-container {
    width: 100%;
    height: auto;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.testimonial-container h2 {
    font-size: 3rem;
    font-weight: 400;
    color: gray;
    padding-top: 30px;
    /* padding-bottom: 50px; */
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
}


.testimonial-box-main {
    width: max-content;
    height: auto;
    /* background-color: wheat; */
    padding: 60px 0;
    display: flex;
    gap: 20px;
    /* white-space: nowrap; */
    animation: scroll-left linear infinite;

}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 330px;
    /* background: #0b5a62; */
    border-radius: 40px;
    padding: 30px 10px;
    position: relative;
    color: white;
    flex: 0 0 auto;
}

.green {
    background-color: #0c717a;
}

.brown {
    background-color: #a55626;
}

/* Bubble on top */
.bubble {
    width: 55px;
    height: 55px;
    position: absolute;
    top: -40px;
    right: 50px;
}

.bubble img {
    width: 85px;
}

.top-profile {
    display: flex;
    gap: 15px;
    /* background-color: yellowgreen; */
    align-items: end;
    margin-top: -20px;
}

.top-profile img {
    width: 80px;
    height: 100px;
    border-radius: 30px;
}

.info {
    line-height: 17px;
}

.info h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.info p {
    font-size: 0.7rem;
    font-weight: 200;
    font-style: italic;
}

.review {
    margin: 20px 15px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 200;
    font-style: italic;
    opacity: 0.9;
    text-align: center;
}

.stars {
    font-size: 18px;
    letter-spacing: 3px;
    color: gold;
    text-align: center;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
        /* JS will override this */
    }
}

@media (max-width:600px) {
    .testimonial-container h2 {
        font-size: 2.5rem;
    }
}

@media (max-width:450px) {
    .testimonial-container h2 {
        font-size: 2.2rem;
        text-align: center;
    }
}


/* ===================== Contact ======================== */

.contact-container {
    width: 100%;
    height: auto;
    /* background-color: yellow; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}

.contact-content-main {
    width: 80%;
    height: auto;
    /* background-color: wheat; */
    padding: 20px 0;
    flex-direction: column;
}

.contact-content-main h2 {
    font-size: 35px;
    color: #0c717a;
    font-weight: 600;
    margin-bottom: 25px;
}


.contact-content {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.contact-details {
    /* width: 35%; */
    /* background-color: violet; */
    height: auto;
}

.contact-details-address h4 {
    color: #a55626;
    font-weight: 600;
}

.contact-details-address p {
    font-size: 14px;
    color: rgb(102, 102, 102);
    margin-bottom: 5px;
}

.contact-number {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-number img {
    width: 20px;
}

.contact-number p {
    font-size: 14px;
}

.contact-input-container {
    width: 55%;
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    gap: 10px;
}

.contact-input-double {
    width: 100%;
    display: flex;
    gap: 10px;
    /* background-color: turquoise; */
}

.contact-input-double input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 1px solid #0c717a;
}

.contact-input-container input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 1px solid #0c717a;
}

.contact-input-container textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 1px solid #0c717a;
}

.contact-input-container button {
    padding: 7px 25px;
    border-radius: 10px;
    border: none;
    background-color: #0c717a;
    color: white;
    margin-bottom: 15px;
}

@media (max-width:1000px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-details {
        display: flex;
        gap: 40px;
        text-align: center;
        justify-content: center;
        margin-top: 30px;
    }

    .contact-number {
        justify-content: center;
    }

    .contact-input-container {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width:550px) {
    .contact-details {
        flex-direction: column;
        /* justify-content: start; */
        align-items: start;
        text-align: left;
        margin-top: 0;
        gap: 10px;
    }

    .contact-number {
        justify-content: start;
    }

    .contact-input-container {
        margin-top: 10px;
    }

    .contact-content-main {
        width: 90%;
    }
}

/* ===================== Footer ======================== */

.footer-container {
    width: 100%;
    height: auto;
    background-color: #0c717a;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.footer-content-main {
    width: 80%;
    height: auto;
    /* background-color: yellowgreen; */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content-box {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.footer-content-box h4 {
    color: white;
    font-size: 20px;
}

.footer-content-box p {
    color: white;
    font-weight: 300;
    font-size: 13px;
}

.footer-content-box ul {
    list-style: none;
    color: white;
    font-size: 13px;
    font-weight: 300;
    line-height: 25px;
}

.footer-content-box ul li {
    cursor: pointer;
}

.footer-pages {
    width: 80%;
    display: flex;
    /* background-color: rgb(146, 114, 114); */
    justify-content: space-between;
    margin-top: 40px;
}

.footer-pages ul {
    width: 100%;
    list-style: none;
    color: white;
    font-size: 13px;
    font-weight: 300;
    display: flex;
    /* justify-content: space-between; */
    gap: 20px;
    flex-wrap: wrap;

    /* background-color: violet; */
}

.footer-pages ul li {
    text-align: center;
}

@media (max-width:800px) {
    .footer-pages ul {
        justify-content: center;
    }

}