
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap');

:root {
    /* Color Palette - Based on attachment images */
    --primary-teal: #052637;
    --primary-teal-light: #1A475C;
    --secondary-teal: #20B2AA;
    --secondary-teal-dark: #40E0D0;
    --neutral-gray-light: #E5E7EB;
    --neutral-gray: #9CA3AF;
    --neutral-gray-dark: #6B7280;
    --neutral-dark-blue: #1E3A8A;
    --neutral-dark-navy: #0F172A;
    --neutral-beige: #F5F5DC;
    --neutral-beige-light: #FEFCBF;
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --danger-red: #EF4444;
    --text: #000;
    --disabled-gray: #8E8E93;
    --dark-green: #175139;
    --dark-yellow: #E8BD3A;
    --primary-cream: #FFF5D1;
    --primary-mint: #65D6D2;

    --primary-light: #8FEBFB;
    --color-primary-active: #294D68;
    --color-primary-menu: #1699AF;
    --color-green: #629434;
    --color-green-light: #3EE035;
    --color-red: #F2314B;

    /* Typography */
    --font-family: "Noto Sans Thai", sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: #E9F3F4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-input-nav {
        width: 200px !important;
    }
}

body {
    line-height: 1.4;
    color: #46514D;
}

/* Typography System - Based on attachment */
h1, .title-h1 {
    font-size: 40px;
    font-weight: 700;
    /* line-height: 56px; */
}

h2, .title-h2 {
    font-size: 32px;
    font-weight: 700;
    /* line-height: 40px; */
}

h3, .title-h3 {
    font-size: 28px;
    font-weight: 700;
    /* line-height: 32px; */
}

h4, .title-h4 {
    font-size: 22px;
    font-weight: 700;
    /* line-height: 32px; */
}

.body-bold {
    font-size: 16px;
    font-weight: 700;
}

.body-regular, p {
    font-size: 16px;
    font-weight: 400;
}

.subbody-bold {
    font-size: 14px;
    font-weight: 700;
}

.subbody-regular {
    font-size: 14px;
    font-weight: 400;
}

.caption-bold {
    font-size: 12px;
    font-weight: 700;
}

.caption-regular {
    font-size: 12px;
    font-weight: 400;
}

.text-green {
    color: var(--color-green);
}

.mr-5{
    margin-right: 5px;
}
.mt-5{
    margin-top: 5px;
}

.btn-register{
    padding: 5px;
    font-size: 14px;
    line-height: 17px;
}
/* Reveal Animation for Sections */
.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
    transition-delay: 0s;
}
.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item.reveal-section {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-item.reveal-section.visible {
    transform: translateY(0);
}
.reveal-section[data-reveal-delay="1"] {
    transition-delay: 0.05s;
}
.reveal-section[data-reveal-delay="2"] {
    transition-delay: 0.1s;
}
.reveal-section[data-reveal-delay="3"] {
    transition-delay: 0.15s;
}
.reveal-section[data-reveal-delay="4"] {
    transition-delay: 0.2s;
}
.reveal-section[data-reveal-delay="5"] {
    transition-delay: 0.25s;
}
.reveal-section[data-reveal-delay="6"] {
    transition-delay: 0.3s;
}
.reveal-section[data-reveal-delay="7"] {
    transition-delay: 0.35s;
}
.reveal-section[data-reveal-delay="8"] {
    transition-delay: 0.4s;
}
.reveal-section[data-reveal-delay="9"] {
    transition-delay: 0.45s;
}
.reveal-section[data-reveal-delay="10"] {
    transition-delay: 0.5s;
}
.reveal-section[data-reveal-delay="11"] {
    transition-delay: 0.55s;
}
.reveal-section[data-reveal-delay="12"] {
    transition-delay: 0.6s;
}
.reveal-section[data-reveal-delay="13"] {
    transition-delay: 0.65s;
}
.reveal-section[data-reveal-delay="14"] {
    transition-delay: 0.7s;
}
.reveal-section[data-reveal-delay="15"] {
    transition-delay: 0.75s;
}
.reveal-section[data-reveal-delay="16"] {
    transition-delay: 0.8s;
}
.reveal-section[data-reveal-delay="17"] {
    transition-delay: 0.85s;
}
.reveal-section[data-reveal-delay="18"] {
    transition-delay: 0.9s;
}
.reveal-section[data-reveal-delay="19"] {
    transition-delay: 0.95s;
}
.reveal-section[data-reveal-delay="20"] {
    transition-delay: 1s;
}
.reveal-section[data-reveal-delay="21"] {
    transition-delay: 1.05s;
}
.reveal-section[data-reveal-delay="22"] {
    transition-delay: 1.1s;
}
.reveal-section[data-reveal-delay="23"] {
    transition-delay: 1.15s;
}
.reveal-section[data-reveal-delay="24"] {
    transition-delay: 1.2s;
}

/* Button System - Based on attachment */
.btn {
    border-radius: var(--border-radius-md);
    font-weight: 500;
    /* padding: 12px 24px; */
    padding: 8px 16px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-teal-light);
    border-color: var(--primary-teal-light);
    color: white;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.btn-outline-primary {
    color: var(--primary-teal-light);
    border-color: var(--primary-teal-light);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    transform: translateY(-1px);
}


.btn-secondary {
    background-color: var(--secondary-teal);
    border-color: var(--secondary-teal);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--secondary-teal-dark);
    border-color: var(--secondary-teal-dark);
    color: #fff;
}

