:root {
    --blue: #1288f8;
    --blue-dark: #075ec8;
    --gold: #f5c542;
    --dark: #0b2347;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans Thai", sans-serif;
    background: #eef7ff;
    color: var(--dark);
    overflow: hidden;
}

.presentation {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    min-height: 100vh;
    padding: 110px 7vw 90px;
    opacity: 0;
    transform: scale(.96);
    pointer-events: none;
    transition: .65s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 197, 66, .38), transparent 30%),
        radial-gradient(circle at 85% 25%, rgba(18, 136, 248, .24), transparent 36%),
        linear-gradient(135deg, #ffffff, #e7f4ff);
    animation: bgMove 9s ease-in-out infinite alternate;
}

/* Navbar */
.site-navbar {
    position: fixed;
    z-index: 50;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 32px));
    min-height: 64px;
    padding: 8px 12px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 42px rgba(7, 94, 200, .13);
    border: 1px solid rgba(255, 255, 255, .72);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    flex: 0 0 auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(7, 94, 200, .22);
}

.brand-text {
    display: grid;
    line-height: 1.22;
}

.brand-text strong {
    font-size: .95rem;
}

.brand-text small {
    font-size: .75rem;
    color: #60718c;
    font-weight: 700;
}

.nav-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--dark);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 800;
    transition: .22s ease;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    box-shadow: 0 10px 24px rgba(7, 94, 200, .22);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--blue-dark);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: white;
    border-radius: 999px;
    transition: .22s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Shared content */
.profile-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 55px;
    align-items: center;
    height: 100%;
}

.photo-frame {
    width: min(420px, 80vw);
    aspect-ratio: 3 / 4;
    margin: auto;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    display: grid;
    place-items: center;
    color: white;
    font-size: 3rem;
    font-weight: 900;
    box-shadow: 0 30px 70px rgba(7, 94, 200, .22);
}

.badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #fff2ad);
    font-weight: 900;
}

h1 {
    font-family: "Chonburi", serif;
    font-size: clamp(3rem, 6vw, 6.2rem);
    line-height: 1.15;
    margin: 24px 0 16px;
}

h1 span,
.section-title span {
    color: var(--blue-dark);
}

.lead {
    font-size: 1.35rem;
    line-height: 1.8;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    font-family: "Chonburi", serif;
    font-size: clamp(2.3rem, 5vw, 5rem);
    margin: 14px 0 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.info-card,
.detail-list,
.timeline-item {
    background: rgba(255, 255, 255, .9);
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(7, 94, 200, .13);
}

.info-card {
    padding: 22px;
}

.info-card small {
    display: block;
    color: #5e7290;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-card strong {
    font-size: 1.25rem;
}

.detail-list {
    max-width: 980px;
    margin: 0 auto;
    padding: 26px;
}

.detail-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding: 20px;
    border-bottom: 1px solid rgba(7, 94, 200, .12);
    font-size: 1.18rem;
}

.detail-row:last-child {
    border-bottom: 0;
}

.detail-row b {
    color: var(--blue-dark);
}

.timeline {
    max-width: 980px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 20px;
    padding: 24px;
    margin-bottom: 20px;
}

.timeline-item>span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 8px;
    box-shadow: 0 0 0 8px rgba(245, 197, 66, .22);
}

.timeline-item h3 {
    margin: 0 0 8px;
    color: var(--blue-dark);
    font-size: 1.45rem;
}

.timeline-item p {
    margin: 0;
    font-size: 1.1rem;
}

.slide-controls {
    position: fixed;
    z-index: 60;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, .9);
    padding: 8px 15px;
    border-radius: 999px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.slide-controls button,
.home-link {
    border: 0;
    border-radius: 999px;
    background: var(--blue-dark);
    color: white;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}

.slide-controls button {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
}

.home-link {
    padding: 9px 17px;
}

/* Animation */
.animate {
    opacity: 0;
}

.active .fade-up {
    animation: fadeUp .75s ease forwards;
}

.active .zoom-in {
    animation: zoomIn .65s ease forwards;
}

.active .slide-left {
    animation: slideLeft .8s ease forwards;
}

