@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

.navbar {
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    align-items: center;
    position: sticky;
    top: 0;
    font-family: 'Lobster', cursive;
    z-index: 1;
    display: flex;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-menu {
    display: flex;
}

.navbar-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    background-color: transparent;
    color: white;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #333;
        width: 100%;
        text-align: center;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu ul {
        flex-direction: column;
    }

    .navbar-menu ul li {
        margin: 10px 0;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}


.navbar ul li {
    list-style: none;
}

.navbar ul li a {
    color: black;
    text-decoration: none;
    padding: 1rem;
    font-family: 'Roboto', sans-serif;
}

.navbar ul li a:hover {
    border-bottom: 3px solid #0186C3;
}

.logo {
    height: 40px;
    width: auto;
    float: left;
}

/* Header section */

.header {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1.3rem;
    padding-left: 1.3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0;
}

.header-btn,
.about-btn,
.contact-btn {
    background-color: #0186C3;
    border: none;
    border-radius: 10rem;
    padding: 1rem;
    width: 8rem;
    font-size: 1rem;
    font-weight: bolder;
    font-family: 'Noto Sans JP', sans-serif;
    color: white;
}

.btn-link {
    text-decoration: none;
    color: white;
}

/* Services section */
.services-cards,
.team-cards {
    display: flex;
    flex: 1;
}

.container {
    margin: 10px auto;
    width: 74rem;
}

.services-text,
.team-head {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.services-para {
    text-align: center;
    color: #0186C3;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bolder;
    font-size: 3rem;
}

.services-subtext,
.team-text,
.team-subtext {
    text-align: center;
    color: #0186C3;
}

.cards-para {
    text-align: center;
    font-size: 1rem;
    margin: 10px auto;
    padding-bottom: 1.6rem;
}

.cards {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 1.3rem;
    border: 1.5px solid #c2bdc7;
    margin-left: 1rem;
    border-radius: 1rem;
}

.cards-img {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cards:hover {
    border: 3px solid #0186C3;
}

.cards i {
    color: #0186C3;
    padding: 2rem;
}

/* About section */
#about {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 80vh;
}

.about-section {
    margin: 2rem;
}

.about-img,
.work-img {
    width: 50%;
    border-radius: 2rem;
}

.about-para {
    font-family: 'Noto Sans JP', sans-serif;
    color: #0186C3;
    font-weight: bolder;
    font-size: 2rem;
    padding-bottom: 3rem;
}

.about-head {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-para2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: justify;
}

/* work-section */
#work {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 80vh;
    margin-top: 6rem;
}

.work-section {
    margin: 1rem;
}

.work-head {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.clients-cards {
    display: flex;
    flex: 1;
}

.client-card {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 1.3rem;
    border: 1.5px solid #c2bdc7;
    margin-left: 7rem;
    border-radius: 1rem;
}


/* team section */
.team-img {
    width: 300px;
    padding-right: 10px;
    max-width: 300px;
}


.team-subtext {
    color: #0186C3;
}

.team-card {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 1.3rem;
    margin-left: 12rem;
}

#team {
    margin-top: 6rem;
    padding: 0 1rem;
}

.team-head,
.contact-head {
    color: #0186C3;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .team-card {
        margin-left: 0;
        /* Remove margin on mobile */
    }

    .team-img {
        width: 100%;
        /* Ensure images fit the screen */
        max-width: 100%;
        /* Ensure images don’t overflow */
        padding-right: 0;
        /* Remove padding for mobile */
    }

    .team-head,
    .contact-head {
        font-size: 1.2rem;
        /* Adjust font size for smaller screens */
    }
}

/* contact section */
.contact-head {
    font-size: 3rem;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
}

.contact-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    margin-left: 10px;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 50px;
}

.contact-header {
    margin-bottom: 20px;
}

.contact-section {
    float: left;
    margin-top: 100px;
}

/* footer */
footer {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    background-color: #0186C3;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

footer a {
    text-decoration: none;
    color: black;
}

/* .contact-btn {
    margin-bottom: 2rem;
} */

.about-head {
    font-size: 2rem;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    color: #0186C3;
}

.about-card {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 1.3rem;
}

.ach-section {
    display: flex;
    text-align: center;
    padding-left: 70%;
}

.client-btn {
    background-color: #0186C3;
    border: none;
    border-radius: 10rem;
    padding: 1rem;
    width: 8rem;
    font-size: 1rem;
    font-weight: bolder;
    font-family: 'Noto Sans JP', sans-serif;
    color: white;
    align-items: center;
    margin-left: 600px;
}

.project-card {
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 1.3rem;
}

.team-subtext {
    text-align: justify;
}

.office-img {
    padding-right: 40px;
}

.office-map {
    float: right;
    margin-right: 10px;
    border: 2px solid #0186C3;
    border-radius: 10px;
}

.mp-imgdiv {
    padding-right: 20px;
    float: left;
    margin-left: 50px;
    border: 2px solid red;
}

.mp-para {
    font-size: large;
    text-align: justify;
}

.mp-head {
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #0186C3;
    padding-bottom: 10px;
}

.mp-img1 {
    height: 250px;
    margin-right: 20px;
    border: 2px solid #0186C3;
    margin-left: 35px;
}

.mp-img2 {
    height: 250px;
    margin-right: 20px;
    border: 2px solid #0186C3;
    margin-left: 15px;
}

.mp-div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mp-desc {
    margin-right: 30px;
}

.mp-list {
    margin-left: 100px;
    font-size: large;
    line-height: 30px;
}

.mp-listhead {
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #0186C3;
    padding-bottom: 10px;
    text-align: center;
}

.mp-div3 {
    display: flex;
    justify-content: center;
}

.mp-head3 {
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #0186C3;
    padding-bottom: 20px;
    text-align: center;
}

.mp-list2 {
    padding-left: 30px;
    font-size: large;
    line-height: 30px;
}

.main-section {
    padding-left: 50px;
}

.foot-div {
    display: flex;
    align-items: flex-start;
    padding-left: 100px;
    margin-top: 10px;
}

.foot-div2 {
    display: flex;
    padding-left: 1000px;
}