@import url('../popup.css?udt=202506181');

/* ==================================
          Global Styles 
================================== */
:root {
    --secondary-color: #192641;
    --text-light: rgba(255, 255, 255, 0.6);
    --text-dark: #444;
    --bg-light: #f4f4f4;
    --border-color: rgba(0, 26, 77, 0.2);
}

html,
body {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100%;
}

.main-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    position: relative;
}

/*  Main Layout */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
}

.main-section {
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    .floating-btn {
        display: none;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .main-section {
        min-height: auto;
        padding: 50px 0;
    }
}

/* ==================================
     First Section - Hero Area
================================== */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: black;
    transition: opacity 0.5s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.description {
    font-size: var(--font-lg);
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.6);
}

.title {
    white-space: pre-line;
    line-height: 1.5;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 70px;
}

.search-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.26);
    border-radius: 15px;
    border: none;
    width: 1000px;
    height: 100%;
    margin: 0 auto;
    text-align: center;
}

.search-section input {
    padding: 15px 30px;
    width: 100%;
    font-size: var(--font-md);
    background: none;
    border: none;
    color: #fff;
}

.search-section input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    font-size: var(--font-md);
}

.search-section button {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.search-section input {
    padding: 15px 30px;
    width: 100%;
    font-size: var(--font-md);
    background: none;
    border: none;
    color: #fff;
}

.search-section input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    font-size: var(--font-md);
}

.search-section button {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.search-section button img {
    width: 40px;
    height: auto;
}

@media (max-width: 1400px) {
    .title {
        font-size: 52px;
    }

    .search-section {
        width: 800px;
        gap: 8px;
    }

    .search-section input,
    .search-section input::placeholder {
        font-size: var(--font-base);
    }

    .search-section input {
        padding: 13px 24px;
    }

    .search-section button {
        padding: 9px 16px;
    }
}

@media (max-width: 1280px) {
    .index-container {
        margin: 0 30px;
        padding-bottom: 70px;
    }

    .title {
        font-size: 48px;
    }

    .description {
        font-size: var(--font-md);
    }

    .search-section {
        width: 700px;
    }

    .search-section input,
    .search-section input::placeholder {
        font-size: var(--font-sm);
    }

    .search-section input {
        padding: 12px 22px;
    }

    .search-section button img {
        width: 30px;
    }
}

@media (max-width: 1024px) {
    .title {
        font-size: 38px;
    }

    .description {
        font-size: var(--font-sm);
    }

    .search-section {
        width: 600px;
    }

    .search-section input,
    .search-section input::placeholder {
        font-size: var(--font-sm);
    }

    .search-section button {
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 30px;
    }

    .description {
        font-size: var(--font-sm);
    }

    .search-section {
        width: 380px;
    }

    .search-section input,
    .search-section input::placeholder {
        font-size: var(--font-sm);
    }

    .search-section input {
        padding: 10px 18px;
    }

    .search-section button img {
        width: 20px;
    }
}

@media (max-width: 480px) {

    .main-section.first {
        min-height: 90vh;
        padding: 0;
    }

    .index-container {
        padding-bottom: 0;
    }

    .title,
    .description {
        white-space: nowrap;
    }

    .title {
        font-size: 25px;
    }

    .description {
        margin-bottom: 30px;
        font-size: var(--font-xs);
    }
}

/* ==================================
    Second Section - Services
================================== */

.board-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100vw;
    height: 100vh;
    transition: background-image 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 1;
}

/* Board Item */
.board {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.board-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
}

.board-title {
    font-size: 27px;
    font-weight: bold;
}

.board-description {
    font-size: var(--font-base);
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    line-height: 1.8;
    word-break: keep-all;
}

.board:hover .board-description {
    padding: 20px 0;
    opacity: 1;
    transform: translateY(0);
}

.learn-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 22px 18px 28px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    border-radius: 25px;
}

.learn-more-btn:hover {
    border: 1px solid rgba(196, 185, 185, 0.671);
}

.learn-more-btn img {
    width: 16px;
    height: auto;
    vertical-align: middle;
}

.board:nth-child(1) {
    background-image: url('../../img/backgrounds/main_img_01.png');
}

.board:nth-child(2) {
    background-image: url('../../img/backgrounds/main_img_02.png');
}

.board:nth-child(3) {
    background-image: url('../../img/backgrounds/main_img_03.png');
}

.board:nth-child(4) {
    background-image: url('../../img/backgrounds/main_img_04.png');
}

.board:nth-child(5) {
    background-image: url('../../img/backgrounds/main_img_05.png');
}

.board:nth-child(6) {
    background-image: url('../../img/backgrounds/main_img_06.png');
}

.board:nth-child(7) {
    background-image: url('../../img/backgrounds/main_img_07.png');
}

.board:nth-child(8) {
    background-image: url('../../img/backgrounds/main_img_08.png');
}