.active .slide-right {
    animation: slideRight .8s ease forwards;
}

.delay-1 {
    animation-delay: .15s !important;
}

.delay-2 {
    animation-delay: .3s !important;
}

.delay-3 {
    animation-delay: .45s !important;
}

.delay-4 {
    animation-delay: .6s !important;
}

.delay-5 {
    animation-delay: .75s !important;
}

.delay-6 {
    animation-delay: .9s !important;
}

.delay-7 {
    animation-delay: 1.05s !important;
}

.delay-8 {
    animation-delay: 1.2s !important;
}

.bg-animation,
.thai-floating-letters {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bubble,
.ring,
.star {
    position: absolute;
    opacity: .55;
}

.bubble {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(18, 136, 248, .25), rgba(245, 197, 66, .35));
    filter: blur(.2px);
    animation: floatBubble 9s ease-in-out infinite alternate;
}

.b1 {
    left: 8%;
    top: 18%;
    animation-delay: 0s;
}

.b2 {
    right: 10%;
    top: 20%;
    width: 90px;
    height: 90px;
    animation-delay: 1.5s;
}

.b3 {
    left: 55%;
    bottom: 12%;
    width: 150px;
    height: 150px;
    animation-delay: 2.5s;
}

.star {
    color: var(--gold);
    font-size: 42px;
    text-shadow: 0 8px 22px rgba(245, 197, 66, .35);
    animation: twinkle 2.8s ease-in-out infinite alternate;
}

.s1 {
    left: 18%;
    bottom: 18%;
    animation-delay: .5s;
}

.s2 {
    right: 24%;
    bottom: 28%;
    font-size: 34px;
    animation-delay: 1.2s;
}

.ring {
    width: 180px;
    height: 180px;
    border: 18px solid rgba(18, 136, 248, .13);
    border-radius: 50%;
    animation: rotateRing 14s linear infinite;
}

.r1 {
    right: -50px;
    bottom: 80px;
}

.r2 {
    left: -70px;
    bottom: -40px;
    width: 240px;
    height: 240px;
    border-color: rgba(245, 197, 66, .18);
    animation-duration: 18s;
}

.thai-floating-letters span {
    position: absolute;
    font-family: "Chonburi", serif;
    font-weight: 900;
    color: var(--blue-dark);
    text-shadow: 0 10px 30px rgba(7, 94, 200, .18);
    animation-name: thaiFloat;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    user-select: none;
}

.thai-floating-letters span:nth-child(3n) {
    color: var(--gold);
}

.thai-floating-letters span:nth-child(4n) {
    color: #ffffff;
    text-shadow: 0 8px 24px rgba(7, 94, 200, .22);
}

.slide::after {
    content: "";
    position: absolute;
    inset: -40%;
    z-index: -1;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .35) 50%, transparent 65%);
    transform: translateX(-60%);
    animation: lightSweep 7s ease-in-out infinite;
    pointer-events: none;
}

/* Committee */
.committee-hero {
    max-width: 900px;
    margin: 45px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.committee-badge {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    font-weight: 900;
    margin-bottom: 18px;
}

.committee-hero h3 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    margin: 0 0 12px;
    color: var(--blue-dark);
}

.committee-hero p {
    font-size: 1.2rem;
    margin: 0;
}

.committee-slide {
    padding-top: 78px;
    padding-bottom: 124px;
}

.committee-slide .section-title h2 {
    margin: 8px 0 14px;
}

.committee-game-grid {
    max-width: 1240px;
    margin: 4px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.committee-game-card {
    position: relative;
    min-height: 438px;
    font-size: clamp(1.45rem, 2vw, 2rem);
    padding: 18px 22px 16px;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    color: white;
    border: 2px solid rgba(255, 255, 255, .35);
    box-shadow: 0 22px 58px rgba(7, 35, 71, .21);
    transition: .28s ease;
}

.committee-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 78px rgba(7, 35, 71, .28);
}

.committee-game-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center 35%, rgba(255, 255, 255, .18), transparent 31%),
        linear-gradient(140deg, rgba(255, 255, 255, .15), transparent 34%, rgba(255, 255, 255, .06));
    pointer-events: none;
}

