﻿* {
    box-sizing: border-box;
}

@font-face {
    font-family: "Lao MN";
    src: url("lao-mn.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: "Lao MN";
}

.header {
    background-image: url('../images/Neo-Juris-logo.jpg');
    background-size: cover;
    /* background-position: center;
 padding: 40px 20px;	 */
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
    padding-top: 10%;
    padding-left: 12%;
}

.logo img {
    width: 300px;
    max-width: 100%;
    height: auto;
}

.content {
    max-width: 500px;
    margin-top: 30px;
}

    .content p {
        font-size: 1.8rem;
        line-height: 1.6;
        margin: 0 0 20px;
    }

.btn {
    background-color: #007C8A;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none;
}

    .btn:hover {
        background-color: #005f68;
    }

@media (max-width: 600px) {
    .header {
        align-items: center;
        text-align: center;
        padding: 30px 15px;
    }

    .logo img {
        width: 140px;
    }

    .content p {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        font-size: 1.4rem;
        padding: 14px;
    }
}
/* ============================================ */
#disclaimerModal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    position: relative;
    background: #fff;
    max-width: 600px;
    height: 65vh;
    margin: 60px auto;
    border-radius: 8px;
    z-index: 10000;
    font-family: sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

    .modal-content h2 {
        margin-top: 0;
        color: white;
        padding-left: 10px;
        padding-top: 10px;
    }

.modal-scroll {
    overflow-y: auto;
    flex: 1;
    margin-bottom: 20px;
    padding-right: 10px;
}

.modal-content ul {
    padding-left: 20px;
}

.modal-content button {
    align-self: flex-end;
    background-color: #007C8A;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
}

    .modal-content button:hover {
        background-color: #005f68;
    }

@media (max-width: 600px) {
    .modal-content {
        width: 90%;
        height: 85vh;
        margin: 50px auto;
    }

    .modal-scroll {
        font-size: 0.95rem;
    }
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
    padding-right: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.modal-text {
    text-align: justify;
    overflow: auto;
    padding: 5px 15px;
}

.clsDesclimer {
    background: #007680;
    border-radius: 8px 8px 0px 0px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.contact-email a {
    color: #007C8A;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

    .contact-email a:hover {
        text-decoration: underline;
    }

@media (max-width: 600px) {
    .topbar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-email a {
        font-size: 0.8rem;
    }
}

.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

    .menu a {
        color: #007C8A;
        text-decoration: none;
        font-size: 1.1rem;
        transition: 0.3s;
    }

        .menu a:hover {
            color: #00b7c6;
        }

@media (max-width: 900px) {

    .topbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

        .menu a {
            font-size: 1rem;
        }
}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    padding: 10px 20px;
    background: #f7f7f7;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #111;
}

.about-intro {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 60px;
}

.team-section {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    background: #fff;
    width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .team-card:hover {
        transform: translateY(-8px);
    }

    .team-card img {
        width: 100%;
        height: 435px;
        object-fit: cover;
    }

.team-content {
    padding: 30px;
}

    .team-content h3 {
        margin: 0;
        font-size: 2rem;
        color: #111;
    }

    .team-content span {
        display: block;
        margin-top: 8px;
        margin-bottom: 20px;
        color: #007C8A;
        font-size: 1rem;
        font-weight: 600;
    }

    .team-content p {
        color: #666;
        line-height: 1.7;
        font-size: 1rem;
    }

/* MOBILE */

@media (max-width: 768px) {

    .about-section h2 {
        font-size: 2.2rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .team-card {
        width: 100%;
    }

        .team-card img {
            height: auto;
        }
}

/*********************contact us*/
.header1 {
    background-image: url('/images/background_contact.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.header1-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logoc img {
    width: 280px;
    max-width: 100%;
    height: auto;
}

.content {
    max-width: 500px;
    margin-top: 20px;
}

    .content p {
        font-size: 1.8rem;
        line-height: 1.6;
        margin: 0 0 20px;
    }

.contact-form {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
}

    .contact-form h2 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .contact-form label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
    }

    .contact-form textarea {
        resize: vertical;
        min-height: 100px;
    }

@media (min-width: 768px) {
    .header1-inner {
        flex-direction: row;
        justify-content: space-between;
        /*  max-width: 1000px;
        margin: auto;
        align-items: flex-start; */
    }

    .left-section, .contact-form {
        flex: 1;
    }

    .left-section {
        align-items: flex-start;
        text-align: left;
    }

    .mobileScr {
        display: none;
    }

    .LaptopScr {
        display: '';
    }
}

@media (max-width: 600px) {
    .header1 {
        align-items: center;
        text-align: center;
        padding: 30px 15px;
    }

    .logoc img {
        width: 140px;
    }

    .logomy img {
        width: 140px;
    }

    .logo1 img {
        width: 140px;
    }

    .content p {
        font-size: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 1rem;
        padding: 14px;
    }

    .mobileScr {
        display: '';
    }

    .LaptopScr {
        display: none;
    }
}

.logoc {
    padding-top: 25%;
    padding-left: 30%;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 10px solid #007682;
}


/* =========================================
   FOUNDING PARTNER
========================================= */
.founder-section {
    max-width: 1050px;
    margin: 70px auto 90px;
    padding: 55px 65px;
    background: #ffffff;
    border-radius: 14px;
    border-top: 5px solid #007C8A;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    position: relative;
}

.founder-content {
    max-width: 950px;
    margin: auto;
}

.founder-label {
    color: #007C8A;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.founder-content h2 {
    text-align: left;
    font-size: 2.4rem;
    margin: 0 0 15px;
    color: #222;
}

.founder-divider {
    width: 70px;
    height: 3px;
    background: #007C8A;
    margin-bottom: 25px;
}

.founder-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.founder-content strong {
    color: #333;
}

.founder-content blockquote {
    margin: 30px 0 0;
    padding: 20px 25px;
    border-left: 4px solid #007C8A;
    background: #f5f9f9;
    color: #007C8A;
    font-size: 1.15rem;
    font-style: italic;
}


/* =========================================
   TEAM HEADING
========================================= */

.team-heading {
    text-align: center;
    margin: 20px auto 50px;
    max-width: 800px;
}

    .team-heading span {
        display: block;
        color: #007C8A;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .team-heading h2 {
        margin: 0 0 12px;
        font-size: 2.7rem;
        color: #111;
    }

    .team-heading p {
        margin: 0;
        color: #666;
        font-size: 1.05rem;
    }


/* =========================================
   TEAM CARDS
========================================= */

.team-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.team-card {
    background: #fff;
    width: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

    .team-card:hover {
        transform: translateY(-8px);
        border-top-color: #007C8A;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.team-content {
    padding: 30px;
}

    .team-content h3 {
        margin: 0;
        font-size: 1.8rem;
        color: #222;
    }

    .team-content span {
        display: block;
        margin-top: 8px;
        margin-bottom: 22px;
        color: #007C8A;
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.5;
    }

    .team-content p {
        color: #666;
        line-height: 1.75;
        font-size: 0.98rem;
        margin-bottom: 15px;
    }


/* =========================================
   OFFICE SECTION
========================================= */

.office-section {
    margin: 100px auto 20px;
    padding: 60px 30px;
    background: #007680;
    border-radius: 14px;
    text-align: center;
    color: white;
}

.office-content {
    max-width: 750px;
    margin: auto;
}

.office-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d8ffff;
}

.office-section h2 {
    margin: 10px 0 15px;
    color: white;
    font-size: 2.4rem;
}

.office-divider {
    width: 60px;
    height: 3px;
    background: white;
    margin: 0 auto 25px;
}

.office-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.map-button {
    display: inline-block;
    padding: 13px 25px;
    background: white;
    color: #007680;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s;
}

    .map-button:hover {
        background: #e8ffff;
        transform: translateY(-2px);
    }


/* =========================================
   MOBILE
========================================= */
@media (max-width: 900px) {

    .team-section {
        grid-template-columns: 1fr;
    }

    .team-card {
        width: 100%;
    }

    .team-photo {
        height: 420px;
    }

    .founder-section {
        padding: 40px 30px;
    }

    .founder-content h2 {
        font-size: 2rem;
    }
}


@media (max-width: 600px) {

    .team-photo {
        height: auto;
        max-height: 500px;
    }

        .team-photo img {
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }

    .team-content {
        padding: 25px 22px;
    }
}

/* =========================================
   LINKEDIN - CONTACT PAGE
========================================= */

.linkedin-section {
    margin-top: 25px;
    text-align: center;
}

.linkedin-text {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.linkedin-section a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.linkedin-section img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

    .linkedin-section img:hover {
        transform: scale(1.12);
    }