.board-title,
.board-description,
.learn-more-btn {
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in {
    transform: translateY(0) !important;
}


@media (max-width: 1280px) {

    header,
    footer {
        z-index: 10;
    }

    .board-container {
        z-index: 20;
        position: relative;
    }

    .board-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }

    .board-title {
        font-size: 24px;
    }

    .board-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .learn-more-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .learn-more-btn img {
        width: 14px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        scroll-snap-type: none !important;
    }

    .main-section {
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
    }

    .board-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
    }

    .board {
        padding: 0 30px 0 50px;
    }

    .board-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        text-align: left;
    }

    .board-title {
        font-size: var(--font-md);
    }

    .board-description {
        display: none;
    }

    .board-title,
    .board-description,
    .learn-more-btn {
        transform: translateY(4px);
        transition: all 0.6s ease;
    }

    .learn-more-btn {
        font-size: 15px;
        padding: 10px 16px;
        white-space: nowrap;
        border: 1px solid rgba(196, 185, 185, 0.671);
    }
}

@media (max-width: 480px) {

    .second {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(6px);
    }

    .board-container {
        height: 65vh;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 20px;
    }

    .board {
        flex: 0 0 80%;
        scroll-snap-align: center;
        min-width: 280px;
        border-radius: 20px;
        padding: 20px;
    }

    .board-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        gap: 12px;
    }

    .board-title {
        font-size: var(--font-lg);
        font-weight: bold;
        margin-bottom: 20px;
    }

    .board-description {
        opacity: 1;
        display: block;
        line-height: 1.8;
        font-size: var(--font-sm);
        margin-bottom: 40px;
    }

    .learn-more-btn {
        font-size: var(--font-sm);
        font-weight: 400;
        border: none;
    }

    .board-title,
    .board-description,
    .learn-more-btn {
        transform: none !important;
    }

    .fade-in {
        transform: none !important;
    }
}


/* ==================================
  Third Section - Events & Calendar
================================== */
.third {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: black;
    background: url('../../img/backgrounds/main_bg_03.jpg') no-repeat center center;
    background-size: cover;
}

.event-calendar-container {
    display: flex;
    width: 80%;
    max-width: var(--container-width);
    height: 70vh;
    gap: 30px;
}

.event-section,
.calendar-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Events */
.event-section {
    flex: 2;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.event-title {
    font-size: var(--font-md);
    margin-top: 15px;
    margin-bottom: 14px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.event-highlight {
    color: #888888;
}

.schedule-highlight {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.event-heading {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 34px;
}

.event-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.event-scroll-container {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 10px;
}

.scroll-wrapper {
    background: rgba(243, 244, 244, 1);
    padding: 17px 0;
    border-radius: 20px;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    padding: 15px 25px;
    position: relative;
}

.event-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
}

.event-item:hover {
    background: #f0f4f9;
}

.event-info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.event-type-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.event-icon {
    width: 8px;
    height: 8px;
    background-color: #30B1B1;
    border-radius: 20%;
}

.event-type {
    font-size: 15px;
    font-weight: 500;
}

.event-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.event-title-text {
    font-size: 17px;
    margin-bottom: 6px;
}

.event-meta {
    font-size: var(--font-sm);
    color: rgba(34, 34, 34, 0.7);
    margin-top: 3px;
    font-weight: 600;
}

.event-meta span {
    font-weight: 500;
    color: rgba(34, 34, 34, 0.4);
    margin-right: 5px;
}

.event-status {
    font-size: var(--font-sm);
    font-weight: bold;
    padding: 13px 20px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
}

.event-status.open {
    background-color: var(--color-primary-dark);
    color: white;
}

.event-status.closed {
    display: inline-block;
    background-color: #CBCBCB;
    color: black;
}

.event-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.no-event {
    text-align: center;
    font-size: var(--font-base);
    color: #888;
}

.event-scroll-container::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(34, 34, 34, 0.1);
}

.event-scroll-container::-webkit-scrollbar-thumb {
    background-color: rgba(34, 34, 34, 0.6);
    border-radius: 10px;
}

.tab-content::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(34, 34, 34, 0.1);
}

.tab-content::-webkit-scrollbar-thumb {
    background-color: var(--color-primary-dark);
    border-radius: 10px;
}


/* Calendar */
.calendar-section {
    flex: 1;
}

