:root {
    --primary: #669966;
    --primary-hover: #4f7f4f;
    --secondary: #cc9966;
    --secondary-hover: #b07f4f;
    --accent: #3f5d7d;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #fff;
    --footer-bg: #f8f8f8;
    --border-color: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Varela Round", sans-serif;
}

.title-highlight {
    color: #d4af37;
}

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

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

.abt-hero-header {
    /* background: var(--primary); */
    background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../images/abt-hero.jpg) !important;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    width: 100%;
    overflow: hidden;
    margin-top: 72px;
}

.abt-hero-header-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.abt-hero-title {
    font-family: "Varela Round", sans-serif;
    font-size: 4rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.1;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.abt-hero-title.abt-hero-animate {
    opacity: 1;
    transform: translateY(0);
}

.abt-hero-content-section {
    background: var(--bg-light);
    padding: 80px 20px;
    width: 100%;
    overflow: hidden;
}

.abt-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.abt-hero-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: start;
}

.abt-hero-story {
    padding-top: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
    max-width: 100%;
}

.abt-hero-story.abt-hero-animate {
    opacity: 1;
    transform: translateX(0);
}

.abt-hero-story-title {
    font-family: "Varela Round", sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.abt-hero-story-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.abt-hero-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
    max-width: 100%;
    width: 100%;
}

.abt-hero-image.abt-hero-animate {
    opacity: 1;
    transform: translateX(0);
}

.abt-hero-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.abt-hero-img-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.abt-hero-img-wrapper:hover img {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .abt-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .abt-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .abt-hero-header {
        padding: 60px 20px;
        margin-top: 64px;
    }

    .abt-hero-content-section {
        padding: 60px 20px;
    }

    .abt-hero-title {
        font-size: 3rem;
    }

    .abt-hero-story-title {
        font-size: 1.3rem;
    }

    .abt-hero-story-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .abt-hero-header {
        padding: 50px 16px;
    }

    .abt-hero-content-section {
        padding: 50px 16px;
    }

    .abt-hero-title {
        font-size: 2.5rem;
    }

    .abt-hero-story-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .abt-hero-story-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }
}

.who-section {
    padding: 80px 20px;
    background: var(--bg-light);
    width: 100%;
    overflow: hidden;
}