.btn-success {
    background-color: var(--success-green);
    border-color: var(--success-green);
    color: #fff;
}

.btn-warning {
    background-color: var(--warning-orange);
    border-color: var(--warning-orange);
    color: #fff;
}

.btn-danger {
    background-color: var(--danger-red);
    border-color: var(--danger-red);
    color: #fff;
}

.btn-info {
    background-color: var(--primary-teal-light);
    border-color: var(--primary-teal-light);
    color: var(--neutral-dark-navy);
    color: #fff;
}

.btn-outline-primary {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.btn-outline-primary:hover {
    background-color: var(--primary-teal-light);
    border-color: var(--primary-teal-light);
    color: #fff;
}

/* Card Components */
.service-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: none;
    padding: var(--spacing-xl);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Form Components - Based on attachment */
.form-control {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--primary-mint);
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--secondary-teal);
    box-shadow: none;
}

.form-control:disabled,
.form-control.disabled,
.form-select:disabled,
.form-select.disabled {
    border-color: #999999;
}
.form-control.is-valid {
    border-color: var(--success-green);
}

.form-control.is-invalid {
    border-color: var(--danger-red);
}

.form-label {
    font-weight: 500;
    color: var(--neutral-dark-navy);
    margin-bottom: var(--spacing-sm);
}

.form-text.text-success {
    color: var(--success-green) !important;
}

.form-text.text-danger {
    color: var(--danger-red) !important;
}

.form-select {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--primary-mint);
    padding: 12px 16px;
}

.form-check-input {
    border: 2px solid var(--primary-teal);
}

.form-check-input:checked {
    background-color: var(--primary-teal) !important;
    border-color: var(--primary-teal) !important;
}
.form-check-input.form-check-input-status:checked {
    background-color: var(--secondary-teal) !important;
    border-color: var(--secondary-teal) !important;
}

/* Input Groups */
.input-group .form-control {
    border-right: none;
}

.input-group .btn {
    border-left: none;
    border-color: var(--neutral-gray-light);
}

