@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai+Looped:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
--primary-green: #059669;
--primary-dark-green: #047857;
--primary-light-green: #d1fae5;
--primary-soft-green: #ecfdf5;
--text-dark: #1f2937;
--text-gray: #6b7280;
--bg-white: #ffffff;
--bg-light: #f0fdf4;
--bg-gradient: linear-gradient(180deg, #ffffff 0%, #f0fdf4 50%, #ecfdf5 100%);
--bg-gradient-soft: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
--border-color: #d1fae5;
--shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.08);
--shadow-lg: 0 10px 15px -3px rgba(5, 150, 105, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
overflow-x: hidden;
}
body {
font-family:
"Noto Sans Thai Looped",
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
"Helvetica Neue",
Arial,
sans-serif;
color: var(--text-dark);
background: #f8fdf9;
line-height: 1.6;
overflow-x: hidden;
width: 100%;
max-width: 100vw;
position: relative;
min-height: 100vh;
} #main-content,
main,
.site-main {
position: relative;
z-index: 1;
} body::before,
body::after {
display: none;
} .animated-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
display: block;
background: transparent;
} .site-header {
background: linear-gradient(90deg, #123d33 0%, #1f573f 50%, #2b714c 100%);
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
position: sticky;
top: 0;
z-index: 1000;
margin-bottom: 0;
}
.navbar {
max-width: 100%;
width: 100%;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
flex-wrap: nowrap;
}
.navbar::before {
content: none;
} .logo-section {
display: flex;
align-items: center;
gap: 0.75rem;
margin-left: 0;
padding-left: 0;
flex-shrink: 0;
min-width: fit-content;
}
.site-logo-image {
width: 50px;
height: 50px;
border-radius: 50%;
background: white;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
font-size: 1.5rem;
font-weight: bold;
color: var(--primary-green);
text-decoration: none;
flex-shrink: 0;
overflow: hidden;
}
.site-logo-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.custom-logo {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
display: block;
}
.site-branding {
display: flex;
flex-direction: column;
}
.custom-logo-link {
width: 50px;
height: 50px;
border-radius: 50%;
background: white;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
flex-shrink: 0;
overflow: hidden;
}
.custom-logo-link img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.site-title {
font-size: 1.25rem;
font-weight: bold;
color: white;
margin: 0;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-description {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.9);
margin: 0;
} .search-section {
flex: 1;
max-width: 500px;
min-width: 200px;
margin: 0 1rem;
}
.search-form {
display: flex;
background: white;
border-radius: 25px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.search-input {
flex: 1;
border: none;
padding: 0.75rem 1.5rem;
font-size: 0.95rem;
outline: none;
background: transparent;
}
.search-input::placeholder {
color: #9ca3af;
}
.search-button {
background: #771b52;
border: none;
padding: 0.75rem 1.5rem;
color: white;
cursor: pointer;
font-weight: 600;
transition: background 0.3s ease;
}
.search-button:hover {
background: var(--primary-dark-green);
} .main-navigation {
display: flex;
gap: 0.3rem;
list-style: none;
align-items: center;
margin: 0;
padding: 0;
flex-shrink: 0;
flex-wrap: nowrap;
}
.main-navigation > li {
position: relative;
list-style: none;
white-space: nowrap;
}
.main-navigation a {
color: white;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
position: relative;
padding: 0.5rem 0.75rem;
border-radius: 8px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
gap: 0.3rem;
font-size: 0.9rem;
}
.main-navigation a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
.main-navigation a::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 3px;
background-color: white;
border-radius: 2px;
transition: width 0.3s ease;
}
.main-navigation a:hover::after {
width: 60%;
} .main-navigation .menu-item-has-children > a::before {
content: "▼";
font-size: 0.7rem;
margin-left: 0.3rem;
transition: transform 0.3s ease;
}
.main-navigation .menu-item-has-children:hover > a::before {
transform: rotate(180deg);
} .main-navigation .sub-menu {
position: absolute;
top: 100%;
left: 0;
background: white;
min-width: 220px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
border-radius: 8px;
padding: 0.5rem 0;
margin-top: 0.5rem;
list-style: none;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
z-index: 1000;
}
.main-navigation li:hover > .sub-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.main-navigation .sub-menu li {
width: 100%;
}
.main-navigation .sub-menu a {
color: var(--text-dark);
padding: 0.75rem 1.25rem;
display: block;
border-radius: 0;
text-shadow: none;
transition: all 0.2s ease;
}
.main-navigation .sub-menu a:hover {
background: var(--primary-light-green);
color: var(--primary-dark-green);
transform: translateX(5px);
padding-left: 1.5rem;
}
.main-navigation .sub-menu a::after {
display: none;
} .main-navigation .sub-menu .sub-menu {
left: 100%;
top: 0;
margin-top: 0;
margin-left: 0.5rem;
}
.main-navigation .sub-menu .menu-item-has-children > a::before {
content: "►";
float: right;
font-size: 0.7rem;
} .menu-toggle {
display: none;
background: white;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--primary-green);
padding: 0.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} .hero-section-wrapper {
padding: 2rem 2rem 2rem 2rem;
background: rgba(248, 253, 249, 0.9);
position: relative;
z-index: 1;
} .hero-director-layout {
display: flex;
gap: 1.5rem;
max-width: 1400px;
margin: 0 auto;
align-items: stretch;
}
.hero-section {
position: relative;
width: 100%;
flex: 1 1 0;
min-width: 0;
height: 565px;
overflow: hidden;
background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
border-radius: 20px;
box-shadow:
0 4px 16px rgba(5, 150, 105, 0.1),
0 2px 6px rgba(5, 150, 105, 0.06);
border: 1px solid rgba(5, 150, 105, 0.12);
} .director-sidebar {
flex: 0 0 320px;
background: linear-gradient(135deg, #0f4c3a 0%, #1a5d4a 50%, #0a3d2e 100%);
border-radius: 20px;
overflow: hidden;
box-shadow:
0 4px 16px rgba(5, 150, 105, 0.15),
0 2px 6px rgba(5, 150, 105, 0.08);
display: flex;
flex-direction: column;
}
.director-sidebar-inner {
display: flex;
flex-direction: column;
align-items: center;
padding: 1.5rem 1.25rem;
height: 100%;
justify-content: center;
gap: 1rem;
text-align: center;
}
.director-sidebar .director-image {
text-align: center;
}
.director-sidebar .director-image-wrapper {
position: relative;
display: inline-block;
}
.director-sidebar .director-image-wrapper::before {
content: "";
position: absolute;
top: -8px;
left: -8px;
right: -8px;
bottom: -8px;
background: linear-gradient(
135deg,
rgba(16, 185, 129, 0.3) 0%,
rgba(5, 150, 105, 0.1) 100%
);
border-radius: 16px;
z-index: -1;
transform: rotate(-2deg);
}
.director-sidebar .director-image-wrapper::after {
content: "";
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border: 2px solid rgba(16, 185, 129, 0.35);
border-radius: 14px;
z-index: -1;
}
.director-sidebar .director-photo {
width: 100%;
max-width: 220px;
height: auto;
border-radius: 14px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
border: 3px solid rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease;
}
.director-sidebar .director-photo:hover {
transform: scale(1.03);
}
.director-sidebar .director-info-card {
position: relative;
bottom: auto;
left: auto;
transform: none;
background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
color: var(--text-dark);
padding: 1rem 1.25rem;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
max-width: 280px;
width: 100%;
text-align: center;
border: 1px solid rgba(16, 185, 129, 0.2);
margin-top: 0.75rem;
}
.director-sidebar .director-info-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
border-radius: 12px 12px 0 0;
}
.director-sidebar .director-name {
font-size: 1.05rem;
font-weight: 700;
margin-bottom: 0.3rem;
color: #1e3a5f;
}
.director-sidebar .director-position {
font-size: 0.8rem;
line-height: 1.5;
color: var(--text-gray);
margin: 0;
}
.director-sidebar .director-social {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-top: 0.6rem;
}
.director-sidebar .director-social a {
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
background: var(--primary-light-green);
color: var(--primary-green);
border-radius: 50%;
transition: all 0.3s ease;
font-size: 0.8rem;
}
.director-sidebar .director-social a:hover {
background: var(--primary-green);
color: white;
transform: translateY(-2px);
}
.director-sidebar-stats {
display: flex;
gap: 0.5rem;
width: 100%;
justify-content: center;
}
.director-sidebar-stats .director-stat {
text-align: center;
padding: 0.5rem 0.75rem;
background: rgba(255, 255, 255, 0.08);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.1);
flex: 1;
}
.director-sidebar-stats .director-stat-number {
font-size: 1.1rem;
font-weight: 800;
color: #6ee7b7;
display: block;
}
.director-sidebar-stats .director-stat-label {
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.7);
margin-top: 0.15rem;
display: block;
}
.director-sidebar .director-cta {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 1.5rem;
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.3s ease;
box-shadow: 0 3px 12px rgba(16, 185, 129, 0.35);
border: none;
}
.director-sidebar .director-cta:hover {
background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
transform: translateY(-2px);
box-shadow: 0 5px 18px rgba(16, 185, 129, 0.45);
}
.director-sidebar .director-cta::after {
content: "\2192";
font-size: 1rem;
transition: transform 0.3s ease;
}
.director-sidebar .director-cta:hover::after {
transform: translateX(4px);
}
.hero-slider {
position: relative;
width: 100%;
height: 100%;
border-radius: 20px;
overflow: hidden;
}
.slider-wrapper {
display: flex;
width: 100%;
height: 100%;
transition: transform 0.6s ease-in-out;
}
.slide {
min-width: 100%;
height: 100%;
position: relative;
display: flex;
align-items: center;
justify-content: center;
background-color: #ffffff;
}
.slide img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
background-color: #ffffff;
}
.slide-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
}
.slide-content {
text-align: center;
color: white;
max-width: 800px;
padding: 2rem;
z-index: 2;
}
.slide-title {
font-size: 3rem;
font-weight: bold;
margin-bottom: 1rem;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
animation: fadeInUp 0.8s ease-out;
}
.slide-subtitle {
font-size: 1.25rem;
margin-bottom: 2rem;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
animation: fadeInUp 0.8s ease-out 0.2s;
animation-fill-mode: both;
}
.slide-cta {
display: inline-block;
padding: 1rem 2.5rem;
background-color: var(--primary-green);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
animation: fadeInUp 0.8s ease-out 0.4s;
animation-fill-mode: both;
}
.slide-cta:hover {
background-color: var(--primary-dark-green);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .slider-nav {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 12px;
z-index: 10;
}
.slider-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid white;
}
.slider-dot.active {
background: white;
transform: scale(1.3);
}
.slider-dot:hover {
background: rgba(255, 255, 255, 0.8);
} .slider-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.3);
color: white;
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
font-size: 1.5rem;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(5px);
}
.slider-arrow:hover {
background: rgba(255, 255, 255, 0.5);
transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev {
left: 20px;
}
.slider-arrow.next {
right: 20px;
} .hero-content {
max-width: 800px;
margin: 0 auto;
}
.hero-title {
font-size: 3rem;
font-weight: bold;
color: var(--text-dark);
margin-bottom: 1rem;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-gray);
margin-bottom: 2rem;
}
.hero-cta {
display: inline-block;
padding: 1rem 2.5rem;
background-color: var(--primary-green);
color: var(--bg-white);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: var(--shadow);
}
.hero-cta:hover {
background-color: var(--primary-dark-green);
box-shadow: var(--shadow-lg);
transform: translateY(-2px);
}   @media (max-width: 968px) {
.hero-director-layout {
flex-direction: column;
}
.director-sidebar {
flex: 0 0 auto;
}
.director-sidebar-inner {
flex-direction: row;
flex-wrap: wrap;
padding: 1.5rem;
gap: 1.25rem;
justify-content: center;
}
.director-sidebar .director-image {
flex: 0 0 auto;
}
.director-sidebar .director-photo {
max-width: 180px;
}
.director-sidebar-stats {
flex-wrap: wrap;
}
.hero-section {
height: 450px;
}
}
@media (max-width: 480px) {
.hero-director-layout {
gap: 1rem;
}
.director-sidebar-inner {
padding: 1rem;
}
.director-sidebar .director-photo {
max-width: 140px;
}
.director-sidebar-stats {
flex-direction: column;
gap: 0.5rem;
}
.director-sidebar .director-info-card {
padding: 0.75rem 1rem;
}
} .news-section {
padding: 4rem 2rem;
background: rgba(255, 255, 255, 0.85);
position: relative;
z-index: 1;
}
.news-section .section-title {
text-align: center;
font-size: 2.25rem;
color: #1e3a5f;
margin-bottom: 3rem;
font-weight: 700;
}
.news-container {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1.2fr 0.6fr;
gap: 2rem;
align-items: start;
} .news-featured {
height: auto;
}
.news-featured-card {
display: flex;
flex-direction: column;
background: #1e9ab0;
border-radius: 16px;
overflow: hidden;
text-decoration: none;
height: auto;
max-height: 420px;
position: relative;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(30, 154, 176, 0.2);
}
.news-featured-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(30, 154, 176, 0.3);
}
.news-featured-image {
width: 100%;
height: 280px;
object-fit: cover;
flex-shrink: 0;
}
.news-featured-content {
padding: 1.25rem 1.5rem;
background: #1e9ab0;
color: white;
flex: 1;
}
.news-featured-title {
font-size: 1.1rem;
font-weight: 600;
line-height: 1.6;
margin-bottom: 1rem;
color: white;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
}
.news-featured-date {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.85);
display: block;
} .news-list {
display: flex;
flex-direction: column;
gap: 0;
}
.news-list-item {
display: block;
padding: 1.25rem 0;
border-bottom: 1px solid #e5e7eb;
text-decoration: none;
transition: all 0.3s ease;
}
.news-list-item:first-child {
padding-top: 0;
}
.news-list-item:last-child {
border-bottom: none;
}
.news-list-item:hover {
padding-left: 0.5rem;
}
.news-list-item:hover .news-list-title {
color: #1e9ab0;
}
.news-list-title {
font-size: 1rem;
font-weight: 500;
color: #1e3a5f;
line-height: 1.6;
margin-bottom: 0.5rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
transition: color 0.3s ease;
}
.news-list-date {
font-size: 0.85rem;
color: #6b7280;
} .news-sidebar {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.news-banner {
display: block;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.news-banner:hover {
transform: translateY(-3px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}
.news-banner img {
width: 100%;
height: auto;
display: block;
} @media (max-width: 1024px) {
.news-container {
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.news-sidebar {
grid-column: span 2;
flex-direction: row;
justify-content: center;
}
.news-banner {
max-width: 250px;
}
}
@media (max-width: 768px) {
.news-section {
padding: 3rem 1.5rem;
}
.news-container {
grid-template-columns: 1fr;
gap: 2rem;
}
.news-featured-card {
min-height: 350px;
}
.news-sidebar {
grid-column: span 1;
flex-direction: column;
align-items: center;
}
.news-banner {
max-width: 100%;
}
}
@media (max-width: 480px) {
.news-section .section-title {
font-size: 1.75rem;
}
.news-featured-card {
min-height: 300px;
}
.news-featured-title {
font-size: 1rem;
}
.news-list-title {
font-size: 0.95rem;
}
} .portfolio-section {
padding: 5rem 2rem;
background: rgba(240, 253, 244, 0.85);
position: relative;
z-index: 1;
}
.section-title {
text-align: center;
font-size: 2.5rem;
color: var(--text-dark);
margin-bottom: 1rem;
}
.dashboard-section .section-title {
color: white;
font-size: 1.5rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 3rem;
}
.section-subtitle {
text-align: center;
color: var(--text-gray);
margin-bottom: 3rem;
font-size: 1.1rem;
}
.portfolio-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.portfolio-item {
background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
border-radius: 12px;
overflow: hidden;
box-shadow:
0 4px 16px rgba(5, 150, 105, 0.08),
0 2px 6px rgba(5, 150, 105, 0.05);
transition: all 0.3s ease;
cursor: pointer;
border: 1px solid rgba(5, 150, 105, 0.1);
}
.portfolio-item:hover {
box-shadow:
0 8px 24px rgba(5, 150, 105, 0.15),
0 4px 8px rgba(5, 150, 105, 0.1);
transform: translateY(-5px);
}
.portfolio-image {
width: 100%;
height: 250px;
object-fit: cover;
transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-image {
transform: scale(1.05);
}
.portfolio-content {
padding: 1.5rem;
}
.portfolio-title {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.portfolio-description {
color: var(--text-gray);
margin-bottom: 1rem;
}
.portfolio-link {
color: var(--primary-green);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.portfolio-link:hover {
color: var(--primary-dark-green);
} .portfolio-date {
display: inline-block;
font-size: 0.85rem;
color: var(--text-gray);
margin-bottom: 0.5rem;
padding: 0.25rem 0.75rem;
background: var(--primary-light-green);
border-radius: 20px;
font-weight: 500;
} .portfolio-navigation {
max-width: 1200px !important;
margin: 3rem auto 0 !important;
padding: 0 1rem !important;
}
.pagination {
display: flex !important;
align-items: center !important;
justify-content: center !important;
gap: 0.75rem !important;
margin-bottom: 1.5rem !important;
flex-wrap: wrap !important;
padding: 1rem !important;
}
.page-link,
.page-number {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
padding: 0.65rem 1rem !important;
background-color: white;
color: var(--text-dark) !important;
text-decoration: none !important;
border: 2px solid #e5e7eb !important;
border-radius: 8px !important;
font-weight: 500 !important;
transition: all 0.3s ease !important;
min-width: 42px !important;
font-size: 0.95rem !important;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}
.page-link:hover,
.page-number:hover {
background-color: var(--primary-green) !important;
color: white !important;
border-color: var(--primary-green) !important;
transform: translateY(-2px) !important;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}
.page-number.current {
background: linear-gradient(
135deg,
var(--primary-green) 0%,
var(--primary-dark-green) 100%
) !important;
color: white !important;
border-color: var(--primary-green) !important;
cursor: default !important;
font-weight: 700 !important;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4) !important;
}
.page-numbers {
display: flex !important;
gap: 0.5rem !important;
flex-wrap: wrap !important;
justify-content: center !important;
align-items: center !important;
}
.prev-link,
.next-link {
padding: 0.65rem 1.25rem !important;
font-weight: 600 !important;
background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%) !important;
}
.prev-link:hover,
.next-link:hover {
background: linear-gradient(
135deg,
var(--primary-green) 0%,
var(--primary-dark-green) 100%
) !important;
}
.page-info {
text-align: center !important;
color: var(--text-gray) !important;
font-size: 0.9rem !important;
padding: 0.85rem 1.25rem !important;
background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%) !important;
border-radius: 8px !important;
margin-top: 0.5rem !important;
font-weight: 500 !important;
border: 1px solid #e5e7eb !important;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
} .portfolio-grid.loading {
position: relative !important;
min-height: 400px !important;
}
.portfolio-grid.loading::after {
content: "" !important;
position: absolute !important;
top: 50% !important;
left: 50% !important;
width: 50px !important;
height: 50px !important;
margin: -25px 0 0 -25px !important;
border: 4px solid #f3f4f6 !important;
border-top-color: var(--primary-green) !important;
border-radius: 50% !important;
animation: portfolioSpin 0.8s linear infinite !important;
z-index: 10 !important;
}
@keyframes portfolioSpin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} .portfolio-grid {
transition: opacity 0.3s ease !important;
}
.portfolio-navigation {
transition: opacity 0.3s ease !important;
} .image-modal {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.95);
animation: fadeIn 0.3s ease;
}
.image-modal.active {
display: flex;
align-items: center;
justify-content: center;
}
.image-modal-content {
position: relative;
max-width: 95%;
max-height: 95%;
animation: zoomIn 0.3s ease;
overflow: hidden;
}
.image-modal-content img {
width: 100%;
height: 100%;
max-height: 90vh;
object-fit: contain;
border-radius: 8px;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
transition: transform 0.15s ease-out;
cursor: zoom-in;
user-select: none;
-webkit-user-drag: none;
}
.image-modal-content img.zoomed {
cursor: grab;
}
.image-modal-content img.dragging {
cursor: grabbing;
transition: none;
}
.modal-close {
position: absolute;
top: -40px;
right: 0;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
background: rgba(255, 255, 255, 0.1);
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
border: 2px solid rgba(255, 255, 255, 0.3);
z-index: 10;
}
.modal-close:hover {
background: rgba(255, 255, 255, 0.2);
transform: rotate(90deg);
}
.modal-caption {
display: none;
}
.modal-info {
position: absolute;
bottom: -35px;
left: 0;
right: 0;
text-align: center;
color: rgba(255, 255, 255, 0.8);
font-size: 0.85rem;
padding: 0.5rem;
} .modal-zoom-hint {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.image-modal.active .modal-zoom-hint {
animation: fadeInOut 3s ease forwards;
}
@keyframes fadeInOut {
0% {
opacity: 0;
}
10% {
opacity: 1;
}
80% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes zoomIn {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
} .video-section {
padding: 5rem 2rem;
background: rgba(240, 253, 244, 0.85);
position: relative;
z-index: 1;
}
.video-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
.video-item {
background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
border-radius: 12px;
overflow: hidden;
box-shadow:
0 4px 16px rgba(5, 150, 105, 0.08),
0 2px 6px rgba(5, 150, 105, 0.05);
transition: all 0.3s ease;
border: 1px solid rgba(5, 150, 105, 0.1);
}
.video-item:hover {
box-shadow:
0 8px 24px rgba(5, 150, 105, 0.15),
0 4px 8px rgba(5, 150, 105, 0.1);
transform: translateY(-5px);
}
.video-wrapper {
position: relative;
padding-bottom: 56.25%; height: 0;
overflow: hidden;
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.video-content {
padding: 1.5rem;
}
.video-title {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.video-description {
color: var(--text-gray);
} .dashboard-section {
padding: 4rem 2rem !important;
margin: 0.5rem 0.5rem !important;
background: linear-gradient(
135deg,
#0d5345 0%,
#123d33 50%,
#1a4f3f 100%
) !important;
position: relative !important;
overflow: hidden !important;
border-radius: 10px !important;
transform: translateZ(0);
}
.dashboard-section .section-title {
color: white !important;
font-size: 1.5rem !important;
font-weight: 600 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
margin-bottom: 3rem !important;
}
.dashboard-section .section-subtitle {
display: none !important;
}
.dashboard-grid {
max-width: 1400px !important;
margin: 0 auto !important;
display: flex !important;
gap: 2rem !important;
overflow-x: auto !important;
padding: 1rem 0 2rem !important;
scroll-behavior: smooth !important;
-webkit-overflow-scrolling: touch !important;
}
.dashboard-grid::-webkit-scrollbar {
height: 8px !important;
}
.dashboard-grid::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1) !important;
border-radius: 10px !important;
}
.dashboard-grid::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.3) !important;
border-radius: 10px !important;
}
.dashboard-grid::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.5) !important;
}
.dashboard-card {
position: relative !important;
background: white !important;
border-radius: 20px !important;
padding: 3rem 2.5rem !important;
text-decoration: none !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
color: var(--text-dark) !important;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
overflow: hidden !important;
border: none !important;
min-width: 280px !important;
max-width: 280px !important;
min-height: 180px !important;
flex-shrink: 0 !important;
}
.dashboard-card::before {
display: none !important;
}
.dashboard-card:hover {
transform: translateY(-10px) scale(1.02) !important;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2) !important;
}
.dashboard-card:hover::before {
display: none !important;
}
.dashboard-icon {
font-size: 3.5rem !important;
margin-bottom: 1.5rem !important;
transition: transform 0.3s ease !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 100% !important;
height: 80px !important;
line-height: 1 !important;
}
.dashboard-icon img {
max-width: 100% !important;
max-height: 100% !important;
object-fit: contain !important;
}
.dashboard-card:hover .dashboard-icon {
transform: scale(1.05) !important;
}
.dashboard-title {
font-size: 1.1rem !important;
font-weight: 600 !important;
margin-bottom: 0.5rem !important;
color: var(--text-dark) !important;
transition: color 0.3s ease !important;
line-height: 1.4 !important;
text-align: center !important;
}
.dashboard-card:hover .dashboard-title {
color: var(--text-dark) !important;
}
.dashboard-description {
display: none !important;
}
.dashboard-arrow {
display: none !important;
}
.dashboard-card:hover .dashboard-arrow {
display: none !important;
} @media (max-width: 768px) {
.dashboard-section {
padding: 3rem 1rem !important;
}
.dashboard-section .section-title {
font-size: 1.1rem !important;
margin-bottom: 2rem !important;
}
.dashboard-grid {
gap: 1.5rem !important;
padding: 1rem 0.5rem 2rem !important;
}
.dashboard-card {
min-width: 240px !important;
max-width: 240px !important;
min-height: 160px !important;
padding: 2rem 1.5rem !important;
}
.dashboard-icon {
font-size: 3rem !important;
height: 70px !important;
}
.dashboard-title {
font-size: 1rem !important;
}
}
@media (max-width: 480px) {
.dashboard-section .section-title {
font-size: 0.95rem !important;
padding: 0 1rem !important;
}
.dashboard-card {
min-width: 200px !important;
max-width: 200px !important;
min-height: 140px !important;
padding: 1.5rem 1rem !important;
}
.dashboard-icon {
height: 60px !important;
}
.dashboard-title {
font-size: 0.9rem !important;
}
} .site-footer {
background-color: var(--text-dark);
color: var(--bg-white);
padding: 3rem 2rem 1rem;
transform: translateZ(0);
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3 {
color: var(--primary-green);
margin-bottom: 1rem;
font-size: 1.25rem;
}
.footer-section p,
.footer-section a {
color: #9ca3af;
text-decoration: none;
line-height: 2;
}
.footer-section a:hover {
color: var(--primary-green);
} .footer-map-section {
grid-column: span 1;
}
.footer-map-section h3 {
color: var(--primary-green);
margin-bottom: 1rem;
font-size: 1.25rem;
}
.map-wrapper-inline {
width: 100%;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
margin-top: 0.5rem;
}
.map-wrapper-inline iframe {
width: 100%;
display: block;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
display: inline-block;
width: 40px;
height: 40px;
background-color: var(--primary-green);
color: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.social-links a:hover {
background-color: var(--primary-dark-green);
transform: translateY(-3px);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #374151;
color: #9ca3af;
} .footer-map {
display: none;
}
.map-container {
max-width: 1200px;
margin: 0 auto;
}
.map-wrapper {
width: 100%;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.map-wrapper iframe {
width: 100%;
display: block;
} @media (max-width: 1200px) {
.footer-content {
grid-template-columns: repeat(2, 1fr);
}
.footer-map-section {
grid-column: span 2;
}
.navbar {
grid-template-columns: 1fr;
gap: 1rem;
}
.search-section {
order: 3;
grid-column: 1 / -1;
}
.logo-section {
justify-content: space-between;
}
.menu-toggle {
display: block;
}
.main-navigation {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: linear-gradient(
180deg,
var(--primary-green) 0%,
var(--primary-dark-green) 100%
);
flex-direction: column;
padding: 1rem 2rem;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
gap: 0.5rem;
}
.main-navigation a {
width: 100%;
text-align: left;
}
.main-navigation.active {
display: flex;
} .main-navigation .sub-menu {
position: static;
opacity: 1;
visibility: visible;
transform: none;
background: rgba(255, 255, 255, 0.1);
margin: 0.5rem 0 0 0;
padding: 0.5rem 0;
box-shadow: none;
border-radius: 6px;
max-height: 0;
overflow: hidden;
transition:
max-height 0.3s ease,
margin 0.3s ease;
}
.main-navigation .menu-item-has-children.active > .sub-menu {
max-height: 500px;
margin: 0.5rem 0;
}
.main-navigation .sub-menu a {
color: white;
padding-left: 2rem;
}
.main-navigation .sub-menu a:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateX(5px);
}
.main-navigation .sub-menu .sub-menu {
position: static;
margin-left: 0;
background: rgba(255, 255, 255, 0.05);
}
.main-navigation .sub-menu .sub-menu a {
padding-left: 3rem;
}
}
@media (max-width: 768px) {
.hero-section-wrapper {
padding: 1.5rem 1rem 0;
}
.hero-director-layout {
flex-direction: column;
}
.director-sidebar {
flex: 0 0 auto;
}
.hero-section {
height: 400px;
border-radius: 16px;
}
.hero-slider {
border-radius: 16px;
}
.slide {
background-color: #000;
}
.slide img {
object-fit: contain;
}
.slide-title {
font-size: 2rem;
}
.slide-subtitle {
font-size: 1rem;
}
.slider-arrow {
width: 40px;
height: 40px;
font-size: 1.2rem;
}
.slider-arrow.prev {
left: 10px;
}
.slider-arrow.next {
right: 10px;
}
.hero-title {
font-size: 2rem;
}
.hero-subtitle {
font-size: 1rem;
}
.section-title {
font-size: 2rem;
}
.portfolio-grid,
.video-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
}
.footer-map-section {
grid-column: span 1;
}
.site-title {
font-size: 1rem;
}
.site-description {
font-size: 0.7rem;
}
.site-logo-image {
width: 32px;
height: 32px;
font-size: 1rem;
}
}
@media (max-width: 480px) {
.hero-section-wrapper {
padding: 1rem 0.5rem 0;
}
.hero-section {
height: 300px;
border-radius: 12px;
}
.hero-slider {
border-radius: 12px;
}
.slide {
background-color: #000;
}
.slide img {
object-fit: contain;
}
.slide-title {
font-size: 1.5rem;
}
.slide-subtitle {
font-size: 0.85rem;
}
.slide-cta {
padding: 0.75rem 1.5rem;
font-size: 0.9rem;
}
.hero-title {
font-size: 1.75rem;
}
.navbar {
padding: 1rem;
}
.portfolio-section,
.video-section {
padding: 3rem 1rem;
}
.search-form {
flex-direction: column;
}
.search-button {
padding: 0.6rem;
}
} .section-navigation {
position: fixed;
right: 2rem;
top: 50%;
transform: translateY(-50%);
z-index: 999;
display: flex;
flex-direction: column;
gap: 1rem;
background: rgba(255, 255, 255, 0.95);
padding: 1.5rem 0.75rem;
border-radius: 50px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 0, 0, 0.08);
}
.section-nav-item {
position: relative;
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(16, 185, 129, 0.3);
border: 2px solid var(--primary-green);
cursor: pointer;
transition: all 0.3s ease;
}
.section-nav-item:hover {
background: var(--primary-green);
transform: scale(1.3);
}
.section-nav-item.active {
background: var(--primary-green);
transform: scale(1.4);
box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}  .staff-hero {
background: linear-gradient(135deg, #0a3d2b 0%, #0d5c3f 45%, #116a47 100%);
padding: 4rem 2rem 3rem;
text-align: center;
position: relative;
overflow: hidden;
}
.staff-hero::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(
ellipse 60% 80% at 20% 50%,
rgba(16, 185, 129, 0.15) 0%,
transparent 70%
),
radial-gradient(
ellipse 50% 60% at 80% 30%,
rgba(5, 150, 105, 0.12) 0%,
transparent 70%
);
pointer-events: none;
}
.staff-hero-inner {
position: relative;
z-index: 1;
max-width: 600px;
margin: 0 auto;
}
.staff-hero-icon {
font-size: 3rem;
margin-bottom: 0.75rem;
filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
}
.staff-hero-title {
font-size: clamp(1.8rem, 4vw, 2.8rem);
font-weight: 800;
color: #ffffff;
margin: 0 0 0.5rem;
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
letter-spacing: 0.02em;
}
.staff-hero-subtitle {
font-size: 1.05rem;
color: rgba(209, 250, 229, 0.9);
margin: 0 0 1.5rem;
}
.staff-hero-divider {
width: 60px;
height: 4px;
background: linear-gradient(90deg, #10b981, #34d399);
border-radius: 99px;
margin: 0 auto;
} .staff-board-section {
background: var(--bg-light);
padding: 3rem 0 4rem;
min-height: 50vh;
}
.staff-board-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
} .staff-department-group {
margin-bottom: 3.5rem;
}
.staff-dept-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.75rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid var(--border-color);
}
.staff-dept-icon {
font-size: 1.25rem;
}
.staff-dept-title {
font-size: 1.3rem;
font-weight: 700;
color: var(--primary-dark-green);
margin: 0;
flex: 1;
}
.staff-dept-count {
font-size: 0.8rem;
font-weight: 600;
color: var(--primary-green);
background: var(--primary-light-green);
padding: 0.2rem 0.75rem;
border-radius: 99px;
} .staff-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(210px, 240px));
gap: 1.5rem;
justify-content: center;
} .staff-card {
opacity: 0;
animation: staffCardIn 0.5s ease forwards;
}
@keyframes staffCardIn {
from {
opacity: 0;
transform: translateY(24px) scale(0.96);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
.staff-card-inner {
background: #ffffff;
border-radius: 16px;
padding: 1.75rem 1rem 1.5rem;
text-align: center;
border: 1px solid var(--border-color);
box-shadow: 0 2px 12px rgba(5, 150, 105, 0.07);
transition:
transform 0.3s ease,
box-shadow 0.3s ease,
border-color 0.3s ease;
position: relative;
overflow: hidden;
}
.staff-card-inner::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary-green), #34d399);
opacity: 0;
transition: opacity 0.3s ease;
}
.staff-card-inner:hover {
transform: translateY(-6px);
box-shadow: 0 16px 32px rgba(5, 150, 105, 0.15);
border-color: rgba(5, 150, 105, 0.3);
}
.staff-card-inner:hover::before {
opacity: 1;
} .staff-photo-wrap {
position: relative;
width: 120px;
height: 150px;
margin: 0 auto 1rem;
flex-shrink: 0;
} .staff-photo {
width: 120px;
height: 150px;
border-radius: 16px;
object-fit: cover;
object-position: top center;
display: block;
position: absolute;
top: 0;
left: 0;
z-index: 2;
opacity: 0;
transition:
opacity 0.35s ease,
transform 0.3s ease;
}
.staff-card-inner:hover .staff-photo {
transform: scale(1.06);
z-index: 2;
} .staff-photo-placeholder {
width: 120px;
height: 150px;
border-radius: 16px;
background: linear-gradient(135deg, var(--primary-green), #34d399);
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
font-weight: 700;
color: #fff;
position: absolute;
top: 0;
left: 0;
z-index: 1;
text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.staff-card-inner:hover .staff-photo-placeholder {
transform: scale(1.06);
} .staff-photo-ring {
position: absolute;
inset: 0;
border-radius: 16px;
box-shadow: 0 0 0 0px rgba(5, 150, 105, 0);
opacity: 0;
transition:
box-shadow 0.3s ease,
opacity 0.3s ease;
z-index: 0;
pointer-events: none;
}
.staff-card-inner:hover .staff-photo-ring {
opacity: 1;
box-shadow:
0 0 0 3px #10b981,
0 0 0 5px rgba(16, 185, 129, 0.2);
} .staff-info {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.4rem;
}
.staff-name {
font-size: 0.95rem;
font-weight: 700;
color: var(--text-dark);
margin: 0;
line-height: 1.4;
}
.staff-position {
display: inline-block;
font-size: 0.75rem;
font-weight: 500;
color: var(--primary-dark-green);
background: var(--primary-soft-green);
border: 1px solid var(--primary-light-green);
border-radius: 99px;
padding: 0.2rem 0.65rem;
line-height: 1.5;
white-space: nowrap;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
} .staff-empty {
text-align: center;
padding: 5rem 2rem;
background: #fff;
border-radius: 16px;
border: 2px dashed var(--border-color);
}
.staff-empty-icon {
font-size: 4rem;
margin-bottom: 1rem;
opacity: 0.5;
}
.staff-empty h2 {
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.staff-empty p {
color: var(--text-gray);
margin-bottom: 1.5rem;
}
.staff-add-btn {
display: inline-block;
background: var(--primary-green);
color: #fff;
font-weight: 600;
padding: 0.65rem 1.75rem;
border-radius: 8px;
text-decoration: none;
transition:
background 0.2s ease,
transform 0.2s ease;
}
.staff-add-btn:hover {
background: var(--primary-dark-green);
transform: translateY(-2px);
} @media (max-width: 768px) {
.staff-hero {
padding: 3rem 1.5rem 2.5rem;
}
.staff-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 170px));
gap: 1rem;
justify-content: center;
}
.staff-photo-wrap {
width: 96px;
height: 120px;
}
.staff-photo,
.staff-photo-placeholder {
width: 96px;
height: 120px;
}
.staff-photo-placeholder {
font-size: 2.2rem;
}
}
@media (max-width: 480px) {
.staff-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.section-nav-item .nav-tooltip {
position: absolute;
right: calc(100% + 15px);
top: 50%;
transform: translateY(-50%);
background: var(--primary-dark-green);
color: white;
padding: 0.5rem 1rem;
border-radius: 8px;
font-size: 0.85rem;
font-weight: 500;
white-space: nowrap;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
pointer-events: none;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.section-nav-item .nav-tooltip::after {
content: "";
position: absolute;
left: 100%;
top: 50%;
transform: translateY(-50%);
border: 6px solid transparent;
border-left-color: var(--primary-dark-green);
}
.section-nav-item:hover .nav-tooltip {
opacity: 1;
visibility: visible;
right: calc(100% + 18px);
} @media (max-width: 968px) {
.section-navigation {
display: none;
}
}  @media (min-width: 1920px) {
.slide img {
width: auto;
height: 100%;
max-width: 100%;
object-fit: contain;
object-position: center center;
}
} @media (min-width: 2560px) {
.slide img {
width: auto;
height: 100%;
max-width: 100%;
object-fit: contain;
object-position: center center;
}
}  .org-hero {
background: linear-gradient(
135deg,
#0c4a6e 0%,
#075985 30%,
#0369a1 60%,
#0ea5e9 100%
);
padding: 3.5rem 1.5rem 3rem;
text-align: center;
position: relative;
overflow: hidden;
}
.org-hero::before {
content: "";
position: absolute;
inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
pointer-events: none;
}
.org-hero-inner {
max-width: 700px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.org-hero-icon {
font-size: 3rem;
margin-bottom: 0.75rem;
filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}
.org-hero-title {
font-size: 1.9rem;
font-weight: 800;
color: #fff;
margin-bottom: 0.5rem;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.org-hero-subtitle {
font-size: 1.05rem;
color: rgba(255, 255, 255, 0.9);
font-weight: 400;
}
.org-hero-divider {
width: 60px;
height: 4px;
background: #fbbf24;
border-radius: 4px;
margin: 1.2rem auto 0;
} .org-chart-section {
padding: 2.5rem 1rem 3rem;
background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
}
.org-chart-container {
max-width: 1280px;
margin: 0 auto;
} .org-card {
background: #fff;
border-radius: 14px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
padding: 1.5rem 2rem;
text-align: center;
transition:
transform 0.25s,
box-shadow 0.25s;
}
.org-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
} .org-level-top {
display: flex;
justify-content: center;
margin-bottom: 0;
}
.org-card-head {
background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%);
color: #fff;
max-width: 420px;
width: 100%;
border: 3px solid #3b82f6;
position: relative;
}
.org-card-head .org-card-icon {
font-size: 2rem;
margin-bottom: 0.4rem;
} .org-card-photo {
width: 110px;
aspect-ratio: 330 / 413;
border-radius: 14px;
object-fit: contain;
border: 3px solid rgba(255, 255, 255, 0.6);
margin: 0.5rem auto 0.75rem;
display: block;
background: rgba(255, 255, 255, 0.12);
}
.org-card-head .org-card-title {
font-size: 1.15rem;
font-weight: 700;
margin-bottom: 0.6rem;
}
.org-card-head .org-card-name {
font-size: 1.3rem;
font-weight: 800;
margin-bottom: 0.25rem;
}
.org-card-head .org-card-role {
font-size: 0.88rem;
opacity: 0.9;
display: block;
} .org-connector {
margin: 0 auto;
}
.org-connector-v {
width: 3px;
height: 28px;
background: #94a3b8;
margin: 0 auto;
}
.org-connector-h {
width: 46%;
max-width: 560px;
height: 3px;
background: #94a3b8;
margin: 0 auto;
position: relative;
}
.org-connector-h::before,
.org-connector-h::after {
content: "";
position: absolute;
top: 0;
width: 3px;
height: 28px;
background: #94a3b8;
}
.org-connector-h::before {
left: 0;
}
.org-connector-h::after {
right: 0;
}
.org-connector-h-full {
width: 76%;
max-width: 1000px;
height: 3px;
background: #94a3b8;
margin: 0 auto;
position: relative;
}
.org-connector-h-full::before,
.org-connector-h-full::after {
content: "";
position: absolute;
top: 0;
width: 3px;
height: 28px;
background: #94a3b8;
}
.org-connector-h-full::before {
left: 12.5%;
}
.org-connector-h-full::after {
right: 12.5%;
} .org-level-deputy {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
max-width: 820px;
margin: 0 auto;
padding-top: 24px;
}
.org-card-deputy {
border-top: 4px solid;
position: relative;
}
.org-card-deputy-admin {
border-color: #f59e0b;
}
.org-card-deputy-academic {
border-color: #3b82f6;
}
.org-card-badge {
display: inline-block;
background: linear-gradient(135deg, #1e40af, #3b82f6);
color: #fff;
padding: 0.3rem 1rem;
border-radius: 20px;
font-size: 0.78rem;
font-weight: 600;
margin-bottom: 0.8rem;
letter-spacing: 0.02em;
}
.org-card-deputy-admin .org-card-badge {
background: linear-gradient(135deg, #d97706, #f59e0b);
}
.org-card-deputy .org-card-name {
font-size: 1.1rem;
font-weight: 700;
color: #1e293b;
margin-bottom: 0.25rem;
}
.org-card-deputy .org-card-role {
display: block;
font-size: 0.82rem;
color: #475569;
}
.org-card-deputy .org-card-sub-role {
display: block;
font-size: 0.78rem;
color: #64748b;
margin-top: 0.15rem;
font-style: italic;
} .org-level-groups {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.2rem;
padding-top: 24px;
margin-bottom: 3rem;
}
.org-group-card {
background: #fff;
border-radius: 14px;
box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
overflow: hidden;
transition:
transform 0.25s,
box-shadow 0.25s;
}
.org-group-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
} .org-group-header {
padding: 0.9rem 1rem;
display: flex;
align-items: center;
gap: 0.6rem;
}
.org-group-header-yellow {
background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.org-group-header-orange {
background: linear-gradient(135deg, #fb923c, #f97316);
}
.org-group-header-blue {
background: linear-gradient(135deg, #60a5fa, #3b82f6);
}
.org-group-header-green {
background: linear-gradient(135deg, #34d399, #10b981);
}
.org-group-num {
width: 28px;
height: 28px;
background: rgba(255, 255, 255, 0.35);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 0.85rem;
color: #fff;
flex-shrink: 0;
}
.org-group-header h3 {
font-size: 0.82rem;
font-weight: 700;
color: #fff;
line-height: 1.35;
margin: 0;
} .org-group-members {
padding: 1rem;
}
.org-member {
display: flex;
align-items: flex-start;
gap: 0.6rem;
padding: 0.5rem 0;
border-bottom: 1px solid #f1f5f9;
}
.org-member:last-child {
border-bottom: none;
}
.org-member-bullet {
width: 8px;
height: 8px;
border-radius: 50%;
background: #3b82f6;
margin-top: 6px;
flex-shrink: 0;
} .org-member-photo {
width: 52px;
aspect-ratio: 330 / 413;
border-radius: 8px;
object-fit: contain;
border: 2px solid #e2e8f0;
flex-shrink: 0;
background: #f8fafc;
}
#group1 .org-member-photo {
border-color: #f59e0b;
}
#group2 .org-member-photo {
border-color: #f97316;
}
#group3 .org-member-photo {
border-color: #3b82f6;
}
#group4 .org-member-photo {
border-color: #10b981;
}
.org-member strong {
display: block;
font-size: 0.82rem;
font-weight: 600;
color: #1e293b;
}
.org-member span {
font-size: 0.72rem;
color: #64748b;
line-height: 1.3;
} #group1 .org-member-bullet {
background: #f59e0b;
}
#group2 .org-member-bullet {
background: #f97316;
}
#group3 .org-member-bullet {
background: #3b82f6;
}
#group4 .org-member-bullet {
background: #10b981;
} .org-tasks-section {
margin-top: 1rem;
}
.org-tasks-heading {
text-align: center;
font-size: 1.4rem;
font-weight: 800;
color: #1e293b;
margin-bottom: 2rem;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.org-tasks-heading-icon {
font-size: 1.5rem;
}
.org-tasks-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.2rem;
}
.org-task-card {
background: #fff;
border-radius: 14px;
box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
overflow: hidden;
transition:
transform 0.25s,
box-shadow 0.25s;
}
.org-task-card:hover {
transform: translateY(-2px);
box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
}
.org-task-header {
padding: 0.8rem 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.org-task-yellow .org-task-header {
background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.org-task-orange .org-task-header {
background: linear-gradient(135deg, #fb923c, #f97316);
}
.org-task-blue .org-task-header {
background: linear-gradient(135deg, #60a5fa, #3b82f6);
}
.org-task-green .org-task-header {
background: linear-gradient(135deg, #34d399, #10b981);
}
.org-task-num {
width: 26px;
height: 26px;
background: rgba(255, 255, 255, 0.35);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 0.8rem;
color: #fff;
flex-shrink: 0;
}
.org-task-header h3 {
font-size: 0.78rem;
font-weight: 700;
color: #fff;
line-height: 1.35;
margin: 0;
}
.org-task-list {
padding: 1rem 1rem 1.2rem 2rem;
margin: 0;
list-style: none;
counter-reset: task-counter;
}
.org-task-list li {
counter-increment: task-counter;
font-size: 0.78rem;
color: #334155;
line-height: 1.5;
padding: 0.35rem 0;
border-bottom: 1px dashed #e2e8f0;
position: relative;
padding-left: 1.6rem;
}
.org-task-list li:last-child {
border-bottom: none;
}
.org-task-list li::before {
content: counter(task-counter) ".";
position: absolute;
left: 0;
font-weight: 700;
color: #64748b;
font-size: 0.75rem;
}
.org-task-yellow .org-task-list li::before {
color: #d97706;
}
.org-task-orange .org-task-list li::before {
color: #ea580c;
}
.org-task-blue .org-task-list li::before {
color: #2563eb;
}
.org-task-green .org-task-list li::before {
color: #059669;
} .org-notes {
margin-top: 2.5rem;
padding: 0 0.5rem;
}
.org-notes-inner {
background: #fffbeb;
border: 1px solid #fde68a;
border-left: 4px solid #f59e0b;
border-radius: 10px;
padding: 1.2rem 1.5rem;
}
.org-notes h4 {
font-size: 0.95rem;
font-weight: 700;
color: #92400e;
margin-bottom: 0.6rem;
display: flex;
align-items: center;
gap: 0.4rem;
}
.org-notes ul {
list-style: none;
padding: 0;
margin: 0;
}
.org-notes ul li {
font-size: 0.82rem;
color: #78350f;
line-height: 1.7;
}
.org-notes ul li strong {
color: #b45309;
} .org-print-area {
text-align: center;
margin-top: 2rem;
padding-bottom: 1rem;
}
.org-print-btn {
background: linear-gradient(135deg, #0369a1, #0ea5e9);
color: #fff;
border: none;
padding: 0.75rem 2rem;
font-size: 0.95rem;
font-weight: 600;
border-radius: 30px;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
font-family: inherit;
}
.org-print-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
} @media (max-width: 1024px) {
.org-level-groups,
.org-tasks-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.org-hero-title {
font-size: 1.4rem;
}
.org-level-deputy {
grid-template-columns: 1fr;
max-width: 400px;
}
.org-level-groups,
.org-tasks-grid {
grid-template-columns: 1fr;
}
.org-connector-h,
.org-connector-h-full {
display: none;
}
}
@media (max-width: 480px) {
.org-hero {
padding: 2rem 1rem;
}
.org-hero-title {
font-size: 1.2rem;
}
.org-card-head {
padding: 1rem;
}
.org-card-head .org-card-name {
font-size: 1.05rem;
}
} @media print {
.site-header,
.site-footer,
.org-hero,
.org-print-area,
.animated-bg,
.section-navigation {
display: none !important;
}
.org-chart-section {
padding: 0;
background: #fff;
}
.org-card,
.org-group-card,
.org-task-card {
box-shadow: none;
border: 1px solid #ccc;
break-inside: avoid;
}
.org-level-groups,
.org-tasks-grid {
grid-template-columns: repeat(2, 1fr);
}
body {
background: #fff !important;
}
}