* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #6e6e6e;
    overflow-x: hidden;
}

header {
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('../public/landingpage.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    min-height: 500px;
    position: relative;
}

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 15px 30px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
}

.logo {
    position: static;
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.hero-text {
    width: 100%;
    max-width: 600px;
    align-self: flex-start;
    text-align: left;
    margin-top: 40px;
}

.hero-small {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6e6e6e;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 700;
    color: #6e6e6e;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 520px;
}

.hero-btn,
.footer-schedule-btn,
.careers-btn,
.lets-talk-btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero-btn:hover,
.footer-schedule-btn:hover,
.careers-btn:hover,
.lets-talk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.hero-btn {
    background: #499c9c;
    color: #ffffff;
    padding: 12px 24px;
}

.hero-btn:hover {
    background: #3f8787;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-trust {
    font-size: 14px;
    font-weight: 600;
    color: #499c9c;
    line-height: 1.4;
    margin: 0;
}

nav a {
    color: #6e6e6e;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background 0.3s;
}

nav a:hover {
    background: #f0f0f0;
}

nav a[href="#talk"] {
    border: 1.5px solid #000000;
    border-radius: 999px;
    padding: 10px 20px;
}

.program-section {
    text-align: center;
    background: #ececec;
    padding: 30px 20px 0;
}

.program-content {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.program-section h2,
.what-we-do-section h2 {
    margin: 0 0 8px;
    color: #499c9c;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    grid-column: 1;
}

.program-title {
    margin: 0;
    color: #6e6e6e;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    grid-column: 1;
}

.program-desc {
    margin: 8px auto 0;
    width: min(100%, 760px);
    font-size: 14px;
    font-weight: normal;
    color: #6e6e6e;
    line-height: 2;
    text-align: center;
    box-sizing: border-box;
}

.program-register-btn {
    display: inline-block;
    margin: 20px auto 0;
    background: #499c9c;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.program-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    background: #3f8787;
}

.program-image {
    margin: 24px auto 48px;
    max-width: 100%;
    width: min(100%, 920px);
    height: auto;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-image:hover,
.testimonial-image:hover,
.service-icon:hover,
.about-vision-image:hover,
.about-side-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.what-we-do-section {
    text-align: center;
    background: #ffffff;
    padding: 48px 20px 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 960px;
    margin: 40px auto 0;
}

.clients-content {
    margin-top: 60px;
}

.testimonials-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.testimonial-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.services-row-top .service-card {
    flex: 0 1 220px;
}

.services-row-bottom .service-card {
    flex: 0 1 200px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.service-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item {
    background: #ffffff;
    border: 1.5px solid #499c9c;
    border-radius: 999px;
    color: #499c9c;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.service-item:hover {
    background: #499c9c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.service-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-modal.is-open {
    display: flex;
}

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.service-modal-dialog {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    width: 100%;
    padding: 32px 28px 28px;
    text-align: center;
    z-index: 1;
}

.service-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #6e6e6e;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    padding: 0;
}

.service-modal-close:hover {
    color: #499c9c;
}

.service-modal-title {
    margin: 0 0 16px;
    color: #499c9c;
    font-size: 24px;
    font-weight: 700;
}

.service-modal-desc {
    margin: 0;
    color: #6e6e6e;
    font-size: 16px;
    line-height: 1.7;
}

.about-header {
    background: #ececec;
    padding: 0 0 60px;
    min-height: 360px;
}

.about-white-section {
    background: #ffffff;
    padding: 40px 30px 60px;
}

.about-white-content {
    max-width: 800px;
    margin: 0 auto;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-vision-image {
    max-width: 70%;
    height: auto;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-intro-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 120px 30px 0;
    flex-wrap: wrap;
}

.about-intro {
    max-width: 760px;
    margin: 0;
    text-align: left;
    flex: 1 1 520px;
}

.about-side-image {
    width: min(100%, 360px);
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    flex: 0 0 360px;
    margin-left: -60px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-intro-line {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    color: #6e6e6e;
}

.about-intro-highlight {
    margin-top: 8px;
}

.about-intro-highlight span {
    color: #499c9c;
}

.about-support-text {
    margin: 18px 0 0;
    max-width: 700px;
    font-size: 15px;
    line-height: 1.8;
    color: #499c9c;
    font-weight: 400;
}

.about-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 10px;
    max-width: 700px;
}

.about-bullets li {
    font-size: 15px;
    font-weight: 700;
    color: #499c9c;
}

.about-bullets span {
    color: #499c9c;
    margin-right: 8px;
    font-weight: 700;
}

.site-footer {
    background: #499c9c;
    color: #ffffff;
    padding: 48px 30px 36px;
    text-align: center;
    width: 100%;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-heading,
.footer-desc,
.footer-trust {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 520px;
}

.footer-heading {
    font-weight: 700;
}

.footer-desc,
.footer-trust {
    font-weight: 400;
}

.footer-schedule-btn {
    display: inline-block;
    background: #ffffff;
    color: #499c9c;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-schedule-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.footer-copy {
    margin: 16px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    font-size: 13px;
    opacity: 0.9;
}