.committee-game-card::after {
    content: "";
    position: absolute;
    inset: -50%;
    background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .18) 50%, transparent 58%);
    animation: gameCardShine 6s ease-in-out infinite;
    pointer-events: none;
}

.card-blue {
    background:
        linear-gradient(160deg, rgba(7, 94, 200, .88), rgba(8, 34, 77, .95)),
        radial-gradient(circle at top left, rgba(18, 136, 248, .42), transparent 40%);
}

.card-gold {
    background:
        linear-gradient(160deg, rgba(158, 112, 18, .88), rgba(69, 48, 9, .95)),
        radial-gradient(circle at top left, rgba(245, 197, 66, .46), transparent 40%);
}

.card-blue-soft {
    background:
        linear-gradient(160deg, rgba(11, 75, 142, .9), rgba(11, 35, 71, .95)),
        radial-gradient(circle at top left, rgba(245, 197, 66, .32), transparent 42%);
}

.game-number {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 48px;
    margin: 0 auto 9px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-size: 1.82rem;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}

.game-role {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 7px 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    color: #fff4b5;
    font-weight: 900;
    margin-bottom: 18px;
}

.game-avatar {
    position: relative;
    z-index: 1;
    width: 275px;
    height: 275px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .48), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08));
    border: 5px solid rgba(255, 255, 255, .72);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .1), 0 18px 42px rgba(0, 0, 0, .24);
    animation: avatarFloat 3.6s ease-in-out infinite alternate;
}

.game-avatar span {
    font-size: 1.9rem;
    font-weight: 900;
    opacity: .85;
}

.committee-game-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 7px;
    font-size: clamp(1.25rem, 1.7vw, 1.75rem);
    line-height: 1.2;
    text-shadow: 0 5px 16px rgba(0, 0, 0, .25);
}

.committee-game-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 11px;
    font-size: .98rem;
    font-weight: 700;
    opacity: .92;
}

.game-duties {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.game-duties span {
    padding: 7px 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .11);
    font-size: .8rem;
    font-weight: 800;
}

/* Role */
.role-grid {
    max-width: 1150px;
    margin: 35px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.role-card {
    min-height: 280px;
    padding: 26px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    transition: .3s ease;
}

.role-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.role-card b {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    display: grid;
    place-items: center;
    color: var(--blue-dark);
    font-size: 1.25rem;
    margin-bottom: 22px;
}

.role-card h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: 1.35rem;
}

.role-card p {
    margin: 0;
    line-height: 1.75;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.76);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bgMove {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.03);
    }
}

@keyframes floatBubble {
    from {
        transform: translateY(0) translateX(0) scale(1);
    }

    to {
        transform: translateY(-35px) translateX(28px) scale(1.08);
    }
}

@keyframes twinkle {
    from {
        opacity: .25;
        transform: scale(.8) rotate(0deg);
    }

    to {
        opacity: .9;
        transform: scale(1.15) rotate(12deg);
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1.08);
    }
}

@keyframes lightSweep {

    0%,
    45% {
        transform: translateX(-65%) rotate(8deg);
    }

    100% {
        transform: translateX(65%) rotate(8deg);
    }
}

@keyframes thaiFloat {
    from {
        transform: translate3d(0, 0, 0) rotate(-8deg) scale(.92);
    }

    to {
        transform: translate3d(32px, -46px, 0) rotate(12deg) scale(1.08);
    }
}

@keyframes gameCardShine {

    0%,
    45% {
        transform: translateX(-62%) rotate(8deg);
    }

    100% {
        transform: translateX(62%) rotate(8deg);
    }
}

@keyframes avatarFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-7px);
    }
}

@media (max-width: 1100px) {
    .nav-menu a {
        padding: 8px 9px;
        font-size: .82rem;
    }

    .committee-game-card {
        min-height: 418px;
    }

    .game-avatar {
        width: 138px;
        height: 138px;
    }

    .committee-game-card h3 {
        font-size: 1.32rem;
    }

    .game-duties span {
        font-size: .74rem;
    }
}

@media (max-width: 980px) {
    .site-navbar {
        border-radius: 28px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 8px;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        text-align: center;
    }
}

