﻿.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

    .brand-link:hover {
        opacity: 0.9;
    }





.nav-link.active {
    color: #ff8c00; /* ORANGE */
    font-weight: 700;
}



/* Hover */
.nav-link:hover {
    color: #ff8c00;
}








html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/*.hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 60px 16px;
    color: #222;
    margin-top: 50px;
    margin-bottom: 0;
    overflow: hidden; 
}*/
.city-filter input,
.city-filter select {
    height: 44px;
}


/*    .hero::before {
        content: "";
        position: absolute;
        height: 95%;
        background: url('/Content/background.jpg') no-repeat left center;
        background-size: cover;
        opacity: 0.7;
        z-index: 0;
    }*/

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 16px;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
}

.btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    line-height: normal !important;
    padding-top: 10px !important;
    padding-bottom: 14px !important;
    left: -10px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    font-size: 16px;
    color: #fff;
}

    .footer-link i {
        font-size: 18px;
        width: 20px;
        text-align: center;
    }

.nav-book-btn {
    background-color: #e36a3f;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .nav-book-btn span {
        font-size: 18px;
        transition: transform 0.25s ease;
    }

    .nav-book-btn:hover {
        background-color: #e36a3f;
    }

        .nav-book-btn:hover span {
            transform: translateX(4px);
        }

.nav-book-btn {
    height: 100%;
}


@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*.who-we-are {
    position: relative;
    padding: 120px 20px;
    background: #fff;
    overflow: hidden;
}*/

    /* LEFT IMAGE (2nd image) */
    /*.who-we-are::before {
        content: "";
        position: absolute;
        left: -100px;
        bottom: 190px;
        width: 520px;
        height: 380px;
        background: url('/Content/right.png') no-repeat center / cover;
        border-radius: 0 280px 280px 0;
        z-index: 0;
    }*/

    /* RIGHT IMAGE (3rd image) */
    /*.who-we-are::after {
        content: "";
        position: absolute;
        right: -100px;
        bottom: 0;
        width: 520px;
        height: 380px;
        background: url('/Content/right.jpeg') no-repeat center / cover;
        border-radius: 280px 0 0 280px;
        z-index: 0;
    }*/

    /* Keep content above images */
    /*.who-we-are h2,
    .cards-container {
        position: relative;
        z-index: 2;
    }*/

.cards-container {
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .who-we-are::before,
    .who-we-are::after {
        display: none;
    }
}