.who-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    background: rgba(102, 153, 102, 0.2);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.who-title {
    font-family: "Varela Round", sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 400;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.who-title.who-animate {
    opacity: 1;
    transform: translateX(0);
}

.who-cards {
    margin-left: auto;
    display: grid;
    grid-template-columns: repeat(2, 320px);
    gap: 30px;
}

.who-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.who-card.who-animate {
    opacity: 1;
    transform: translateY(0);
}

.who-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.who-card:nth-child(1) {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.who-card:nth-child(2) {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.who-card:nth-child(3) {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.who-card:nth-child(4) {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.who-card:hover {
    filter: brightness(1.05);
}

.who-card-title {
    font-family: "Varela Round", sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
}

.who-card-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.who-decoration {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 180px;
    height: auto;
    opacity: 0;
    transition: opacity 0.8s ease 0.8s;
}

.who-decoration.who-animate {
    opacity: 1;
}

.who-decoration img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .who-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
    }

    .who-title {
        font-size: 1.8rem;
    }

    .who-decoration {
        width: 150px;
        bottom: 30px;
        left: 30px;
    }
}

@media (max-width: 900px) {
    .who-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .who-section {
        padding: 60px 20px;
    }

    .who-container {
        padding: 50px 30px;
        border-radius: 20px;
        gap: 30px;
    }

    .who-title {
        font-size: 1.6rem;
    }

    .who-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .who-card {
        padding: 30px;
    }

    .who-decoration {
        width: 120px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .who-section {
        padding: 50px 16px;
    }

    .who-container {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .who-title {
        font-size: 1.4rem;
    }

    .who-card {
        padding: 25px 20px;
    }

    .who-card-title {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .who-decoration {
        width: 100px;
        bottom: 15px;
        left: 15px;
    }
}

.who-card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.who-card-link:hover {
    opacity: 1;
    gap: 12px;
}

.who-card-link i {
    vertical-align: middle;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.who-card-link:hover i {
    transform: translateX(3px);
}

.msn-section {
    width: 100%;
    background: var(--bg-light);
    padding: 80px 0;
}

.msn-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.msn-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.msn-image.msn-visible {
    opacity: 1;
    transform: translateX(0);
}

.msn-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.msn-content {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    padding-right: 20px;
    max-width: 600px;
}

.msn-content.msn-visible {
    opacity: 1;
    transform: translateX(0);
}

.msn-heading {
    font-family: "Varela Round", sans-serif;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.msn-intro {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.msn-mission-text {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.7;
}

.msn-values {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.msn-value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.msn-value-item.msn-visible {
    opacity: 1;
    transform: translateY(0);
}

.msn-value-item:nth-child(1) {
    transition-delay: 0.4s;
}

.msn-value-item:nth-child(2) {
    transition-delay: 0.6s;
}

.msn-icon-wrapper {
    min-width: 44px;
    width: 44px;
    height: 44px;
    background: var(--footer-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.msn-icon-wrapper i {
    font-size: 18px;
    color: var(--primary);
}

.msn-value-content h3 {
    font-family: "Varela Round", sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 400;
}

.msn-value-content p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .msn-section {
        padding: 60px 0;
    }

    .msn-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .msn-content {
        margin: 0 auto;
        padding-right: 0;
        text-align: center;
    }

    .msn-value-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .msn-image {
        max-height: 350px;
    }

    .msn-heading {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .msn-section {
        padding: 50px 0;
    }

    .msn-container {
        padding: 0 16px;
        gap: 32px;
    }

    .msn-image {
        max-height: 300px;
    }

    .msn-heading {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .msn-intro,
    .msn-mission-text {
        font-size: 14px;
    }

    .msn-values {
        gap: 24px;
    }

    .msn-value-item {
        gap: 14px;
    }

    .msn-icon-wrapper {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .msn-icon-wrapper i {
        font-size: 16px;
    }

    .msn-value-content h3 {
        font-size: 15px;
    }

    .msn-value-content p {
        font-size: 13px;
    }
}

.tm-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
    overflow: hidden;
}

.tm-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    opacity: 0.05;
    z-index: 3;
    pointer-events: none;
}

.tm-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tm-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.tm-header {
    margin-bottom: 60px;
}

.tm-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.tm-title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 40px;
}

.tm-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.tm-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.tm-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tm-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tm-card-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--footer-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.tm-card:hover .tm-card-image {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tm-card:hover .tm-card-image img {
    transform: scale(1.05);
}

.tm-card-content {
    text-align: center;
}

.tm-card-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.tm-card-role {
    font-size: 13px;
    color: var(--primary);
    line-height: 1.4;
}

.tm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.tm-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tm-modal-content {
    background: var(--bg-light);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.tm-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: var(--footer-bg);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.tm-modal-close:hover {
    background: var(--primary);
    color: var(--text-light);
}

.tm-modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.tm-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tm-modal-body {
    padding: 30px;
}

.tm-modal-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tm-modal-role {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 20px;
}

.tm-modal-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 1200px) {
    .tm-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .tm-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tm-section {
        padding: 60px 15px;
    }

    .tm-header {
        text-align: center;
    }

    .tm-title-underline {
        margin: 0 auto 40px auto;
    }

    .tm-title {
        font-size: 28px;
    }

    .tm-subtitle {
        font-size: 18px;
    }

    .tm-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tm-bg-image {
        width: 200px;
        height: 200px;
    }

    .tm-modal-image {
        height: 250px;
    }

    .tm-modal-body {
        padding: 25px;
    }

    .tm-modal-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tm-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tm-title {
        font-size: 24px;
    }

    .tm-subtitle {
        font-size: 16px;
    }

    .tm-modal-body {
        padding: 20px;
    }
}

.tm-cta {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    text-align: center;
}

.tm-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.tm-cta-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
}

.tm-cta-text {
    font-size: 15px;
    color: var(--text-light);
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tm-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--secondary);
    color: var(--bg-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tm-cta-button:hover {
    transform: translateY(-2px);
    background: var(--secondary-hover);
}

.tm-cta-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.tm-cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .tm-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .tm-cta-title {
        font-size: 20px;
    }

    .tm-cta-text {
        font-size: 14px;
    }

    .tm-cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}
.vls-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--footer-bg);
}

.vls-container {
    max-width: 1400px;
    margin: 0 auto;
}

.vls-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    margin-bottom: 80px;
}

.vls-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    margin-bottom: 60px;
}

.vls-card {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.vls-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.vls-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.vls-card:hover .vls-icon-wrapper {
    transform: scale(1.05);
}

.vls-icon-wrapper.blue {
    background: #e3f2fd;
}

.vls-icon-wrapper.purple {
    background: #f3e5f5;
}

.vls-icon-wrapper.green {
    background: #e8f5e9;
}

.vls-icon-wrapper.orange {
    background: #fff3e0;
}

.vls-icon-wrapper.pink {
    background: #fce4ec;
}

.vls-icon-wrapper.gray {
    background: #f5f5f5;
}

.vls-icon-wrapper.lightblue {
    background: #e1f5fe;
}

.vls-icon {
    font-size: 40px;
}

.vls-icon.blue {
    color: #42a5f5;
}

.vls-icon.purple {
    color: #ab47bc;
}

.vls-icon.green {
    color: #66bb6a;
}

.vls-icon.orange {
    color: #ffa726;
}

.vls-icon.pink {
    color: #ec407a;
}

.vls-icon.gray {
    color: #78909c;
}

.vls-icon.lightblue {
    color: #29b6f6;
}

.vls-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.vls-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
}

@media (max-width: 1200px) {
    .vls-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 900px) {
    .vls-section {
        padding: 60px 20px;
    }

    .vls-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .vls-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .vls-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .vls-icon {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .vls-section {
        padding: 50px 15px;
    }

    .vls-title {
        font-size: 28px;
        margin-bottom: 50px;
        text-align: center;
    }

    .vls-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .vls-card {
        align-items: center;
        text-align: center;
    }

    .vls-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .vls-icon {
        font-size: 32px;
    }

    .vls-card-title {
        font-size: 17px;
    }

    .vls-card-desc {
        font-size: 13px;
    }
}