.select2.select2-container--bootstrap-5 .select2-selection--single {
    padding: 0;
    border: none;
    background: transparent;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: auto;
    outline: none !important;
    box-shadow: none !important;
}
.select2.select2-container--bootstrap-5.select2-container--focus .select2-selection, 
.select2.select2-container--bootstrap-5.select2-container--open .select2-selection,
.select2-container--bootstrap-5 .select2-dropdown {
    border: none !important;
    border-radius: 8px !important;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options {
    padding: 4px;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted {
    color: #4A5038 !important;
    background-color: #E9F2E2 !important;
    border-radius: 4px;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, 
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    color: var(--color-green) !important;
    background-color: transparent !important;
}

.select2.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    display: block !important;
}
.select2.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow b {
    display: block;
    background-image: url("data:image/svg+xml,<svg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M20.031 10.0306L12.531 17.5306C12.4614 17.6003 12.3787 17.6556 12.2876 17.6933C12.1966 17.7311 12.099 17.7505 12.0004 17.7505C11.9019 17.7505 11.8043 17.7311 11.7132 17.6933C11.6222 17.6556 11.5394 17.6003 11.4698 17.5306L3.96979 10.0306C3.82906 9.88982 3.75 9.69895 3.75 9.49993C3.75 9.30091 3.82906 9.11003 3.96979 8.9693C4.11052 8.82857 4.30139 8.74951 4.50042 8.74951C4.69944 8.74951 4.89031 8.82857 5.03104 8.9693L12.0004 15.9396L18.9698 8.9693C19.0395 8.89962 19.1222 8.84435 19.2132 8.80663C19.3043 8.76892 19.4019 8.74951 19.5004 8.74951C19.599 8.74951 19.6965 8.76892 19.7876 8.80663C19.8786 8.84435 19.9614 8.89962 20.031 8.9693C20.1007 9.03899 20.156 9.12171 20.1937 9.21276C20.2314 9.3038 20.2508 9.40138 20.2508 9.49993C20.2508 9.59847 20.2314 9.69606 20.1937 9.7871C20.156 9.87815 20.1007 9.96087 20.031 10.0306Z' fill='%232CB00E'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 1em;
    height: 1em;
}


.select2-container--default .select2-selection--single {
    /* background-color: #fff;
    border: 1.5px solid var(--primary-mint);
    border-radius: var(--border-radius-md);
    height: 56px;
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--primary-teal);
    transition: border-color 0.2s;
    box-shadow: none; */
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single.select2-selection--focus {
    /* border-color: var(--secondary-teal);
    outline: none; */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    /* color: var(--primary-teal);
    line-height: 56px;
    padding-left: 16px;
    font-size: 16px; */
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    /* color: var(--neutral-gray);
    font-size: 16px; */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    /* height: 56px;
    right: 12px;
    top: 0;
    width: 32px; */
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    /* border-color: var(--primary-mint) transparent transparent transparent;
    border-width: 6px 6px 0 6px;
    margin-top: 10px; */
}

.select2-container--default .select2-dropdown {
    /* border: 1.5px solid var(--primary-mint);
    border-radius: var(--border-radius-md);
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.08);
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--primary-teal);
    margin-top: 2px; */
}

.select2-container--default .select2-results__option {
    /* padding: 12px 16px;
    color: var(--primary-teal);
    font-size: 16px;
    background: #fff;
    transition: background 0.2s, color 0.2s; */
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    /* background-color: var(--primary-mint);
    color: #fff; */
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    /* background-color: var(--secondary-teal);
    color: #fff; */
}

.select2-container--default .select2-results__option--highlighted[aria-selected="true"] {
    /* background-color: var(--secondary-teal-dark);
    color: #fff; */
}

.select2-container--default .select2-results__option[aria-disabled="true"] {
    /* color: var(--neutral-gray); */
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    /* color: var(--danger-red);
    font-size: 18px;
    margin-right: 8px; */
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: none !important;
    background-color: var(--primary-light) !important;
}
.navbar.nav-border {
    border-bottom: 1px solid var(--primary-teal-light);
}

.navbar-brand img {
    height: 40px;
}
.navbar-brand a {
    text-decoration: none;
}

.navbar-nav {
    gap: 8px 32px;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .navbar-nav {
        gap: 8px 12px;
    }
}
.nav-item {

}
.nav-item .nav-link {
    color: var(--color-primary-menu) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    border-radius: 0 !important;
    padding: 0 !important;
    border-bottom: 2px solid transparent;
    text-align: center;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    color: var(--color-primary-active) !important;
}
.nav-item .nav-link.active {
    border-color: inherit;
}

.btn-toggle-menu {
    outline: none !important;
    border: none !important;
}
.btn-toggle-menu svg {
    height: 24px;
    width: 24px;
}
/* .btn-toggle-menu .toggle-open {
    display: block;
}
.btn-toggle-menu .toggle-close {
    display: none;
} */
.btn-toggle-menu.collapsed .toggle-close,
.btn-toggle-menu:not(.collapsed) .toggle-open {
    display: none;
}
.btn-toggle-menu.collapsed .toggle-open,
.btn-toggle-menu:not(.collapsed) .toggle-close {
    display: block;
}

@media (max-width: 992px) {
    .navbar .navbar-brand {
        display: flex;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .navbar .navbar-nav {
        font-size: 24px;
        padding-top: 8px;
        margin-top: 16px;
        /* border-top: 1px solid #F7F7F7; */
        justify-content: flex-start;
        align-items: flex-start;
        gap: 16px;
    }
    .btn-toggle-menu svg {
        height: 32px;
        width: 32px;
    }
}


.page-header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 16px 0;
}
.page-header.page-header-image {
    min-height: 680px;
    background-color: var(--primary-light);
}
.page-header.page-header-image-detail {
    min-height: 450px;
    background-color: var(--primary-light);
}
.page-header .page-title {
    color: var(--color-primary-active);
}
.page-header .breadcrumb {
    color: #94A6B3;
    font-size: 14px;
    font-weight: 500;
}
.page-header .breadcrumb-item {
    max-width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.page-header .breadcrumb-item+.breadcrumb-item::before {
    content: url("data:image/svg+xml,<svg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6.35403 5.85378L1.35403 10.8538C1.30757 10.9002 1.25242 10.9371 1.19173 10.9622C1.13103 10.9874 1.06598 11.0003 1.00028 11.0003C0.934581 11.0003 0.869526 10.9874 0.80883 10.9622C0.748133 10.9371 0.692983 10.9002 0.646528 10.8538C0.600073 10.8073 0.563222 10.7522 0.538081 10.6915C0.51294 10.6308 0.5 10.5657 0.5 10.5C0.5 10.4343 0.51294 10.3693 0.538081 10.3086C0.563222 10.2479 0.600073 10.1927 0.646528 10.1463L5.2934 5.50003L0.646528 0.853784C0.552707 0.759964 0.5 0.632716 0.5 0.500034C0.5 0.367352 0.552707 0.240104 0.646528 0.146284C0.740348 0.0524635 0.867596 -0.00024414 1.00028 -0.000244141C1.13296 -0.000244142 1.26021 0.0524635 1.35403 0.146284L6.35403 5.14628C6.40052 5.19272 6.4374 5.24786 6.46256 5.30856C6.48772 5.36926 6.50067 5.43433 6.50067 5.50003C6.50067 5.56574 6.48772 5.63081 6.46256 5.6915C6.4374 5.7522 6.40052 5.80735 6.35403 5.85378Z' fill='%2394A6B3'/></svg>");
}
.page-header .breadcrumb a {
    color: #94A6B3;
    text-decoration: none;
}
.page-header .breadcrumb-item {

}
.page-header .breadcrumb-item.active {
    
}
.page-header .breadcrumb-item.active,
.page-header .breadcrumb-item a:hover {
    color: var(--color-primary-active);
}

.page-header.header-home {
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.page-header.header-home .container {
    height: 100%;
    flex-grow: 1;
}
.page-header.header-home .page-title {
    font-size: 60px;
    line-height: 1.4;
    margin: 0;
}
.page-header.header-home .page-description,
.page-header.header-home .page-description p{
    font-size: 30px;
}
.page-header.header-home .page-description p:last-child {
    margin: 0;
}
.page-header .banner-inner-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-header .banner-inner-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
}


@media (max-width: 991px) {
    .page-header.page-header-image {
        min-height: 220px;
        aspect-ratio: 1366/680;
    }
    .page-header .banner-inner-image img {
        max-width: 45%;
    }
    .page-header.page-header-image-detail {
        min-height: 220px;
        aspect-ratio: 1366/680;
    }
    .page-header .banner-inner-image-detail img {
        max-width: 45%;
    }
}
@media (max-width: 767px) {
    .page-header .breadcrumb {
        display: none;
    }

    .page-header.header-home {
        text-align: center;
        width: 100%;
        /* padding: 30px 84px; */
    }
    .page-header.header-home .page-title{
        font-size: 20px;
    }
    .page-header.header-home .page-description,
    .page-header.header-home .page-description p {
        font-size: 12px;
    }
}

.page-wrapper {
}
.page-content {
    padding: 80px 0;
}
.page-content-list {
    padding: 40px 0 32px;
}

.sec-header {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.sec-header .sec-title {
    color: #1E1E1E;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}
.sec-header .sec-subtitle {
    font-size: 24px;
}
.sec-header .sec-subtitle p {
    font-size: inherit
}
.sec-header .sec-subtitle p:last-child {
    margin: 0;
}
.sec-header .sec-action {
    
}
.sec-header .sec-action .btn-see-all {
    color: white;
    font-size: 16px;
    font-weight: normal;
    background-color: var(--color-green);
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 6px 16px;
}
.sec-header .sec-action .btn-see-all:hover {
    background-color: var(--color-green-light);
    text-decoration: none;
}

@media (max-width: 767px) {
    .sec-header .sec-title {
        font-size: 20px;
    }
    .sec-header .sec-action .btn-see-all {
    }
}

.sec-sub-header {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.sec-sub-header .sec-title {
    color: #1E1E1E;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}
.sec-sub-header .sec-action {
    
}
.sec-sub-header .sec-action .btn-see-all {
    color: white;
    font-size: 16px;
    font-weight: normal;
    background-color: #2CB00E;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 6px 16px;
}
.sec-sub-header .sec-action .btn-see-all:hover {
    background-color: var(--color-green-light);
    text-decoration: none;
}

@media (max-width: 991px) {
    .sec-sub-header .sec-action .btn-see-all span {
        display: none;
    }
}
@media (max-width: 767px) {
    .sec-sub-header .sec-title {
        font-size: 24px;
    }
    .sec-sub-header .sec-action .btn-see-all {
        font-size: 12px;
    }
}

.page-home-wrapper {
    background-color: var(--primary-light);
}

.sec-home-bottom {
    position: relative;
}
.sec-home-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

.sec-home-intro {
    padding-top: 15px;
    padding-bottom: 10px;
    /* background-image: url('../../images/bg-sky-top.png'); */
    background-image: url('../../images/bg-sky-top-n.png');
    /* background-size: 100% auto;
    background-position: top center; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 425px;
    display: flex;
    align-items: center;
}
.sec-home-intro .sec-description {
    color: var(--color-primary-active);
    line-height: 1.2;
    /* text-shadow:
        4px 4px 2px #fff,
        -4px 4px 2px #fff,
        -4px -4px 2px #fff,
        4px -4px 2px #fff; */
    text-shadow:
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff;
    background-image: url('../../images/bg-ellipse.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 70px 0;
}
.sec-home-intro .sec-description h2 {
    color: var(--color-primary-active);
    font-size: 40px;
    margin: 0 0 10px;
}
.sec-home-intro .sec-description p {
    color: var(--color-primary-active);
    font-size: 24px;
    margin: 0;
}

@media (max-width: 767px) {
    .page-home-wrapper .sec-header {
        margin-bottom: 16px;
    }
    .sec-home-intro {
        /* padding-top: 80px;
        padding-bottom: 40px; */
        min-height: 250px;
    }
    .sec-home-intro .sec-description h2 {
        font-size: 24px;
    }
    .sec-home-intro .sec-description p {
        font-size: 16px;
    }
}

.sec-home-award-city {
    background-image: url('../../images/bg-clond-1.png');
    background-size: 100% auto;
    background-position: top 10% center;
    background-repeat: no-repeat;
    position: relative;
}
.sec-home-award-city:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('../../images/bg-clond-2.png');
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    left: 0;
    z-index: 0;
    pointer-events: none;
}
.sec-home-award-city .container {
    position: relative;
    z-index: 1;
}
.sec-home-award-city .sec-header .sec-title {
    color: var(--color-primary-active);
}
.sec-home-award-city .filter-group-wrap {
    margin: 0;
}
.sec-home-award-city .content-card {
    background-color: var(--color-primary-active);
    background-position: center;
    background-size: cover;
    padding: 0;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.25));
}
.sec-home-award-city .content-card .card-body {
    margin: 0;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
}
.sec-home-award-city .content-card .award-info {
    border-bottom-color: rgba(255, 255, 255, .5);
}
.sec-home-award-city .content-card .award-info .award-img {
    width: 60px;
    height: 60px;
    background-color: transparent;
}
.sec-home-award-city .content-card .card-detail {
    flex-grow: 1;
}
.sec-home-award-city .content-card .card-title,
.sec-home-award-city .content-card .card-detail,
.sec-home-award-city .content-card .award-info .award-name {
    color: #fff;
}
.sec-home-award-city-group {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.sec-home-award-city-group > .row {
    flex-grow: 1;
}
.sec-home-award-city-group .sec-sub-header .sec-title {
    color: var(--color-red);
    display: inline-flex;
    align-items: center;
}
.sec-home-award-city-group .sec-sub-header .sec-title svg {
    height: 24px;
    width: 24px;
    margin-right: 12px;
}
.sec-home-award-city-group .sec-sub-header .sec-action .btn-see-all {
}
.sec-home-award-city-group .col-card-item:nth-child(odd) .content-card {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.sec-home-award-city-group .col-card-item:nth-child(even) .content-card {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-width: 767px) {
    .sec-home-award-city .sec-header {
        margin-bottom: 24px;
    }
    .sec-home-award-city-group .sec-sub-header .sec-title {
        font-size: 18px;
    }
}

.sec-home-city-keys {
    padding-bottom: 200px;
    background-image: url('../../images/bg-green-forest.png');
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
}
.sec-home-city-keys .sec-header {
    flex-direction: column;
}
.sec-home-city-keys .sec-header:after {
    content: '';
    display: block;
    width: 55px;
    border-top: 4px solid var(--color-green);
    margin-top: 16px;
    border-radius: 5px;
}
.sec-home-city-keys .sec-header .sec-subtitle {
    
}
.sec-home-city-keys .sec-description {
    margin-bottom: 62px;
}
.sec-home-city-keys .sec-description p:last-child {
    margin: 0;
}

.city-key-items {
    display: grid;
    gap: 24px 60px;
    grid-template-columns: 1fr 1fr;
}
.city-key-items .city-key-item {
    display: flex;
    gap: 24px;
    align-items: center;
}
.city-key-item .city-key-image {
    width: 200px;
    aspect-ratio: 1/1;
    background-color: #FFF5D1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 14px solid var(--color);
    flex-shrink: 0;
    max-width: 40%;
}
.city-key-item .city-key-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}
.city-key-item .city-key-image .city-key-percent {
    color: white;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--color);
    display: flex;
    align-items: baseline;
    justify-content: center;
    transform: translate(14px, -14px);
}
.city-key-item .city-key-image .city-key-percent span {
    font-size: 18px;
}
.city-key-item .city-key-title {
    color: var(--color);
    font-size: 24px;
}
.city-key-item .city-key-detail {
    color: #4A5038;
    margin: 0;
}
.city-key-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}
.city-key-item:nth-child(even) {

}
.city-key-item:nth-child(even) .city-key-image .city-key-percent {
    right: auto;
    left: 0;
    transform: translate(-14px, -14px);
}

@media (max-width: 991px) {
    .city-key-items {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr;
    }
    .city-key-items .city-key-item {
        gap: 24px;
    }
    .city-key-item .city-key-image {
        width: 100px;
        border-width: 8px;
    }
    .city-key-item .city-key-image .city-key-percent {
        font-size: 16px;
        width: 44px;
        height: 44px;
        line-height: 44px;
        transform: translate(8px, -8px);
    }
    .city-key-item .city-key-image .city-key-percent span {
        font-size: 12px;
    }
    .city-key-item .city-key-title {
        font-size: 24px;
    }
    .city-key-item .city-key-detail {
    }
    .city-key-item:nth-child(odd) {
    }
    .city-key-item:nth-child(even) {

    }
    .city-key-item:nth-child(even) .city-key-image .city-key-percent {
        transform: translate(-8px, -8px);
    }
}
@media (max-width: 767px) {
    .sec-home-city-keys {
    }
    .sec-home-city-keys .sec-header .sec-title {
        font-size: 36px;
    }
    .sec-home-city-keys .sec-header .sec-subtitle {
        font-size: 24px;
    }
    .sec-home-city-keys .sec-description {
        margin-bottom: 24px;
    }
}

.sec-home-news {
    background-color: #5A7439;
    /* background-image: url('../../images/bg-green-cloud.png'); */
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding: 0 0 40px;
    position: relative;
}
.sec-home-news .sec-header {
    transform: translateY(-45px);
    margin-bottom: -45px;
}
.sec-home-news .sec-header .sec-title {
    color: white;
}
.sec-home-news .news-card .card-meta-item,
.sec-home-news .news-card .card-detail,
.sec-home-news .news-card .card-detail a {
    color: white;
}

.sec-home-news .news-card .card-meta-item svg path{
    stroke: white;
}
.sec-home-knowledge {
    background-image: url('../../images/bg-green-cloud.png');
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 10% 0 30px;
}
.sec-home-knowledge .sec-header {
    margin-top: -2%;
}


.filter-group-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}
.filter-group-wrap .filter-group {
    
}
.filter-group-wrap .select2.select2-container--bootstrap-5 .select2-selection--single {
    color: var(--color-green) !important;
    font-size: 24px;
    /* padding: 0;
    border: none;
    background: transparent;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px; */
}
.filter-group-wrap .select2.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: var(--color-green) !important;
}
.filter-group-wrap .select2.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    display: block !important;
}
.filter-group-wrap .select2.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow b {
    /* display: block;
    background-image: url("data:image/svg+xml,<svg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M20.031 10.0306L12.531 17.5306C12.4614 17.6003 12.3787 17.6556 12.2876 17.6933C12.1966 17.7311 12.099 17.7505 12.0004 17.7505C11.9019 17.7505 11.8043 17.7311 11.7132 17.6933C11.6222 17.6556 11.5394 17.6003 11.4698 17.5306L3.96979 10.0306C3.82906 9.88982 3.75 9.69895 3.75 9.49993C3.75 9.30091 3.82906 9.11003 3.96979 8.9693C4.11052 8.82857 4.30139 8.74951 4.50042 8.74951C4.69944 8.74951 4.89031 8.82857 5.03104 8.9693L12.0004 15.9396L18.9698 8.9693C19.0395 8.89962 19.1222 8.84435 19.2132 8.80663C19.3043 8.76892 19.4019 8.74951 19.5004 8.74951C19.599 8.74951 19.6965 8.76892 19.7876 8.80663C19.8786 8.84435 19.9614 8.89962 20.031 8.9693C20.1007 9.03899 20.156 9.12171 20.1937 9.21276C20.2314 9.3038 20.2508 9.40138 20.2508 9.49993C20.2508 9.59847 20.2314 9.69606 20.1937 9.7871C20.156 9.87815 20.1007 9.96087 20.031 10.0306Z' fill='%232CB00E'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; */
    width: 1em;
    height: 1em;
}

@media (max-width: 767px) {
    .filter-group-wrap .select2.select2-container--bootstrap-5 .select2-selection--single {
        font-size: 16px;
    }
    .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
        font-size: 14px;
    }
}

.filter-list {
    font-size: 20px;
    display: flex;
    gap: 0 8px;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
}
.filter-list li a {
    color: var(--color-primary-active);
    text-decoration: none;
    line-height: 1;
}
.filter-list li a:hover {
    text-decoration: underline;
}
.filter-list li a.active {
    color: var(--color-red);
    font-size: 1.6em;
    font-weight: bold;
    text-decoration: none;
}

.card-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 410/308;
}
.card-img-container.img-square {
    aspect-ratio: 1/1;
}
.content-card {
    border: none;
    border-radius: var(--border-radius-lg);
    /* box-shadow: var(--shadow-md); */
    transition: all 0.3s ease;
    overflow: hidden;
    background: transparent;
}
.content-card:hover {
    transform: translateY(-5px);
    /* box-shadow: var(--shadow-lg); */
}
.content-card a {
    text-decoration: none;
}
.content-card .card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /*cover*/
    /* background: linear-gradient(135deg, #8FBC8F 0%, #9ACD32 100%); */
    background-color: #ffffff; /* พื้นหลังสีขาวสำหรับรูปที่ขนาดไม่พอดี */
    overflow: hidden;
    border: 1px solid #ffffff; /* เส้นขอบเทาบางๆ ตามที่คุณต้องการ */
    border-radius: 8px; /* มนมุมนิดนึงจะดูทันสมัยขึ้น */
}
.content-card .card-body {
    padding: 0;
    margin-top: 16px;
}

