﻿.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/left1.png') 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: 190px;
    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: -230px;
    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: 49%;
    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: 0;
    padding-top: 0;
    min-height: 60vh;
}

    .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: 450px;
    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;
    }


@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: #fbf9f4;
}

    .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: 50px;
    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 {
    background-color: #f7e7e7;
    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: #db8d73;
    color: #fff;
}

    .footer-btn-primary:hover {
        background-color: #e1b20f;
    }

.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: -80px !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: #0056ff;
        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: 40px 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: 260px;
    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;
    }
}