html, body {
    overflow: auto;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .logo img {
        height: 65px;
    }

.brand {
    display: flex;
    flex-direction: column;
}

    .brand h3 {
        color: #7a9199;
        margin: 0;
        font-size: 24px;
        font-weight: 700;
    }

    .brand p {
        margin: 0;
        margin-top: 2px;
        font-size: 14px;
        color: #555;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f4f4;
    padding: 10px 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}





.nav-links a {
    text-decoration: none;
    margin: 0 12px;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

    .nav-links a:hover {
        color: #00796b;
    }


.hero-content {
    z-index: 1;
    max-width: 50%;
    padding-right: 20px;
    text-align: center;
    margin: 0 auto;
    margin-top: -50px;
}

.hero-logo {
    height: 180px;
/*    margin-bottom: 20px;
    margin-top: -255px;
    margin-right: -470px;*/
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

    .hero h1 span {
        color: #175765;
    }

.hero p {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}


.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 68px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

    .btn img {
        height: 24px;
    }

.btn-yellow {
    background: #e56c41;
}

    .btn-yellow:hover {
        background: #e56c41;
    }

.hero-image img {
    width: 480px;
    object-fit: contain;
    margin-top: -170px;
    opacity: 0.85;
    filter: brightness(0.9) contrast(1.1);
    transition: opacity 0.3s ease, filter 0.3s ease;
    margin-right: -55px;
}

    .hero-image img:hover {
        opacity: 1;
        filter: brightness(1) contrast(1.1);
    }





.buttons {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 50px;
    z-index: 5;
    text-align: center;
}

.btn {
    padding: 10px 45px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    margin-top: -20px;
    text-align: center;
}

.btn-login {
    background: #e36a3f;
}

    .btn-login:hover {
        background: #e36a3f;
    }

.btn-register {
    background: #54747b;
}

    .btn-register:hover {
        background: #54747b;
    }

.hero-image h2 {
    font-size: 1.2rem;
    color: #534c4c;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



@media (max-width: 992px) and (min-width: 768px) {

    .hero {
        flex-direction: row;
        padding: 40px 20px;
    }

    .hero-content {
        width: 50%;
        text-align: left;
    }

    .hero-image {
        width: 50%;
    }

        .hero-image img {
            width: 330px;
        }

    .hero::before {
        width: 55%;
        opacity: 0.30;
    }

    .buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        padding: 10px 28px;
        font-size: 15px;
    }
}





@media (min-width: 768px) and (max-width: 992px) {

    .hero-image {
        position: relative;
    }


        .hero-image img {
            width: 330px !important;
            margin: 0 auto !important;
            display: block;
            z-index: 1;
        }


    .buttons {
        position: absolute !important;
        bottom: 40px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        top: 30px;
        margin: 50px !important;
        padding: 200px !important;
        z-index: 10 !important;
        margin-top: -20px;
    }


    .btn {
        padding: 20px 30px !important;
        font-size: 10px !important;
        width: 90px !important;
        margin: 0 !important;
        bottom: -55px !important;
        left: -50px !important;
    }
}


.hero::before {
    height: 95%;
}


.services {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    margin-top: 10px;
    padding-top: 0;
    min-height: 40vh;
}

    .services h2 {
        font-size: 3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 30px;
    }

.services-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.services-box {
    background-color: #fff;
    padding: 40px;
    width: 550px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
    height: 350px;
}

    .services-box:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .services-box h3 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .services-box ul {
        list-style: none;
        padding-left: 0;
        text-align: left;
        line-height: 1.8;
    }

    .services-box li {
        font-size: 1.1rem;
        color: #444;
        margin-bottom: 15px;
    }

.icon {
    margin-right: 15px;
}


.not {
    background-color: #faf3f3;
}

.are {
    background-color: #f5f9f8;
}

.learn-more {
    margin-top: 30px;
}

.btn-learn-more {
    background-color: #fbf9f4;
    color: #000;
    padding: 14px 50px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-learn-more:hover {
        background-color: #ef8b6c;
    }


@media (max-width: 767px) {
    .services-container {
        flex-direction: column;
    }

    .services-box {
        width: 90%;
        margin-bottom: 20px;
    }

    .btn-learn-more {
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .services-box {
        width: 90%;
        margin-bottom: 20px;
    }

    .btn-learn-more {
        font-size: 1rem;
    }
}

.how-it-works {
    text-align: center;
    padding: 60px 20px;
    background-color: #fbf9f4;
}

    .how-it-works h2 {
        font-size: 3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 40px;
    }

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    background-color: #fff;
    width: 280px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .step:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

.step-icon {
    position: relative;
    margin-bottom: 20px;
}

    .step-icon .icon-number {
        position: absolute;
        top: -10px;
        right: -10px;
        background-color: #f3b83d;
        color: #fff;
        font-size: 1.2rem;
        font-weight: bold;
        padding: 8px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.step img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.start-now {
    margin-top: 40px;
}

.btn-start-now {
    background-color: #e46a41;
    color: white;
    padding: 14px 50px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-start-now:hover {
        background-color: #e46a41;
    }


@media (max-width: 767px) {
    .steps-container {
        flex-direction: column;
    }

    .step {
        width: 100%;
        margin-bottom: 20px;
    }
}

.step-icon i {
    font-size: 50px;
    color: #799097;
}

.icon-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #f3b83d;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 8px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-we-are {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

    .who-we-are h2 {
        font-size: 3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 40px;
    }


.cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.card {
    background-color: #fff;
    width: 550px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .card:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

.card-icon {
    margin-bottom: 20px;
}

    .card-icon img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

.card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-join {
    background-color: #e46a41;
    color: white;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-join:hover {
        background-color: #e46a41;
    }


.btn-joing {
    background-color: #799097;
    color: white;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-joing:hover {
        background-color: #799097;
    }


@media (max-width: 767px) {
    .cards-container {
        flex-direction: column;
    }

    .card {
        width: 100%;
        margin-bottom: 60px;
    }
}

.payment-methods {
    text-align: center;
    padding: 60px 20px;
    background-color: #fcf5f0;
}

    .payment-methods h2 {
        font-size: 3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }

    .payment-methods p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 40px;
    }

    .payment-methods h3 {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 30px;
    }


.payment-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.payment-option {
    background-color: #fff;
    width: 300px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
}

    .payment-option:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

.payment-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0f7fa;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #799097;
    font-size: 30px; /* Icon size */
}

.payment-option h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.payment-option p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.payment-tips {
    margin-top: 10px;
}

.tip {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .tip i {
        color: #f3b83d;
        margin-right: 8px;
    }

    .tip span {
        font-size: 1rem;
        color: #444;
    }


@media (max-width: 767px) {
    .payment-options {
        flex-direction: column;
    }

    .payment-option {
        width: 90%;
        margin-bottom: 20px;
    }
}


.safety-tips {
    background-color: #faf3ed;
    padding: 40px;
    margin-top: 0px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .safety-tips h3 {
        font-size: 2rem;
        font-weight: 600;
        color: #000;
        margin-bottom: 30px;
    }


.safety-tips-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}


.safety-tips-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.safety-tip {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
}

    .safety-tip i {
        color: #f3b83d;
        margin-right: 10px;
    }

.note {
    font-size: 1rem;
    color: #555;
    font-style: italic;
}


@media (max-width: 767px) {
    .safety-tips-container {
        flex-direction: column;
    }

    .safety-tips-column {
        margin-bottom: 20px;
    }
}


.faq-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

    .faq-section h1 {
        text-align: center;
        font-size: 2.5rem;
        color: #333;
    }

    .faq-section h2 {
        text-align: center;
        font-size: 1.5rem;
        color: #396068;
        margin-bottom: 20px;
    }

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-btn {
    background-color: #fff;
    color: #000;
    font-size: 1.1rem;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .faq-btn:hover {
        background-color: #fff;
    }

.faq-content {
    display: none;
    padding-top: 10px;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-btn.active + .faq-content {
    display: block;
}

.contact-button {
    
    padding: 20px 30px;
    text-align: center;
    margin-top: 20px;
    border-radius: 15px;
    display: inline-block;
    width: 62%;
    margin-left: 290px;
}

    .contact-button p {
        margin: 0;
        font-size: 16px;
        color: #555;
    }

    .contact-button a {
        color: #e56c41;
        text-decoration: none;
        font-weight: bold;
    }

        .contact-button a:hover {
            text-decoration: underline;
        }

.why-choose {
    text-align: center;
    padding: 60px 20px;
    background-color: #fbf9f4;
    margin-top: 40px;
}

    .why-choose h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 30px;
    }

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    background-color: #fff;
    padding: 25px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-grow: 1;
}

    .service-card .icon {
        font-size: 40px;
        color: #e46a41;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }

    .service-card p {
        color: #777;
        font-size: 14px;
    }

.community-stories {
    text-align: center;
    margin-top: 40px;
}

    .community-stories a {
        background-color: #e56c41;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

        .community-stories a:hover {
            background-color: #c75e32;
        }

/* Responsive styles */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
        margin-bottom: 20px;
    }
}


.feedback-section {
    background-color: #ffffff;
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
}


h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #fbf9f4;
}

textarea {
    resize: vertical;
}

button {
    background-color: #e46a41;
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/*    button:hover {
        background-color: #1e5f5d;
    }*/

input:focus, textarea:focus {
    border-color: #2c7a7b;
    outline: none;
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 20px;
    }

    h1 {
        font-size: 1.6rem;
    }

    button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

.disclaimer-section {
    background-color: #fef9f7;
    padding: 40px;
    margin: 50px auto;
    max-width: 1200px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: left;
    color: #333;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #000;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    ul li {
        font-size: 1rem;
        color: #555;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        ul li .icon {
            font-size: 1.2rem;
            margin-right: 10px;
            color: #e65c5c;
        }


.note {
    font-size: 1rem;
    color: #888;
    margin-top: 20px;
    font-style: italic;
}


@media (max-width: 768px) {
    .disclaimer-section {
        padding: 20px;
    }

    h1 {
        font-size: 1.6rem;
    }

    ul li {
        font-size: 1rem;
    }
}

.footer-section {
    background-color: #799097;
    color: white;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

    .footer-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .footer-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

    .footer-btn i {
        margin-right: 10px;
    }

.footer-btn-primary {
    background-color: #caab8a;
    color: #fff;
    border: 2px solid #fff;
}

    .footer-btn-primary:hover {
        background-color: #caab8a;
    }

.footer-btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: #fff;
}

    .footer-btn-secondary:hover {
        background-color: white;
        color: #1e7669;
    }


.footer-link {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: #e6a93f;
    }


.footer-line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    margin-bottom: 30px;
}


.footer-section .text-white-50 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.footer-section .fst-italic {
    font-style: italic;
}


.footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section .row {
    display: flex;
    justify-content: space-between;
}

.footer-section .col-md-3 {
    width: 22%;
}

    .footer-section .col-md-3 h5 {
        font-weight: bold;
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #ffffff80;
}


@media (max-width: 768px) {

    .navbar {
        padding: 10px 20px !important;
    }

    .logo img {
        height: 45px !important;
    }

    .brand h3 {
        font-size: 16px !important;
    }

    .brand p {
        font-size: 11px !important;
    }

    .hero {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px 10px !important;
        margin-top: 10px !important;
        overflow: hidden !important;
    }

        .hero::before {
            width: 100% !important;
            height: 200px !important;
            top: 0 !important;
            left: 0 !important;
            background-size: cover !important;
            opacity: 0.25 !important;
        }

    .hero-content {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
    }

    .hero-logo {
        height: 110px !important;
        margin: 0 auto 20px auto !important;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 2.4rem !important;
        margin-bottom: 10px !important;
    }

    .hero p {
        font-size: 14px !important;
        margin-bottom: 25px !important;
    }


    .hero-image img {
        width: 90% !important;
        margin: 10px auto !important;
        display: block !important;
        position: relative !important;
        top: -80px !important;
        right: 0 !important;
        opacity: 1 !important;
    }


    @media (max-width: 768px) {

        .buttons {
            position: relative !important;
            top: -550px !important;
            right: -10px !important;
            transform: none !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            margin-top: -50px !important;
            gap: 30px !important;
            padding: 190px !important;
            width: 100% !important;
            z-index: 10 !important;
        }

            .buttons .btn {
                width: 200% !important;
                text-align: center !important;
                padding: 14px 0 !important;
                border-radius: 12px !important;
                font-size: 18px !important;
                font-weight: 600 !important;
            }
    }


    .btn {
        width: 80% !important;
        padding: 12px 15px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 768px) {

    .services {
        padding: 20px !important;
        margin-top: 0 !important;
    }

        .services h2 {
            font-size: 1.8rem !important;
            line-height: 2.2rem !important;
            margin-bottom: 20px !important;
            padding: 0 10px !important;
        }

    .services-container {
        flex-direction: column !important;
        gap: 20px !important;
        margin-bottom: 20px !important;
    }

    .services-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        height: auto !important;
    }

        .services-box h3 {
            font-size: 1.4rem !important;
            margin-bottom: 15px !important;
        }

        .services-box ul {
            line-height: 1.6 !important;
        }

        .services-box li {
            font-size: 1rem !important;
            margin-bottom: 10px !important;
        }
}

.main-navbar {
    width: 100%;
    padding: 15px 60px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 20;
}


.nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-logo {
    width: 60px;
}


.brand h3 {
    margin: 0;
    font-size: 20px;
    color: #799297;
    font-weight: 700;
}

.brand p {
    margin: 0;
    font-size: 14px;
    color: #555;
    margin-top: 2px;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    font-size: 16px;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

    .nav-link:hover {
        color: #2a6f6a;
    }


.dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    margin-left: 5px;
}


.login-btn {
    background-color: #e56c41;
    padding: 8px 22px;
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .login-btn:hover {
        background-color: #e56c41;
    }

.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.dropdown-item {
    padding: 12px 20px;
    display: block;
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

    .dropdown-item:hover {
        background: #f5f5f5;
    }


.dropdown-toggle::after {
    content: "▾";
    font-size: 12px;
    margin-left: 6px;
}

.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}


.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    width: 50px;
    height: auto;
    margin-right: -10px;
}

.brand h3 {
    margin: 0;
    font-size: 18px;
}

.brand p {
    margin: 0;
    font-size: 12px;
    color: #555;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link, .login-btn, .dropdown-btn {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: #fff;
    padding: 10px 0;
    border: 1px solid #ccc;
    display: none;
    flex-direction: column;
    z-index: 999;
}

.dropdown-item {
    padding: 8px 15px;
    display: block;
    text-decoration: none;
    color: #333;
}

    .dropdown-item:hover {
        background: #f2f2f2;
    }


.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 10px 0;
        border-top: 1px solid #ccc;
    }

        .nav-menu a,
        .dropdown-btn {
            padding: 10px 20px;
            font-size: 18px;
            width: 100%;
            text-align: left;
        }

    .dropdown-menu {
        position: static;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
    }
}


.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    text-decoration: none;
}

.dropdown {
    position: relative;
}


    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 220px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px 0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    display: none;
    opacity: 0;
    transition: all .25s ease;
    pointer-events: none;
    z-index: 1000;
}


.dropdown-item {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

    .dropdown-item:hover {
        background: #f6f6f6;
    }

/* --- MOBILE VIEW --- */
@media (max-width: 768px) {

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 10px 0;
    }

    .dropdown {
        width: 100%;
    }


    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        border: none;
        display: none;
        opacity: 1;
        pointer-events: auto;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding-left: 25px;
    }
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    margin-top: 0;
}

.dropdown-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}



.hs-wrapper {
    text-align: center;
    padding: 40px 0;
    font-family: sans-serif;
}

.hs-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.hs-slider-box {
    width: 85%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.hs-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.hs-item {
    min-width: 320px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding-bottom: 20px;
    text-align: left;
}

    .hs-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 14px 14px 0 0;
    }

    .hs-item h3 {
        font-size: 20px;
        padding: 15px;
    }

    .hs-item a {
        display: inline-block;
        margin-left: 15px;
        color: #e56c41;
        font-weight: bold;
        text-decoration: none;
    }

.hs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #799097;
    border: none;
    padding: 19px 19px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

.hs-prev {
    left: -10px;
}

.hs-next {
    right: -10px;
}

.hs-nav:hover {
    background: #799097;
}

.srv-section {
    text-align: center;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

.srv-heading {
    font-size: 34px;
    margin-bottom: 40px;
    color: #333;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    width: 85%;
    margin: auto;
}

.srv-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0px 6px 14px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

    .srv-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 12px 22px rgba(0,0,0,0.15);
    }

.srv-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.srv-card h3 {
    margin: 10px 0 5px;
    font-size: 20px;
    color: #333;
}

.srv-card p {
    color: #555;
    font-size: 14px;
}

/* Soft gradient backgrounds */
.pink {
    background: linear-gradient(#ffe6ee, #ffd6e6);
}

.yellow {
    background: linear-gradient(#fff2d6, #ffe7bf);
}

.blue {
    background: linear-gradient(#e5f5ff, #d6eeff);
}

.orange {
    background: linear-gradient(#ffe9d6, #ffd8b0);
}

.green {
    background: linear-gradient(#eaffea, #d2f8d2);
}

.purple {
    background: linear-gradient(#f0e6ff, #e0d1ff);
}

.leaf {
    background: linear-gradient(#e7ffe7, #d6ffd6);
}

.cyan {
    background: linear-gradient(#e5faff, #d6f5ff);
}

.pink2 {
    background: linear-gradient(#ffe6f2, #ffd4e8);
}

.blue2 {
    background: linear-gradient(#e5f0ff, #d6e4ff);
}

.mint {
    background: linear-gradient(#e6fff5, #d2ffec);
}

.green2 {
    background: linear-gradient(#e9ffe9, #ccffdd);
}



.nh-layout {
    width: 90%;
    margin: 40px auto;
    display: flex;
    gap: 40px;
}


.nh-left {
    flex: 3;
}


.nh-heading {
    text-align: left;
    font-size: 34px;
    font-weight: 700;
    color: #2b3b3d;
    margin-bottom: 30px;
}



.nh-card-img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    margin-right: 20px;
    object-fit: cover;
}

.nh-card-content {
    flex: 1;
}

.nh-job-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.nh-tags {
    margin-bottom: 12px;
}

.nh-tag {
    display: inline-block;
    background: #f2f2f2;
    padding: 5px 10px;
    border-radius: 8px;
    margin-right: 6px;
    font-size: 13px;
    border: 1px solid #ddd;
}

.nh-description {
    color: #555;
    font-size: 15px;
}

.nh-actions {
    display: flex;
    align-items: center;
}

.nh-btn {
    background: #085f44;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 25px;
    cursor: pointer;
}

    .nh-btn:hover {
        background: #064a36;
    }

/* RIGHT SIDE PANEL */
.nh-right {
    flex: 1;
    padding-top: 30px;
}

.nh-right-heading {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.nh-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

.nh-step-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    margin-right: 15px;
}

.nh-step-text h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #222;
}

.nh-step-text p {
    font-size: 14px;
    color: #555;
}

.nh-right {
    flex: 1;
    padding-top: 30px;
}

.nh-right-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}


.nh-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.nh-step-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 14px;
}

    .nh-step-icon img {
        width: 30px;
        height: 30px;
    }

.nh-step-text h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.nh-step-text p {
    font-size: 14px;
    color: #555;
}

/* Arrow Styling */
.nh-arrow {
    text-align: center;
    font-size: 26px;
    color: #777;
    margin: -5px 0 15px 0;
}

.nh-card {
    display: flex;
    background: white;
    padding: 25px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.07);
    width: 90%;
    min-width: 500px;
}

.nh-left {
    width: 100%;
}

.nh-description {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    max-width: 90%;
}

    .nh-description .full-text {
        display: none;
    }

.read-more-btn {
    color: #0056b3;
    font-weight: 600;
    cursor: pointer;
    margin-left: 6px;
}

    .read-more-btn:hover {
        text-decoration: underline;
    }

.services {
    text-align: center;
    padding: 90px 0 20px 0;
    font-family: "Poppins", sans-serif;
}

    .services h2 {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

.services-subheading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}


.services-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 70%;
}

    .services-list li {
        font-size: 20px;
        margin: 12px 0;
        color: #444;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        line-height: 1.6;
    }

    .services-list .icon {
        font-size: 28px;
        color: #4bbf73;
    }

.hiring-section {
    width: 90%;
    margin: auto;
    margin-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.service-card {
    width: 20px;
    background: white;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-right: 10px;
}

    .service-card img {
        width: 100%;
        border-radius: 12px;
    }

.category-box {
    background: white;
    padding: 8px 15px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: -20px;
    width: fit-content;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.apply-btn {
    color: #1a4b9f;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}

/* Mobile View */
@media only screen and (max-width: 768px) {
    .slider {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .category-box {
        margin-bottom: 10px;
    }

    .apply-btn {
        display: block;
        margin: 10px auto;
    }

    .section-title {
        font-size: 28px;
    }
}

@media only screen and (max-width: 480px) {
    .service-card {
        width: 100%;
        padding: 10px;
    }

    .category-box {
        font-size: 14px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .nh-layout {
        flex-direction: column;
    }

    .nh-left, .nh-right {
        flex: none;
        width: 100%;
    }

    .nh-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .nh-job-title {
        font-size: 16px;
    }

    .nh-tags {
        gap: 5px;
    }

    .nh-description {
        font-size: 12px;
    }

    .nh-btn {
        width: 100%;
        padding: 12px;
    }

    .nh-step {
        flex-direction: column;
        align-items: center;
    }

    .nh-step-text {
        text-align: center;
    }
}




.disclaimer-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 60px 50px;
    background: #fffaf5;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    font-family: "Segoe UI", sans-serif;
    color: #333;
}


    .disclaimer-section h1 {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 25px;
    }

        .disclaimer-section h1 .icon {
            font-size: 30px;
            color: #f26a3d;
        }

    .disclaimer-section > p {
        font-size: 16px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 40px;
    }


    .disclaimer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }


    .disclaimer-section li {
        display: grid;
        grid-template-columns: 30px 200px 1fr;
        column-gap: 20px;
        padding: 22px 0;
        border-bottom: 1px solid #eee;
    }


        .disclaimer-section li:last-child {
            border-bottom: none;
        }

        .disclaimer-section li .icon {
            font-size: 16px;
            color: #3b82f6;
            margin-top: 6px;
        }


        .disclaimer-section li strong {
            font-size: 17px;
            font-weight: 700;
            color: #222;
        }


    .disclaimer-section li {
        font-size: 15px;
        line-height: 1.7;
        color: #555;
    }


    .disclaimer-section .note {
        margin-top: 45px;
        font-size: 14px;
        font-style: italic;
        color: #666;
        line-height: 1.6;
        border-top: 1px solid #eee;
        padding-top: 25px;
    }

@media (max-width: 768px) {

    .disclaimer-section {
        margin: 40px 15px;
        padding: 35px 20px;
        border-radius: 18px;
    }


        .disclaimer-section h1 {
            font-size: 24px;
            gap: 10px;
        }

            .disclaimer-section h1 .icon {
                font-size: 22px;
            }


        .disclaimer-section > p {
            font-size: 15px;
            margin-bottom: 25px;
        }


        .disclaimer-section li {
            display: block;
            padding: 18px 0;
        }

            .disclaimer-section li .icon {
                display: inline-block;
                font-size: 14px;
                margin-right: 6px;
                margin-top: 0;
            }


            .disclaimer-section li strong {
                font-size: 16px;
                display: inline-block;
            }


            .disclaimer-section li br {
                display: none;
            }

        .disclaimer-section li {
            font-size: 14px;
            line-height: 1.6;
        }

        .disclaimer-section .note {
            font-size: 13px;
            margin-top: 30px;
            padding-top: 18px;
        }
}

.footer-btn-secondary {
    background-color: #caab8a;
    color: #fff;
}

    .footer-btn-secondary:hover {
        background-color: #caab8a;
        color: #fff;
    }

@media (max-width: 768px) {


    .footer-section {
        padding: 40px 15px;
        text-align: center;
    }

    .footer-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }


    .footer-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .footer-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
        font-size: 14px;
    }


    .footer-section .row {
        text-align: left;
    }

    .footer-section .col-md-3 {
        margin-bottom: 25px;
    }


    .footer-section h5 {
        font-size: 16px;
        margin-bottom: 12px;
    }


    .footer-link,
    .footer-link a {
        font-size: 14px;
        line-height: 1.6;
    }


        .footer-link i {
            margin-right: 8px;
        }


    .footer-bottom {
        text-align: center;
        margin-top: 25px;
    }

        .footer-bottom h4 {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 6px;
        }
}

textarea::placeholder {
    color: #9ca3af;
    font-size: 13px;
}


.footer-quote {
    font-size: 1.25rem;
    font-weight: 500;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.95;
}

.footer-buttons {
    margin-top: 30px;
}

    .footer-buttons .footer-btn {
        padding: 12px 24px;
        border-radius: 999px;
        font-size: 0.95rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.25s ease;
    }


.footer-btn.primary {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

    .footer-btn.primary:hover {
        background: #2563eb;
        transform: translateY(-2px);
    }


.footer-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #e5e7eb;
    background: transparent;
}

    .footer-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
    }


.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ffffff;
        font-size: 0.95rem;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: #e46a41;
        }



@media (max-width: 767px) {
    .footer-quote {
        font-size: 1.1rem;
    }

    .footer-buttons {
        gap: 12px;
    }

        .footer-buttons .footer-btn {
            width: 100%;
            justify-content: center;
        }

    .footer-bottom {
        text-align: center;
    }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
@media (max-width: 768px) {
    .hero::before {
        left: 0;
        width: 100%;
        height: 100%;
        background-position: center;
    }
}


@media (max-width: 768px) {

    .main-navbar {
        position: relative;
        padding: 12px 16px;
    }


    .hamburger {
        font-size: 26px;
        cursor: pointer;
        display: block;
        z-index: 1001;
    }


    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        z-index: 1000;
    }

     
        .nav-menu.show {
            display: flex;
        }

      
        .nav-menu .nav-link {
            font-size: 18px;
            font-weight: 600;
            color: #222;
            text-decoration: none;
        }

      
        .nav-menu .nav-book-btn {
            width: 80%;
            max-width: 260px;
            justify-content: center;
            font-size: 16px;
            padding: 12px 0;
        }

   
    .nav-left {
        gap: 10px;
    }

    .brand h3 {
        font-size: 16px;
        margin: 0;
    }

    .brand p {
        font-size: 12px;
        line-height: 1.3;
    }
}


.contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px auto;
    width: 100%;
}

    .contact-button p {
        background: #fdecea; 
        color: #333;
        padding: 14px 20px;
        border-radius: 14px;
        font-size: 16px;
        max-width: 90%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .contact-button a {
        color: #e46c3a;
        font-weight: 600;
        text-decoration: none;
    }

        .contact-button a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {

  
    .nh-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 20px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
    }

    .nh-card-img {
        width: 100%;
        height: 140px;
        object-fit: contain;
        background: #f5f6f8;
        padding: 10px;
        margin-left:-90px;
    }

 
    .nh-card-content {
        padding: 14px 1px 18px;
        margin-left: -20px;
    }

    .nh-job-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .nh-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 14px;
    }

    .nh-tag {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 18px;
        background: #f1f1f1;
        color: #333;
    }

        
        .nh-tag:has(.nav-book-btn) {
            width: 100%;
            padding: 0;
            background: transparent;
        }

        .nh-tag .nav-book-btn {
            width: 85%;
            display: flex;
            justify-content: center;
            padding: 12px 0;
            font-size: 15px;
            border-radius: 12px;
        }

   
    .nh-description {
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }
}

@media (max-width: 768px) {

    .nh-tags {
        overflow: visible;
    }

    .nh-tag {
        max-width: 100%;
        white-space: normal; 
        word-break: break-word; 
        flex-shrink: 1; 
    }

  
    .nh-tag {
        text-align: center;
    }
}
.nh-tag {
    font-size: 11px;
    padding: 7px 30px;
}

@media (max-width: 768px) {

 
    .hero {
        padding: 30px 15px 10px;
        margin-bottom: 0;
        min-height: auto;
    }

   
}

@media (max-width: 768px) {

    .hero {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .services {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

        .services h2 {
            margin-top: 0 !important;
        }
}

@media (max-width: 768px) {
    .hero-image {
        margin-bottom: -500px; 
    }
}


@media (max-width: 768px) {

    .footer-section {
        padding: 30px 16px;
        text-align: center;
    }

 
    .footer-content .para {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .footer-buttons {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 30px;
    }

    .footer-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 30px;
        text-align: center;
    }

   
    .footer-section .row {
        flex-direction: column;
        text-align: left;
        gap: 22px;
        margin-top: 10px;
    }

    .footer-section .col-md-3 {
        width: 100%;
        margin-bottom: 0;
    }

    .footer-section h5 {
        font-size: 16px;
        margin-bottom: 12px;
        text-align: left;
    }

 
    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-link {
        font-size: 14px;
        line-height: 1.6;
    }

   
    .footer-bottom {
        margin-top: 30px;
        text-align: center;
    }

        .footer-bottom h4 {
            font-size: 12px;
            line-height: 1.5;
            margin-bottom: 6px;
        }
}


.nh-tag-action {
    background: transparent;
    padding: 0;
    border: none;
}


.nh-pill-btn {
    background-color: #e46a41;
    color: #fff; 
    border: none;
    border-radius: 999px; 
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
   margin-top:15px;
}

   
    .nh-pill-btn:hover {
        background-color: #799097;
        transform: translateY(-1px);
    }

 
    .nh-pill-btn:active {
        transform: translateY(0);
    }

.hs-tiles {
    max-height: calc(4 * 140px + 3 * 20px);
  
    overflow-y: auto;
    padding-right: 6px; 
}


.hs-tiles {
    scroll-behavior: smooth;
}

   
    .hs-tiles::-webkit-scrollbar {
        width: 6px;
    }

    .hs-tiles::-webkit-scrollbar-track {
        background: transparent;
    }

    .hs-tiles::-webkit-scrollbar-thumb {
        background-color: #d0d0d0;
        border-radius: 10px;
    }


.nh-description {
    position: relative;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}


.nh-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.nh-description.expanded .nh-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}


.nh-read-more {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #0f766e;
    cursor: pointer;
    text-decoration: none;
}

    .nh-read-more:hover {
        text-decoration: underline;
    }

.nh-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nh-tag-action {
    margin-left: auto; 
}


.nh-pill-btn {
    background: #e36a3f;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

    .nh-pill-btn:hover {
        background: #d45a30;
    }
@media (max-width: 576px) {
    .nh-tag-action {
        width: 70%;
        margin-left: 0;
    }

    .nh-pill-btn {
        width: 100%;
        justify-content: center;
    }
}
.nh-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nh-description.expanded .nh-text {
    -webkit-line-clamp: unset;
}


/* PAGE WRAPPER */
.policy-section {
    padding: 80px 20px 10px;
    text-align: center;
    background: #fbf7f2;
}

/* ICON */
.policy-icon {
    font-size: 34px;
    color: #2f8f7a;
    margin-bottom: 16px;
}

/* TITLE */
.policy-title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

/* SUBTITLE */
.policy-subtitle {
    font-size: 18px;
    color: #7a6f65;
    margin-bottom: 18px;
}

/* DIVIDER */
.policy-divider {
    width: 90px;
    height: 4px;
    background: #e46a41;
    border-radius: 4px;
    margin: 0 auto 50px;
}

/* CARD */
.policy-card {
    max-width: 820px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 42px 40px;
    text-align: left;
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    border: 1px solid #e9f0ee;
}

    .policy-card p {
        font-size: 17px;
        line-height: 1.7;
        color: #5b524a;
        margin-bottom: 20px;
    }

    .policy-card strong {
        color: #000;
        font-weight: 700;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .policy-title {
        font-size: 32px;
    }

    .policy-card {
        padding: 30px 26px;
    }
}

.policy-cards-section {
    background: #fbf7f2;
    padding: 60px 20px;
}

.policy-cards {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* CARD BASE */
.policy-card {
    border-radius: 18px;
    padding: 36px 30px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    border: 1px solid;
    transition: transform 0.25s ease;
}

    .policy-card:hover {
        transform: translateY(-6px);
    }

    /* ICON */
    .policy-card .icon {
        font-size: 42px;
        margin-bottom: 18px;
    }

    /* TITLE */
    .policy-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 14px;
        color: #2f2a26;
    }

    /* TEXT */
    .policy-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #6b6158;
    }

    /* COLOR THEMES */
    .policy-card.green {
        background: #f1f7f3;
        border-color: #cfe3da;
    }

        .policy-card.green .icon {
            color: #2f8f7a;
        }

    .policy-card.yellow {
        background: #fdf7eb;
        border-color: #f1d7a3;
    }

        .policy-card.yellow .icon {
            color: #f0b429;
        }

    .policy-card.peach {
        background: #fdf2ee;
        border-color: #f3c6b8;
    }

        .policy-card.peach .icon {
            color: #f28b6a;
        }

/* RESPONSIVE */
@media (max-width: 900px) {
    .policy-cards {
        grid-template-columns: 1fr;
    }
}
.policy-details-section {
    background: #fbf7f2;
    padding: 60px 20px 10px;
}

.policy-details-card {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 46px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* HEADING */
.policy-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    color: #2f8f7a;
    font-size: 26px;
}

/* POLICY ITEM */
.policy-item {
    position: relative;
    padding-left: 26px;
    margin-bottom: 26px;
}

    .policy-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 4px;
        height: calc(100% - 6px);
        border-radius: 4px;
    }

    /* TITLE */
    .policy-item h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #2f2a26;
    }

    /* TEXT */
    .policy-item p {
        font-size: 16px;
        line-height: 1.65;
        color: #6b6158;
        margin: 0;
    }

    /* COLOR VARIANTS */
    .policy-item.green::before {
        background: #2f8f7a;
    }

    .policy-item.yellow::before {
        background: #f0b429;
    }

    .policy-item.coral::before {
        background: #f28b6a;
    }

    .policy-item.brown::before {
        background: #9c8574;
    }

    .policy-item.teal::before {
        background: #3fa7a3;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .policy-details-card {
        padding: 28px 26px;
    }

    .policy-heading {
        font-size: 22px;
    }
}


.city-filter {
    margin-bottom: 24px;
}


    .city-filter label {
        display: block;
        font-weight: 600;
        font-size: 14px;
        color: #2f2a26;
        margin-bottom: 6px;
    }


    .city-filter input,
    .city-filter select {
        width: 50%;
        padding: 12px 14px;
        border-radius: 8px;
        border: 1px solid #d9d3cc;
        background: #fbf9f6;
        font-size: 15px;
        color: #2f2a26;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }


        .city-filter input::placeholder {
            color: #9c8f84;
        }


        .city-filter input:focus,
        .city-filter select:focus {
            border-color: #2f8f7a;
            box-shadow: 0 0 0 3px rgba(47,143,122,0.15);
            background: #ffffff;
        }

    .city-filter select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b6158'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 16px;
        padding-right: 42px;
    }

@media (max-width: 768px) {
    .city-filter .col-12 {
        margin-bottom: 16px;
    }
}















/* ===== OVERLAY ===== */
.nh-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ===== POPUP BOX ===== */
.nh-popup-v2 {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 22px;
    width: 92%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* ===== TITLE ===== */
.popup-title {
    font-size: 20px;
    font-weight: 700;
    color: #5f7f7a;
    margin-bottom: 14px;
}

/* ===== PHONE ===== */
.popup-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

    .popup-phone i {
        color: #555;
    }

/* ===== TEXT ===== */
.popup-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 22px;
    line-height: 1.5;
}

/* ===== BUTTONS ===== */
.nh-popup-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

/* WhatsApp (ORANGE) */
.btn-whatsapp {
    background: #d66a2c;
    color: #fff;
    padding: 12px 22px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Close button */
.btn-close {
    background: #e5e7eb;
    color: #9ca3af;
    padding: 12px 22px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    border: none;
}
/* ===== TABLET VIEW FIX (STACK BUTTONS) ===== */
@media (min-width: 600px) and (max-width: 1024px) {

    .nh-popup-v2 {
        max-width: 440px;
        width: 90%;
    }

    .nh-popup-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

        .nh-popup-actions a,
        .nh-popup-actions button {
            width: 80%;
            max-width: 260px;
        }
}
/* ===== TABLET VIEW – SIDE BY SIDE FIX ===== */
@media (min-width: 600px) and (max-width: 1024px) {

    .nh-popup-v2 {
        max-width: 460px;
        width: 90%;
    }

    .nh-popup-actions {
        display: flex;
        flex-direction: row; /* IMPORTANT */
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
    }

    .btn-whatsapp,
    .btn-close {
        width: auto;
        min-width: 160px;
        padding: 12px 22px;
        justify-content: center;
    }
}





/*+button*/



/* FLOATING QUICK ACTIONS */
.quick-actions-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

/* Floating Button */
.fab-btn {
    width: 66px;
    height: 56px;
    border-radius: 50%;
    background: #e63946;
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* Popup Card */
.quick-actions {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    display: none;
}

/* Title */
.qa-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

/* Buttons */
.qa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}

/* Colors */
.qa-home {
    background: #3b82f6;
}

.qa-buddy {
    background: #22c55e;
}

.qa-business {
    background: #a855f7;
}

.qa-login {
    background: #374151;
}

.qa-btn i {
    width: 18px;
    text-align: center;
}

/* Mobile */
@@media (max-width: 768px) {
    .quick-actions {
        width: 230px;
    }
}