.content-card .card-title a,
.content-card .card-detail a {
    color: inherit;
}
.content-card .card-detail {}
.content-card .card-detail p {
    margin: 0;
}
.content-card .card-text-link {
    color: var(--color-primary-active);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}
.content-card .card-text-link svg {
    width: auto;
    height: 1.25rem;
}
.content-card .card-action {
    margin-top: 4px;
}
.content-card .card-action-link {
    color: var(--color-green-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
    overflow: hidden;
}
.content-card .card-action-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.content-card .card-action-link svg {
    width: auto;
    height: 1.25rem;
    flex-shrink: 0;
}

.content-card .award-info {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-primary-active);
    display: flex;
    gap: 8px;
}
.content-card .award-info .award-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    /* background-color: var(--color-primary-active); */
    background-color: transparent;
}
.content-card .award-info .award-img img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    object-fit: contain;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}
.content-card .award-info .award-name {
    color: var(--color-primary-active);
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .content-card .card-title {
        font-size: 16px;
    }
    .content-card .award-info {
        flex-direction: column;
        gap: 8px;
    }
    .content-card .award-info .award-img {
        width: 32px;
        height: 32px;
    }
    .content-card .award-info .award-name {
        font-size: 14px;
    }
    .content-card .card-action-link {
        font-size: 14px;
    }
}