@media (max-width: 900px) {
    body {
        overflow: auto;
    }

    .presentation {
        height: auto;
    }

    .slide {
        position: relative;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding: 96px 6vw 70px;
    }

    .committee-slide {
        padding-top: 96px;
        padding-bottom: 70px;
    }

    .profile-layout,
    .info-grid,
    .detail-row,
    .committee-game-grid,
    .role-grid {
        grid-template-columns: 1fr;
    }

    .committee-game-card {
        min-height: auto;
    }

    .slide-controls {
        display: none;
    }
}

.workload-hero {
    max-width: 920px;
    margin: 42px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.workload-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 22px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-size: 2.4rem;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(7, 94, 200, .2);
}

.workload-hero h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.workload-hero p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.workload-grid {
    max-width: 1120px;
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.workload-card {
    min-height: 330px;
    padding: 30px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    transition: .3s ease;
}

.workload-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.workload-card b {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.workload-card h3 {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-size: 1.6rem;
}

.workload-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.75;
}

.duty-list {
    max-width: 1050px;
    margin: 34px auto 0;
    display: grid;
    gap: 18px;
}

.duty-row {
    padding: 24px 30px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 55px rgba(7, 94, 200, .12);
}

.duty-row strong {
    color: var(--blue-dark);
    font-size: 1.25rem;
}

.duty-row span {
    font-size: 1.1rem;
}

@media (max-width: 900px) {

    .workload-grid,
    .duty-row {
        grid-template-columns: 1fr;
    }

    .workload-card {
        min-height: auto;
    }
}

.component-hero {
    max-width: 920px;
    margin: 42px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.component-number {
    width: 112px;
    height: 112px;
    margin: 0 auto 22px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-size: 3rem;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(7, 94, 200, .2);
}

.component-hero h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.component-hero p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.component-grid {
    max-width: 1180px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.component-card {
    min-height: 330px;
    padding: 26px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    transition: .3s ease;
}

.component-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.component-card b {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-size: 1.3rem;
    margin-bottom: 22px;
}

.component-card h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: 1.25rem;
}

.component-card p {
    margin: 0;
    line-height: 1.75;
}

.evidence-board {
    max-width: 1000px;
    margin: 34px auto 0;
    display: grid;
    gap: 18px;
}

.evidence-item {
    padding: 26px 32px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 55px rgba(7, 94, 200, .12);
}

.evidence-item strong {
    color: var(--blue-dark);
    font-size: 1.3rem;
}

.evidence-item span {
    font-size: 1.1rem;
}

@media (max-width: 1100px) {
    .component-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .component-grid,
    .evidence-item {
        grid-template-columns: 1fr;
    }

    .component-card {
        min-height: auto;
    }
}

.awards-hero {
    max-width: 920px;
    margin: 42px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.awards-icon {
    width: 112px;
    height: 112px;
    margin: 0 auto 22px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-size: 3rem;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(7, 94, 200, .2);
}

.awards-hero h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.awards-hero p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.award-grid {
    max-width: 1120px;
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.award-card {
    min-height: 330px;
    padding: 30px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    transition: .3s ease;
}

.award-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.award-card b {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.award-card h3 {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-size: 1.6rem;
}

.award-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.75;
}

.certificate-wall {
    max-width: 1180px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.certificate-card {
    padding: 22px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    text-align: center;
}

.cert-preview {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background:
        linear-gradient(135deg, rgba(18, 136, 248, .18), rgba(245, 197, 66, .28)),
        #ffffff;
    border: 2px dashed rgba(7, 94, 200, .25);
    color: var(--blue-dark);
    font-weight: 900;
    font-size: 1.4rem;
}

.certificate-card h3 {
    margin: 0 0 8px;
    color: var(--blue-dark);
}

.certificate-card p {
    margin: 0;
    color: #5e7290;
    font-weight: 700;
}

@media (max-width: 900px) {

    .award-grid,
    .certificate-wall {
        grid-template-columns: 1fr;
    }

    .award-card {
        min-height: auto;
    }
}

.assigned-hero {
    max-width: 920px;
    margin: 42px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.assigned-icon {
    width: 118px;
    height: 118px;
    margin: 0 auto 22px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-size: 1.75rem;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(7, 94, 200, .2);
}

.assigned-hero h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.assigned-hero p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.assigned-grid {
    max-width: 1180px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.assigned-card {
    min-height: 330px;
    padding: 26px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    transition: .3s ease;
}

.assigned-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.assigned-card b {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-size: 1.3rem;
    margin-bottom: 22px;
}

.assigned-card h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: 1.25rem;
}

.assigned-card p {
    margin: 0;
    line-height: 1.75;
}

.assigned-evidence {
    max-width: 1000px;
    margin: 34px auto 0;
    display: grid;
    gap: 18px;
}

.assigned-row {
    padding: 26px 32px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 55px rgba(7, 94, 200, .12);
}

.assigned-row strong {
    color: var(--blue-dark);
    font-size: 1.3rem;
}

.assigned-row span {
    font-size: 1.1rem;
}

@media (max-width: 1100px) {
    .assigned-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .assigned-grid,
    .assigned-row {
        grid-template-columns: 1fr;
    }

    .assigned-card {
        min-height: auto;
    }
}

.gallery-hero {
    max-width: 920px;
    margin: 42px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.gallery-icon {
    width: 118px;
    height: 118px;
    margin: 0 auto 22px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-size: 1.9rem;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(7, 94, 200, .2);
}

.gallery-hero h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.gallery-hero p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.gallery-grid {
    max-width: 1120px;
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    padding: 22px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    text-align: center;
    transition: .3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.gallery-preview {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background:
        linear-gradient(135deg, rgba(18, 136, 248, .18), rgba(245, 197, 66, .28)),
        #ffffff;
    border: 2px dashed rgba(7, 94, 200, .25);
    color: var(--blue-dark);
    font-weight: 900;
    font-size: 1.4rem;
}

.gallery-card h3 {
    margin: 0 0 8px;
    color: var(--blue-dark);
    font-size: 1.35rem;
}

.gallery-card p {
    margin: 0;
    line-height: 1.65;
}

.photo-board {
    max-width: 1160px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.photo-item {
    min-height: 190px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(231, 244, 255, .9)),
        radial-gradient(circle at 20% 20%, rgba(245, 197, 66, .25), transparent 40%);
    border: 2px solid rgba(255, 255, 255, .85);
    box-shadow: 0 22px 55px rgba(7, 94, 200, .12);
    color: var(--blue-dark);
    font-size: 1.3rem;
    font-weight: 900;
}

@media (max-width: 900px) {

    .gallery-grid,
    .photo-board {
        grid-template-columns: 1fr;
    }
}

.contact-hero {
    max-width: 920px;
    margin: 42px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.contact-icon {
    width: 118px;
    height: 118px;
    margin: 0 auto 22px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(7, 94, 200, .2);
}

.contact-hero h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.contact-hero p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-info-list {
    max-width: 1000px;
    margin: 34px auto 0;
    display: grid;
    gap: 18px;
}

.contact-row {
    padding: 26px 32px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 55px rgba(7, 94, 200, .12);
}

.contact-row strong {
    color: var(--blue-dark);
    font-size: 1.3rem;
}

.contact-row span {
    font-size: 1.1rem;
    font-weight: 700;
}

.thankyou-card {
    max-width: 980px;
    margin: 70px auto 0;
    padding: 58px 52px;
    text-align: center;
    border-radius: 44px;
    background:
        radial-gradient(circle at top left, rgba(245, 197, 66, .24), transparent 34%),
        rgba(255, 255, 255, .94);
    box-shadow: 0 30px 80px rgba(7, 94, 200, .16);
}

.thankyou-card span {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-weight: 900;
    margin-bottom: 20px;
}

.thankyou-card h2 {
    font-family: "Chonburi", serif;
    margin: 0 0 18px;
    color: var(--blue-dark);
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.thankyou-card p {
    max-width: 780px;
    margin: 0 auto 30px;
    font-size: 1.25rem;
    line-height: 1.9;
}

.thankyou-footer {
    display: grid;
    gap: 4px;
    color: var(--dark);
}

.thankyou-footer strong {
    font-size: 1.2rem;
}

.thankyou-footer small {
    color: #60718c;
    font-weight: 700;
}

@media (max-width: 900px) {
    .contact-row {
        grid-template-columns: 1fr;
    }

    .thankyou-card {
        margin-top: 30px;
        padding: 38px 24px;
    }
}

.documents-hero {
    max-width: 920px;
    margin: 42px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.documents-icon {
    width: 118px;
    height: 118px;
    margin: 0 auto 22px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-size: 1.65rem;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(7, 94, 200, .2);
}

.documents-hero h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.documents-hero p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.document-grid {
    max-width: 1180px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.document-card {
    min-height: 330px;
    padding: 26px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    transition: .3s ease;
}

.document-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.document-card b {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-size: 1.3rem;
    margin-bottom: 22px;
}

.document-card h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: 1.25rem;
}

.document-card p {
    margin: 0;
    line-height: 1.75;
}

.document-checklist {
    max-width: 1000px;
    margin: 34px auto 0;
    display: grid;
    gap: 18px;
}

.document-row {
    padding: 26px 32px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 55px rgba(7, 94, 200, .12);
}

.document-row strong {
    color: var(--blue-dark);
    font-size: 1.35rem;
}

.document-row span {
    font-size: 1.1rem;
}

@media (max-width: 1100px) {
    .document-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .document-grid,
    .document-row {
        grid-template-columns: 1fr;
    }

    .document-card {
        min-height: auto;
    }
}

.development-hero {
    max-width: 920px;
    margin: 42px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.development-icon {
    width: 118px;
    height: 118px;
    margin: 0 auto 22px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-size: 1.9rem;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(7, 94, 200, .2);
}

.development-hero h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.development-hero p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.development-timeline {
    max-width: 1050px;
    margin: 34px auto 0;
    display: grid;
    gap: 22px;
}

.development-step {
    position: relative;
    padding: 26px 32px 26px 110px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 55px rgba(7, 94, 200, .12);
}

.development-step b {
    position: absolute;
    left: 28px;
    top: 28px;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-size: .95rem;
}

.development-step h3 {
    margin: 0 0 8px;
    color: var(--blue-dark);
    font-size: 1.55rem;
}

.development-step p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.75;
}

.development-grid {
    max-width: 1120px;
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.development-card {
    min-height: 320px;
    padding: 30px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    transition: .3s ease;
}

.development-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.development-card b {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.development-card h3 {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-size: 1.45rem;
}

.development-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .development-grid {
        grid-template-columns: 1fr;
    }

    .development-step {
        padding: 26px;
    }

    .development-step b {
        position: static;
        margin-bottom: 18px;
    }

    .development-card {
        min-height: auto;
    }
}

.evaluation-hero {
    max-width: 920px;
    margin: 42px auto 0;
    padding: 46px;
    text-align: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 70px rgba(7, 94, 200, .15);
}

.evaluation-icon {
    width: 118px;
    height: 118px;
    margin: 0 auto 22px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: white;
    font-size: 1.9rem;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(7, 94, 200, .2);
}

.evaluation-hero h3 {
    margin: 0 0 12px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.evaluation-hero p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.evaluation-grid {
    max-width: 1120px;
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.evaluation-card {
    min-height: 320px;
    padding: 30px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(7, 94, 200, .13);
    transition: .3s ease;
}

.evaluation-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.evaluation-card b {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #fff0a6);
    color: var(--blue-dark);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.evaluation-card h3 {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-size: 1.45rem;
}

.evaluation-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.75;
}

.evaluation-summary {
    max-width: 1000px;
    margin: 34px auto 0;
    display: grid;
    gap: 18px;
}

.evaluation-row {
    padding: 26px 32px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 55px rgba(7, 94, 200, .12);
}

.evaluation-row strong {
    color: var(--blue-dark);
    font-size: 1.35rem;
}

.evaluation-row span {
    font-size: 1.1rem;
}

@media (max-width: 900px) {

    .evaluation-grid,
    .evaluation-row {
        grid-template-columns: 1fr;
    }

    .evaluation-card {
        min-height: auto;
    }
}