.calendar-container {
    background-color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.fc-scrollgrid-sync-table {
    overflow: hidden !important;
}

.fc .fc-scroller-harness,
.fc .fc-scroller {
    overflow: hidden !important;
}

#calendar {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.fc-theme-standard table,
.fc-theme-standard td,
.fc-theme-standard th {
    border: none !important;
}

.fc-toolbar-title {
    flex-grow: 1;
}

.fc-prev-button,
.fc-next-button {
    width: 35px !important;
    height: 35px !important;
    background: #F2F2F2 !important;
    border: none !important;
    border-radius: 30px !important;
    color: rgba(34, 34, 34, 0.4) !important;
    font-size: 13px !important;
}

.fc-prev-button {
    margin-left: 30px !important;
}

.fc-next-button {
    margin-right: 30px !important;
}

.fc-prev-button:hover,
.fc-next-button:hover {
    background: rgba(0, 26, 77, 0.1);
    border-radius: 5px;
}

.fc-col-header {
    margin-bottom: 26px !important;
}

.fc-col-header-cell {
    text-align: center;
    font-weight: normal;
}

.fc-col-header-cell:first-child {
    color: red;
}

.fc-col-header-cell:last-child {
    color: blue;
}

.fc-daygrid-day-frame {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: unset !important;
    height: auto !important;
    padding: 4px 6px;
    box-sizing: border-box;
}

.fc-daygrid-day-events,
.fc-daygrid-day-bottom {
    display: none !important;
    /* ✅ 아예 없애버리기 */
}

div.fc-daygrid-day-events,
div.fc-daygrid-day-bottom {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.fc-day-today {
    height: auto !important;
    background: transparent !important;
    color: inherit !important;
    font-weight: normal !important;
}

.fc-daygrid-day-number {
    font-size: var(--font-base) !important;
    text-align: center !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 30px;
    margin: auto;
    border-radius: 20%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc-daygrid-day:hover .fc-daygrid-day-number {
    background: #f0f0f0 !important;
}

.fc-daygrid-day[data-event="available"] .fc-daygrid-day-number {
    background: var(--color-primary-dark) !important;
    color: white !important;
    transition: background-color 0.3s ease;
}

.fc-daygrid-day[data-event="available"]:hover .fc-daygrid-day-number {
    background: rgba(0, 26, 77, 0.8) !important;
}

.fc-daygrid-day[data-event="closed"] .fc-daygrid-day-number {
    background: #CBCBCB !important;
    color: black !important;
    opacity: 0.6;
}

/* 캘린더 하단 */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-circle.available {
    background-color: var(--color-primary-dark);
}

.legend-circle.closed {
    background-color: #CBCBCB;
}

.legend-text {
    font-size: var(--font-sm);
    color: #444;
}

.seminar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 20px 0;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background: none;
    border: 1px solid rgba(196, 185, 185, 0.671);
    border-radius: 30px;
    cursor: pointer;
}

.seminar-icon {
    width: 18px;
    height: auto;
}

.seminar-button:hover {
    background: rgba(196, 185, 185, 0.2);
}

.seminar-button.mobile-only {
    display: none;
}

@media (max-width: 1600px) {

    .event-heading {
        font-size: 38px;
    }
}

@media (max-width: 1400px) {
    .seminar-button {
        font-size: 14px;
        padding: 18px 0;
    }
}

@media (max-width: 1280px) {
    .event-heading {
        font-size: 34px;
    }

    .event-scroll-container {
        max-height: 400px;
        padding: 15px 20px;
    }

    .calendar-container {
        padding: 30px 15px;
    }

    .seminar-button {
        font-size: 13px;
        padding: 16px 0;
    }
}

@media (max-width: 1024px) {

    .event-heading {
        font-size: 28px;
    }

    .event-title {
        font-size: var(--font-base);
    }

    .event-scroll-container {
        max-height: 280px;
        padding: 12px 18px;
    }

    .seminar-button.mobile-only {
        display: flex;
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
        padding: 14px 0;
        font-size: 14px;
        justify-content: center;
        border-radius: 30px;
        background-color: var(--color-primary-dark);
        color: white;
        border: none;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

    .seminar-button.mobile-only:hover {
        background-color: rgba(0, 26, 77, 0.9);
    }

    .event-content {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .event-calendar-container {
        width: 90%;
        margin-left: 20px;
        margin-right: 20px;
    }

    .event-calendar-container {
        flex-direction: column-reverse;
    }

    .event-scroll-container {
        max-height: 310px;
        padding: 12px 18px;
    }

    .event-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .event-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .event-type {
        font-size: 13px;
    }

    .event-title-text {
        font-size: 15px;
    }

    .event-meta {
        font-size: 12px;
    }

    .event-status {
        font-size: 12px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {

    .third {
        padding: 50px 0;
    }

    .event-calendar-container {
        max-width: 94vw;
    }

    .event-section {
        padding: 30px 10px 20px;
        border-radius: 10px;
    }

    .event-scroll-container {
        padding: 0 8px;
        max-height: 280px;
    }

    .seminar-button.mobile-only {
        margin-top: 20px;
        padding: 12px 0;
        font-size: var(--font-xs);
        font-weight: 400;
    }

    .scroll-wrapper {
        padding: 2px 18px;
        border-radius: 10px;
    }

    .event-content .scroll-wrapper {
        padding: 0;
    }

    .seminar-icon {
        width: 14px;
    }

    .event-title-text {
        font-size: var(--font-sm);
    }

    .event-type {
        font-size: 11px;
    }

    .event-meta {
        font-size: 10px;
    }

    .event-status {
        font-size: 11px;
        font-weight: 300;
    }

    .event-title {
        font-size: var(--font-xs);
        margin-bottom: 5px;
    }
}

/* ==================================
    fourth Section - Procedures Status
================================== */
.fourth {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background: url('../../img/backgrounds/main_bg_04.jpg') no-repeat center center;
    background-size: cover;
}

.process-status-container {
    display: flex;
    width: 80%;
    max-width: var(--container-width);
    height: 70vh;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    gap: 50px;
}

.status-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 25px;
}

.status-title {
    font-size: var(--font-lg);
    color: #888;
    margin-bottom: 30px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.status-text {
    color: #02266C;
    font-weight: 600;
}

.status-heading {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 30px;
}

.status-description {
    font-size: var(--font-md);
    color: #666;
    margin-bottom: 70px;
}

.status-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 280px;
    padding: 15px 25px;
    font-size: var(--font-base);
    font-weight: 400;
    font-family: 'Pretendard', sans-serif;
    background: none;
    color: black;
    border: 1px solid rgba(34, 34, 34, 0.2);
    border-radius: 50px;
    cursor: pointer;
    gap: 40px;
}

.status-btn:hover {
    background: #002a6d0e;
}

.status-board {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tab-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 15px;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Pretendard', sans-serif;
    color: rgba(34, 34, 34, 0.4);
    background: none;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.tab.active {
    color: black;
}

.tab.active::before {
    content: "●";
    color: var(--color-primary-dark);
    font-size: 8px;
    margin-right: 8px;
    position: relative;
    top: -3px;
}

.tab-content {
    display: flex;
    flex-direction: column;
    background: #f4f4f4;
    padding: 16px 20px;
    border-radius: 20px;
    height: 100%;
    overflow-y: auto;
}

.status-board-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
}

.status-board-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    position: relative;
}

.status-board-category {
    font-size: var(--font-base);
    font-weight: bold;
    color: white;
    background-color: var(--color-primary-dark);
    padding: 10px 17px;
    border-radius: 20px;
    white-space: nowrap;
}

.status-board-title {
    font-size: var(--font-md);
    font-weight: 500;
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.status-board-date {
    font-size: var(--font-md);
    color: rgba(34, 34, 34, 0.6);
    text-align: right;
    min-width: 70px;
}

@media (max-width: 1400px) {
    .status-heading {
        font-size: 38px;
    }

    .status-description {
        margin-bottom: 50px;
    }

    .status-btn {
        width: 260px;
        font-size: 15px;
        gap: 30px;
    }

    .tab {
        font-size: 16px;
    }

    .status-board-item {
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .process-status-container {
        flex-direction: column;
        gap: 0;
    }

    .status-info {
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .status-title {
        font-size: var(--font-base);
    }

    .status-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .status-description {
        font-size: var(--font-sm);
        margin-bottom: 30px;
    }

    .status-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        gap: 12px;
        font-size: 14px;
    }

    .status-btn img.status-image {
        width: 16px;
    }

    .tab-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab {
        font-size: 15px;
        padding: 8px 12px;
    }

    .status-title {
        margin-bottom: 10px;
    }

    .tab-content {
        padding: 12px 16px;
        max-height: 25vh;
    }

    .status-board-title {
        font-size: 15px;
        padding-left: 15px;
    }

    .status-board-category {
        font-size: 13px;
        padding: 8px 14px;
    }

    .status-board-date {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .process-status-container {
        padding-bottom: 20px;
        width: 90%;
    }

    .status-heading {
        font-size: 24px;
    }

    .status-description {
        font-size: 13px;
    }

    .status-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .tab {
        font-size: 13px;
        padding: 6px 5px;
    }

    .tab-content {
        padding: 10px 12px;
    }

    .status-board-item {
        gap: 8px;
    }

    .status-board-title {
        padding-left: 0;
        text-align: left;
    }

    .status-board-category {
        font-size: 12px;
    }

    .status-board-date {
        display: none;
    }
}

@media (max-width: 480px) {

    .process-status-container {
        max-width: 94vw;
        border-radius: 10px;
        padding: 30px 20px;
    }

    .status-heading {
        font-size: var(--font-xl);
        margin-bottom: 8px;
    }

    .status-title {
        font-size: var(--font-xs);
        margin-bottom: 5px;
    }

    .status-description {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .status-btn {
        padding: 10px;
        font-size: var(--font-xs);
        width: 190px;
        margin-bottom: 10px;
    }

    .status-info {
        padding: 20px 20px 0;
    }

    .tab-menu {
        gap: 0;
        flex-wrap: nowrap;
        justify-content: center;
        white-space: nowrap;
    }

    .status-board-item {
        padding: 10px 8px;
    }

    .status-board-title {
        font-size: var(--font-xs);
        padding-left: 0;
    }

    .status-board-category {
        font-size: 10px;
        font-weight: 400;
        padding: 5px 10px;
    }

    .tab-content {
        padding: 12px 16px;
        max-height: 30vh;
    }
}

/* ==================================
    fifth Section - reviews
================================== */
.fifth {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../../img/backgrounds/main_bg_05.jpg') no-repeat center center;
    background-size: cover;
}

.review-container {
    display: flex;
    max-width: var(--container-width);
    border-radius: 30px;
    gap: 130px;
}

.review-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 100px;
}

.review-title {
    font-size: var(--font-lg);
    margin-bottom: 30px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.ampersand {
    font-family: 'Anuphan', sans-serif;
    font-weight: 600;
}

.review-highlight {
    color: #9DBEFF;
    font-weight: bold;
}

.review-heading {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 35px;
}

.review-description {
    font-size: var(--font-md);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.review-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 240px;
    padding: 20px 30px;
    font-size: var(--font-base);
    font-weight: 400;
    font-family: 'Pretendard', sans-serif;
    background: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    cursor: pointer;
}

.review-btn:hover {
    background: #46474938;
}

.review-board {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.review-slider {
    overflow: hidden;
    position: relative;
}

.review-row {
    overflow: hidden;
    position: relative;
    height: auto;
    min-height: 330px;
}

.slider-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    transition: transform 1.4s cubic-bezier(0.6, 0.05, 0.2, 1);
}

.review-item {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    padding: 35px 27px;
    border-radius: 30px;
    min-height: 300px;
    box-sizing: border-box;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.review-item:nth-child(odd) {
    align-self: start;
}

.review-item:nth-child(even) {
    align-self: end;
}

.review-item:hover .review-content {
    color: var(--color-accent);
}

.review-title-text {
    color: rgba(34, 34, 34, 0.6);
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: left;
}

.review-content {
    font-size: var(--font-xl);
    color: black;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.review-tag {
    font-size: 16px;
    font-weight: 600;
    background: #D8E6FB;
    color: #243D6D;
    padding: 7px 15px;
    border-radius: 20px;
    white-space: nowrap;
}

.review-arrows {
    margin-bottom: 30px;
}

.review-arrows button {
    border-radius: 50%;
    background: none;
    all: unset;
    cursor: pointer;
}

.review-arrows .slider-btn.slider-prev {
    margin-right: 10px;
}

@media (max-width: 1600px) {
    .review-container {
        max-width: 1270px;
    }

    .review-info {
        padding-left: 50px;
    }
}

@media (max-width: 1280px) {
    .review-container {
        max-width: 1040px;
        flex-direction: column;
        padding-bottom: 200px;
        gap: 60px;
    }

    .review-info {
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .review-heading {
        font-size: 36px;
    }

    .review-description {
        font-size: var(--font-sm);
        margin-bottom: 40px;
    }

    .review-btn {
        padding: 15px 24px;
    }

    .review-item {
        min-height: 280px;
    }

    .review-row-bottom {
        display: none;
    }
}

@media (max-width: 1024px) {
    .review-container {
        max-width: 900px;
        padding-bottom: 200px;
    }

    .review-item {
        flex: 0 0 calc(50% - 15px);
    }

    .review-content {
        font-size: var(--font-lg);
    }

    .review-slider {
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .review-container {
        margin-left: 30px;
        margin-right: 30px;
        padding-bottom: 200px;
    }

    .review-heading {
        font-size: 26px;
    }

    .review-content {
        font-size: var(--font-md);
    }

    .review-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

@media (max-width: 650px) {
    .review-slider {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .review-container {
        padding: 0;
        margin: 0;
        max-width: 94vw;
        gap: 5px;
    }

    .review-info {
        padding: 0;
    }

    .review-title {
        font-size: var(--font-xs);
        margin-bottom: 5px;
    }

    .review-heading {
        font-size: var(--font-xl);
        margin-bottom: 8px;
    }

    .review-description {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .review-btn {
        justify-content: center;
        gap: 12px;
        padding: 10px;
        font-size: var(--font-xs);
        width: 190px;
    }

    .review-btn img {
        width: 16px;
        height: auto;
    }

    .review-slider {
        max-width: 50vh;
    }

    .review-row-bottom {
        display: block;
    }

    .review-item {
        padding: 20px;
        border-radius: 10px;
        min-height: 140px !important;
    }

    .review-row {
        min-height: 150px;
    }

    .review-content {
        font-size: var(--font-sm);
        white-space: wrap;
    }

    .review-title-text {
        font-size: var(--font-xs);
        margin-bottom: 10px;
    }

    .review-tag {
        padding: 5px 14px;
        font-size: var(--font-xs);
    }

    .review-arrows {
        margin-top: 20px;
        margin-bottom: 0;
        order: 3;
    }

    .review-arrows button {
        width: 30px;
    }

    .review-arrows button img {
        width: 100%;
    }

    .review-content {
        -webkit-line-clamp: 2;
    }

    .review-slider {
        width: 95%;
    }
}

/* ===============================
    Sixth Section - News 
================================ */

.sixth {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../../img/backgrounds/main_bg_06.jpg') no-repeat center center;
    background-size: cover;
}

.news-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: var(--container-width);
    padding: 50px 0;
}

.news-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.news-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-highlight {
    color: #9DBEFF;
    font-weight: bold;
}

.news-text {
    font-size: var(--font-md);
    margin-bottom: 30px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.news-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.news-description {
    font-size: var(--font-md);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0px;
}

.news-more-btn {
    position: absolute;
    right: 0;
    top: 70%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 35px;
    font-size: var(--font-base);
    font-weight: bold;
    background: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
}

.news-more-btn img {
    width: 25px;
    height: auto;
}

.news-more-btn:hover {
    background: #46474938;
}


.news-tab-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.news-tab {
    padding: 10px 20px;
    font-size: 21px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.news-tab.active {
    color: white;
}

.news-tab-divider {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 10px;
}

.news-list-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.news-item {
    background: white;
    height: 400px;
    border-radius: 30px;
    text-align: left;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.news-item:hover {
    transform: scale(1.02);
}

.news-content {
    padding: 30px;
}

.news-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-tag {
    font-size: 15px;
    font-weight: 400;
    padding: 7px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
}

.notice {
    background: #A9FFC0;
    color: #1F8A42;
}

.column {
    background: #A9BFFF;
    color: #0042FF;
}

.press {
    background: #FFD1A9;
    color: #FF5900;
}

.news-title-text {
    font-size: var(--font-lg);
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.5;
    color: black;
}

.news-bottom {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.news-date {
    font-size: var(--font-base);
    color: rgba(34, 34, 34, 0.6);
    padding: 30px;
}

.news-image {
    width: 100%;
    border-radius: 10px;
}

.news-navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    height: 60px;
}

.news-arrow {
    background: none;
    border: none;
    font-size: var(--font-2xl);
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.2s ease-in-out;
}

.news-arrow:hover {
    color: var(--color-primary-dark);
}

@media (max-width: 1600px) {
    .news-container {
        max-width: 1270px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1280px) {
    .news-container {
        margin-left: 30px;
        margin-right: 30px;
    }

    .news-heading {
        font-size: 36px;
    }

    .news-description {
        font-size: var(--font-sm);
        margin-bottom: 40px;
    }

    .news-more-btn {
        position: static;
        padding: 15px 24px;
        align-self: center;
        transform: none;
        font-size: var(--font-base);
        font-weight: 400;
        margin-bottom: 30px;
    }

    .news-more-btn img {
        width: 18px;
        height: auto;
    }

    .news-tab {
        font-size: var(--font-md);
    }

}

@media (max-width: 1040px) {
    .news-container {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {


    .news-tab {
        font-size: 16px;
        padding: 8px 14px;
    }

    .news-heading {
        font-size: 28px;
    }

    .news-title-text {
        font-size: var(--font-md);
    }

    .news-description {
        font-size: var(--font-sm);
    }

}

@media (max-width: 480px) {

    .news-container {
        max-width: 94vh;
        padding: 0;
    }

    .news-text {
        font-size: var(--font-xs);
        margin-bottom: 5px;
    }

    .news-heading {
        font-size: var(--font-xl);
        margin-bottom: 8px;
    }

    .news-description {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .news-more-btn {
        width: 200px;
        justify-content: center;
        gap: 12px;
        padding: 10px;
        font-size: var(--font-xs);
    }

    .news-tab-divider {
        margin-bottom: 15px;
    }

    .news-tab {
        font-size: var(--font-sm);
        padding: 5px 10px;
    }

    .news-content {
        padding: 20px 20px 5px;
    }

    .news-tag {
        font-size: var(--font-xs);
        font-weight: 300;
        padding: 5px 11px;
    }

    .news-title-text {
        font-size: var(--font-sm);
    }

    .news-navigation {
        justify-content: center;
        margin-top: 0;
    }

    .news-navigation img {
        width: 33px;
        height: auto;
    }

    .news-date {
        padding: 0 20px 20px;
        font-size: var(--font-sm);
    }
}

@media (max-width: 375px) {
    .news-container {
        max-width: 45vh;
    }
}

@media (max-width: 320px) {
    .news-container {
        max-width: 38vh;
    }
}


/* ===============================
  Seventh Section - YouTube & Blog 
================================ */
.seventh {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../../img/backgrounds/main_bg_07.jpg') no-repeat center center;
    background-size: cover;
}

.youtube-blog-container {
    display: flex;
    gap: 40px;
    width: 80%;
    max-width: var(--container-width);
}

.youtube-section,
.blog-section {
    flex: 1;
    color: white;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    /*height: 70vh;*/
}

.youtube-section {
    background: #9f2a28;
}

.blog-section {
    background: white;
}

.youtube-header,
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.youtube-title,
.blog-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: bold;
}

.blog-title {
    color: black;
}

.youtube-btn,
.blog-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-base);
    font-weight: 400;
    background: none;
    border: none;
    cursor: pointer;
}

.youtube-btn {
    color: white;
}

.blog-btn {
    color: black;
}

.youtube-btn:hover,
.blog-btn:hover {
    opacity: 80%;
}

.youtube-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.youtube-content:hover {
    transform: scale(1.01);
    transition: 0.2s ease;
}

.youtube-thumbnail img {
    width: 580px;
    height: 32vh;
    border-radius: 20px;
    object-fit: cover;
}

.youtube-video-title {
    font-size: var(--font-lg);
    font-weight: bold;
    color: white;
    text-align: left;
}

.youtube-video-desc {
    font-size: var(--font-base);
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
}

.blog-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.blog-content:hover {
    opacity: 80%;
}

.blog-content:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
}

.blog-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.blog-year-month {
    font-size: var(--font-sm);
    font-weight: 500;
    color: #989898;
}

.blog-day {
    font-size: 42px;
    font-weight: bold;
    color: black;
}

.blog-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 500px;
}

.blog-tag {
    font-size: var(--font-sm);
    font-weight: 400;
    background: rgba(0, 26, 77, 0.1);
    color: var(--color-primary-dark);
    padding: 7px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.blog-post-title {
    font-size: var(--font-lg);
    font-weight: 500;
    color: black;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 1600px) {

    .youtube-section,
    .blog-section {
        flex: 1;
        padding: 40px;
        height: auto;
    }

    .youtube-thumbnail img {
        width: 100%;
        height: 180px;
    }

    .blog-meta {
        width: 100%;
    }

    .blog-content:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 1280px) {

    .youtube-title,
    .blog-title {
        font-size: 24px;
    }

    .blog-post-title {
        font-size: var(--font-base);
    }

    .youtube-video-title {
        font-size: var(--font-base);
    }

    .youtube-video-desc {
        font-size: var(--font-sm);
    }

    .blog-day {
        font-size: 32px;
    }

    .blog-tag {
        font-size: var(--font-xs);
        padding: 5px 10px;
    }

    .youtube-thumbnail img {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 1024px) {
    .youtube-blog-container {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        padding: 0 20px;
    }

    .youtube-thumbnail img {
        height: 180px;
    }

    .youtube-title,
    .blog-title {
        font-size: 22px;
    }

    .youtube-btn,
    .blog-btn {
        font-size: 14px;
    }

    .blog-post-title {
        font-size: var(--font-sm);
    }

    /*
    .youtube-video-title,
    .youtube-video-desc {
        display: none;
    }*/

    .blog-day {
        font-size: 24px;
    }

    .blog-year-month {
        font-size: 12px;
    }

    /*
    .blog-content:nth-child(n+3) {
        display: none;
    }*/

    .blog-tag {
        font-size: 11px;
        padding: 4px 8px;
    }

    .blog-meta {
        gap: 3px;
    }
}

@media (max-width: 480px) {

    .youtube-blog-container {
        max-width: 94vh;
        gap: 20px;
        padding: 0;
    }

    .youtube-section,
    .blog-section {
        padding: 20px;
        height: auto;
        border-radius: 20px;
    }

    .youtube-header,
    .blog-header {
        margin-bottom: 10px;
    }

    .youtube-title,
    .blog-title {
        font-size: var(--font-base);
    }

    .youtube-title img,
    .blog-title img {
        width: 20px;
        height: auto;
    }

    .youtube-btn,
    .blog-btn {
        padding: 5px 14px;
        font-size: 11px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .blog-btn {
        border-color: rgba(0, 0, 0, 0.2);
    }

    .youtube-thumbnail img {
        height: 150px;
    }

    .blog-content {
        padding: 10px 0;
    }

    .blog-tag {
        font-size: 10px;
        margin-bottom: 0;
        padding: 2px 8px;
    }

    .blog-day {
        font-size: var(--font-lg);
    }

    .blog-post-title {
        font-size: var(--font-xs);
    }

    .blog-meta {
        gap: 5px;
    }
}



@media (max-width: 320px) {}

/* ===============================
    eighth Section - About 
================================ */
.eighth {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../../img/backgrounds/main_bg_08.jpg') no-repeat center center;
    background-size: cover;
}

.about-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: var(--container-width);
    padding: 50px 0;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-highlight {
    color: #9DBEFF;
    font-weight: 700;
}

.about-text {
    font-size: var(--font-md);
    margin-bottom: 30px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.about-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.about-description {
    font-size: var(--font-md);
    color: #777777;
    margin-bottom: 70px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.about-card-title {
    font-size: var(--font-2xl);
    font-weight: 600;
    margin-bottom: 30px;
}

.about-card-desc {
    font-size: var(--font-md);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
}

.about-number {
    font-size: 54px;
    font-weight: bold;
    color: white;
}

.about-partners {
    margin-top: 60px;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 1600px) {
    .about-container {
        max-width: 1270px;
    }

    .about-heading {
        font-size: 40px;
    }
}

@media (max-width: 1280px) {
    .about-container {
        max-width: 1040px;
    }

    .about-heading {
        font-size: 36px;
    }

    .about-description {
        font-size: var(--font-sm);
        margin-bottom: 40px;
    }

    .about-card-title {
        font-size: var(--font-lg);
    }

    .about-card-desc {
        font-size: var(--font-base);
    }

    .about-number {
        font-size: 35px;
    }
}

@media (max-width: 1024px) {
    .about-container {
        max-width: 680px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-heading {
        font-size: 32px;
    }

    .about-card-title {
        margin-bottom: 10px;
    }

    .about-card-desc {
        margin-bottom: 10px;
    }

    .about-card {
        padding: 30px;
    }

    .about-number {
        font-size: 30px;
    }

    .about-partners {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .about-container {
        max-width: 500px;
    }

    .about-heading {
        font-size: 26px;
    }
}

@media (max-width: 480px) {

    .about-container {
        max-width: none !important;
        width: 89%;
        padding: 0;
    }

    .about-text {
        font-size: var(--font-xs);
        margin-bottom: 5px;
    }

    .about-heading {
        font-size: var(--font-xl);
        margin-bottom: 8px;
    }

    .about-description {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .about-card {
        padding: 20px;
    }

    .about-card-title {
        font-size: var(--font-sm);
    }

    .about-card-desc {
        font-size: var(--font-xs);
    }

    .about-number {
        font-size: var(--font-2xl);
    }

    .partner-slider {
        gap: 10px;
    }

    .partner-item {
        min-width: 40px;
        height: 100px;
    }

    .partner-item img {
        max-width: 120px;
        object-fit: contain;
    }
}


/* ===============================
    Ninth Section - Location Info
================================ */
.ninth {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../../img/backgrounds/main_bg_09.jpg') no-repeat center center;
    background-size: cover;
}

.contact-container {
    display: flex;
    width: 85%;
    max-width: var(--container-width);
    background: #343749;
    border-radius: 30px;
    overflow: hidden;
}

.contact-map {
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-left: 30px;
}

.contact-title {
    font-size: 48px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 30px;
}

.contact-description {
    font-size: var(--font-md);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.contact-address {
    background: #282C41;
    padding: 0 30px;
    margin-bottom: 40px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    font-size: var(--font-lg);
}

.address-item strong {
    opacity: 0.8;
    font-weight: 300;
    min-width: 120px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.contact-item {
    margin-bottom: 15px;
    font-size: var(--font-md);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    align-items: flex-start;
}

.contact-item::before {
    content: "•";
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: -15px;
    top: 0px;
    line-height: 1;
}

.contact-label {
    min-width: 90px;
}

.subway-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subway-line {
    background: #EF7D1D;
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: 700;
}

.contact-item p {
    font-weight: 200;
}

.parking-content p {
    margin-bottom: 5px;
}

.parking-info {
    display: block;
    font-size: var(--font-base);
    color: #96C0FF;
    margin-top: 5px;
    font-weight: 300;
}

.contact-details {
    margin-top: 20px;
    margin-bottom: 25px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-md);
    margin-bottom: 20px;
}

.contact-row img {
    width: 22px;
    height: auto;
}

.contact-row span {
    color: white !important;
    text-decoration: none !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-text-decoration: none;
}

.contact-row {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.status-board-category {
    width: 90px;
}

.story-highlight {
    margin-left: 5px;
}

@media (max-width: 1600px) {

    .contact-title {
        font-size: 43px;
    }

    .contact-description,
    .contact-label,
    .address-item strong,
    .address-item p,
    .subway-line {
        font-size: var(--font-base);
    }

    .contact-row span {
        font-size: var(--font-base);
    }

    .parking-info {
        font-size: 14px;
    }
}

@media (max-width: 1280px) {

    .contact-container {
        width: 80%;
    }

    .contact-title {
        font-size: 35px;
    }

    .contact-description,
    .contact-label,
    .address-item p,
    .subway-line {
        font-size: var(--font-sm);
    }

    .contact-row span {
        font-size: var(--font-sm);
    }

    .parking-info {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {

    .contact-map {
        display: none;
    }
}

@media (max-width: 480px) {

    .contact-container {
        width: 89%;
    }

    .contact-info {
        padding: 30px 20px;
        margin-left: 0px;
    }

    .contact-title {
        font-size: var(--font-xl);
        margin: 0 0 20px;
    }

    .contact-description {
        margin-bottom: 0;
        font-size: var(--font-xs);
    }

    .contact-label,
    .address-item strong,
    .address-item p,
    .subway-line {
        font-size: var(--font-sm);
    }

    .contact-address {
        margin: 10px 0 20px;
        padding: 0 20px;
    }

    .address-item strong {
        min-width: 80px;
    }

    .address-item p {
        font-weight: 200 !important;
    }

    .contact-list {
        padding-left: 20px;
        margin: 0;
    }

    .contact-label {
        min-width: 75px;
        font-size: 13px;
    }

    .contact-item::before {
        display: none;
    }

    .subway-line {
        padding: 2px 7px;
        font-size: 10px;
        font-weight: 400;
    }

    .contact-details {
        padding-left: 15px;
        margin: 0;
    }

    .contact-row {
        margin-bottom: 10px;
    }

    .contact-row:last-child {
        margin-bottom: 0;
    }

    .contact-row img {
        width: 15px;
        height: auto;
    }

    .address-item,
    .contact-item,
    .contact-row {
        font-size: var(--font-sm);
        font-weight: 300;
    }

    .company-img-item img {
        height: 220px;
    }

    .parking-info {
        font-size: 10px;
    }

}

@media (max-width: 500px) {
    .search-section {
        width: 90%;
    }

    .tab {
        padding: 6px 5px;
    }

    .youtube-blog-container {
        margin: 0 auto;
    }

    .blog-content:nth-child(n+3) {
        display: flex;
    }

    .blog-content:last-child {
        display: none;
    }
}

@media (max-width: 1024px) {
    .parallax-img {
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    .parallax-wrapper {
        width: 100% !important;
        height: auto !important;
    }

    .parallax-section {
        height: auto !important;
    }

    .competitive-image {
        height: auto !important;
        max-height: 300px;
        object-fit: cover;
    }

    .youtube-blog-container {
        width: 90%;
    }
}

#main-container {
    width: 100%;
}

.fifth {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .news-item {
        height: 230px;
    }

    .news-image-container {
        display: none
    }
}

@media (max-width: 480px) {
    .news-item {
        height: 300px;
    }

    .news-image-container {
        display: block;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-info {
        padding: 25px 15px;
    }

    .parking-info {
        word-break: keep-all;
    }

    .event-calendar-container {
        height: auto;
    }

    .fc-view-harness {}

    .calendar-container {
        height: 450px;
    }

    .fc .fc-toolbar.fc-header-toolbar {
        margin-bottom: 1em;
    }

    .fc-col-header {
        margin-bottom: 5px !important;
    }

    .event-section {
        margin-bottom: 20px;
    }

    .event-item {
        padding: 15px;
    }

    .event-status {
        padding: 9px 15px;
    }

    .fc .fc-toolbar-title {
        font-size: 1.55em;
    }

    .no-event {
        padding: 20px 0;
    }
}



.slide-ui {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;

}

.slide-pagination {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.5s;
    will-change: transform;
}

.slide-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 50px;
}

.event-highlight {
    margin-right: 5px;
}

.procedures-text {
    margin-right: 5px;
}

@media (max-width: 480px) {
    .slide-ui {
        height: 95vh;
    }
}