.model-city-card {}

.model-city-card .card-body {
    margin-top: 8px;
}
.model-city-card .card-title {
    color: #4A5038;
    font-size: inherit;
    font-weight: bold;
}
.model-city-card .card-detail {
    color: #4A5038;
}


.knowledge-card .card-detail,
.news-card .card-detail {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
}
.card-meta .card-meta-item {
    color: var(--color-green);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.card-meta .card-meta-item svg {
    width: auto;
    height: 1rem;
    flex-shrink: 0;
}

.data-report-card {}
.data-report-card .card-title {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.data-report-card .card-meta {
    margin-bottom: 0;
}



/* Search Input Styles */
.search-input,
.search-input-nav {
    border: 1px solid var(--secondary-teal) !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
    outline: none !important;
}

.search-input:focus,
.search-input-nav:focus {
    border-color: var(--primary-teal);
    /* box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.25); */
    box-shadow: none;
}

/* Filter Buttons */
.btn-outline-secondary {
    border-color: #dee2e6;
    color: #6c757d;
    border-radius: 20px;
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
}

.btn-outline-secondary:hover,
.btn-outline-secondary.active {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
}

.btn-fw {
    display: block;
    max-width: 357px;
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    width: 236px;
    max-width: 100%;
}

/* Pagination Styles */
.pagination {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 0;
}
.pagination .page-link {
    color: var(--primary-teal);
    font-size: 14px;
    border: none;
    border-radius: 4px !important;
    transition: all 0.3s ease;
    min-width: 32px;
    min-height: 32px;
    padding: 5px !important;
    display: flex;
    align-items: center; 
    justify-content: center;
    text-align: center;
    line-height: 1;
}
.pagination .page-item .page-number {
}
.pagination .page-item.active .page-link {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: white;
}
.pagination .page-link:hover {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: white;
}
.pagination  .disabled>.page-link,
.pagination .page-link.disabled {
    color: #AEAEB2;
    background-color: var(--disabled-gray);
}

.pagination .page-arrow {
    /* color: #AEAEB2; */
}


/* Alert Bar Component */
.alert-bar {
    border: 1px solid var(--dark-yellow);
    border-radius: 0;
    margin-bottom: 0;
    padding: 18px 30px;
    background: var(--primary-cream);
    border-radius: 10px;
    margin-bottom: 80px;
}
.alert-bar a {
    transition: all 0.2s ease;
}
.alert-bar a:hover {
}
.alert-bar svg {
    transition: all 0.2s ease;
}
.alert-bar a:hover svg {
}


/* Navigation */
.navbar {
    padding: var(--spacing-md) 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-teal) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--neutral-dark-navy) !important;
    padding: var(--spacing-sm) var(--spacing-md) !important;
    border-radius: var(--border-radius-md);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--secondary-teal) !important;
}
.nav-link.active {
    color: var(--secondary-teal) !important;
}

/* Bootstrap Color Overrides */
:root {
    --bs-primary: #20B2AA;
    --bs-primary-rgb: 32, 178, 170;
    --bs-secondary: #F4D03F;
    --bs-secondary-rgb: 244, 208, 63;
    --bs-success: #10B981;
    --bs-success-rgb: 16, 185, 129;
    --bs-warning: #F59E0B;
    --bs-warning-rgb: 245, 158, 11;
    --bs-danger: #EF4444;
    --bs-danger-rgb: 239, 68, 68;
    --bs-info: #40E0D0;
    --bs-info-rgb: 64, 224, 208;
}

/* Utility Classes */
.text-primary-teal {
    color: var(--primary-teal) !important;
}

.bg-primary-teal {
    background-color: var(--primary-teal) !important;
}

.border-primary-teal {
    border-color: var(--primary-teal) !important;
}
.text-primary-teal-light {
    color: var(--primary-teal-light) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1, .title-h1 {
        font-size: 32px;
    }
    
    h2, .title-h2 {
        font-size: 28px;
    }
    
    .hero-section {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }
    
    .service-card,
    .form-example-card {
        padding: var(--spacing-lg);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}




.sec-contact-detail {
}
.sec-contact-detail .col-org-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sec-contact-detail .org-logo {
    margin: 0;
}
.sec-contact-detail .org-logo img {
    height: 90px;
    width: auto;
    flex-shrink: 0;
}
.sec-contact-detail .org-info {
    color: #46514D;
    font-size: 14px;
}
.sec-contact-detail .org-info p:last-child {
    margin: 0;
}

.sec-contact-detail .contact-detail-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-end;
}

.sec-contact-detail .col-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.sec-contact-detail .contact-heading {
    color: #fff;
    margin: 0;
}
.sec-contact-detail .contact-info {
    color: #46514D;
}
.sec-contact-detail .contact-info p {
    margin: 0;
}
.sec-contact-detail .contact-info a {
    color: #2CB00E;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .sec-contact-detail .col-org-info {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }
    .sec-contact-detail .org-info {
    }
    .sec-contact-detail .contact-info p {
        margin: 0;
    }
}



.footer {
    padding: 0;
    z-index: 1;
}
.footer .footer-text {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}
.footer .footer-caption {
    font-size: 12px;
    margin: 0;
}

.sec-footer-main {
    background: linear-gradient(360deg, #3C4E25 0%, #5A7439 100%);
}
.sec-copyright {
    color: #fff;
    text-align: center;
    background-color: #2CB00E;
    padding: 10px 0;
}
.sec-copyright .copyright-wrap {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.copyright-wrap p {
    font-size: inherit;
    margin: 0;
}
.copyright-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.copyright-menu a {
    color: inherit;
    text-decoration: underline;
}
.copyright-menu li {
    text-decoration: none;
}

.sec-footer-menu {
    padding: 18px 0;
    border-bottom: 1px solid #7A8558;
}
.sec-footer-menu .footer-menu-wrap {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    gap: 16px;
}
.sec-footer-menu .navbar-nav {
    font-size: 14px;
    font-weight: 500 !important;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px 44px;
}
.sec-footer-menu .nav-item .nav-link {
    color: #fff !important;
}
.sec-footer-menu .nav-item .nav-link svg {
    width: auto;
    height: 1.75em;
    max-height: 24px;
}
.sec-footer-menu .btn-link {
    color: var(--color-green-light);
    padding: 0;
    text-decoration: underline;
}
@media (max-width: 767px) {
    .sec-footer-menu .footer-menu-wrap {
        flex-direction: column;
    }
    .sec-footer-menu .navbar-nav {
        font-size: 24px;
        flex-direction: column;
    }
    .sec-footer-menu .btn-link {
        font-size: 24px;
    }
}


.sec-footer-content {
    padding: 32px 0;
}
.footer-org-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-org-info .org-logo {
    margin: 0;
}
.footer-org-info .org-logo img {
    height: 90px;
    width: auto;
}
.footer-org-info .org-info {
    /* color: #C3C9B1; */
    color: #fff;
    /* font-size: 14px; */
    margin: 0;
}
.footer-org-info .org-info p:last-child{
    margin: 0;
}

.footer-content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact-info .contact-heading {
    color: #fff;
    margin: 0;
}
.footer-contact-info .contact-info {
    color: #C3C9B1;
}
.footer-contact-info .contact-info p {
    font-size: 14px;
    margin: 0;
}
.footer-contact-info .contact-info a {
    color: var(--color-green-light);
    text-decoration: underline;
}


@media (max-width: 767px) {
    .footer-org-info {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }
    .footer-org-info .org-info {
        color: #C3C9B1;
        font-size: 12px;
    }
    .footer-contact-info .contact-info p {
        font-size: 12px;
        margin: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-card {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .login-title {
        font-size: 1.25rem;
    }
}


.page-heading {}
.page-heading .heading-hl {
    color: var(--dark-green);
}

.page-header {}
.page-sub-heading {
    
}

.search-form {
    position: relative;
    width: 343px;
    max-width: 100%;
}
.search-form input[type="text"] {
    width: 100%;
}
.search-form .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
}
.search-form .search-icon svg {
    height: 24px;
    width: auto;
}

@media (max-width: 767px) {
    .search-form {
        width: 100%;
    }
}


.filter-tags {}
.filter-tags .tag-items {
    gap: 20px;
}
.filter-tags .tag-heading {
    color: var(--text);
}

@media (max-width: 767px) {
    .filter-tags .tag-items {
        gap: 8px;
    }
    .filter-tags .tag-heading {
        font-size: 12px;
        width: 100%;
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
}


.bg-page-header {
    height: 240px;
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 100%);
    background-image: url(../../images/bg-header.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 34px;
}

@media (max-width: 767px) {
    .bg-page-header {
        height: 131px;
    }
}

.page-header-info {
    border-bottom: 1px solid #D3D3D3;
    padding-bottom: 52px;
    margin-bottom: 40px;
}
.page-header-info .page-title {
    color: var(--secondary-teal);
}

.page-content {
    margin-bottom: 40px;
}
.page-content iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border: none;
    margin: 1em 0;
}
.page-content img {
    max-width: 100%;
    height: auto;
}

.map-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    min-height: 350px;
    max-height: 600px;
    border: none;
    margin: 1em 0;
    border-radius: 16px;
}


.page-news-header {
    margin-bottom: 40px;
}
.page-news-header .news-title {
    color: var(--color-primary-active);
    font-size: 24px;
    line-height: 1.2;
}
.page-news-header .news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
}
.page-news-header .news-meta .news-meta-item {
    color: var(--color-green);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.page-news-header .news-meta .news-meta-item svg {
    width: auto;
    height: 1rem;
    flex-shrink: 0;
}





.sec-dashboard-chart {
    padding-bottom: 60px;
    background-image: url('../../images/bg-cloud-3.png');
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.sec-dashboard-chart .dashboard-chart-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
}
.sec-dashboard-chart .dashboard-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 40%;
}
.sec-dashboard-chart .dashboard-card {
    padding: 32px 40px;
    min-width: 340px;
    padding: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E0F0F1 100%);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    width: 100%;
}
.sec-dashboard-chart .dashboard-card h2 {
    font-size: 36px;
    color: var(--color-primary-active);
    font-weight: bold;
    margin-bottom: 24px;
}
.sec-dashboard-chart .dashboard-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 24px;
}
.sec-dashboard-chart .dashboard-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sec-dashboard-chart .dashboard-list li.active {
    font-size: 24px;
    font-weight: bold;
}

.sec-dashboard-chart .dashboard-list li span {
    margin-left: auto;
}
.sec-dashboard-chart .legend-box {
    width: 36px;
    height: 24px;
    display: inline-block;
    border: 2px solid var(--border);
    background-color: var(--background);
}
.sec-dashboard-chart .btn-see-all {
    color: white;
    font-size: 16px;
    font-weight: normal;
    background-color: #2CB00E;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 6px 16px;
}
.sec-dashboard-chart .btn-see-all:hover {
    background-color: var(--color-green-light);
    text-decoration: none;
}
.sec-dashboard-chart .dashboard-chart {
    flex: 1;
    display: flex;
    justify-content: center;
}
.sec-dashboard-chart .dashboard-chart canvas {
    max-width: 600px;
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 991px) {
    .sec-dashboard-chart {
        padding-bottom: 40px;
    }
    .sec-dashboard-chart .dashboard-chart-wrap {
        flex-direction: column;
        gap: 24px;
    }
    .sec-dashboard-chart .dashboard-info {
        order: 2;
        width: 100%;
    }
    .sec-dashboard-chart .dashboard-chart {
        order: 1;
        width: 100%;
    }
    .sec-dashboard-chart .dashboard-list li.active {
        font-size: 18px;
    }
}