/* =================================================================== */
/*                      1. ROOT & GLOBAL STYLES                        */
/* =================================================================== */
:root {
    --color-primary: #FF6600;
    --color-secondary: #FFA500;
    --color-text: #FFFFFF;
    --color-text-dark: #B0B0B0;
    --color-bg-dark: #1A1A1A;
    --color-bg-light: #2C2C2C;
    
    --font-family: 'Poppins', sans-serif;
    --transition-speed: 0.3s;
    --transition-fast: 0.2s;
    --container-width: 1200px;
    --container-padding: 5%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

#constellation-canvas {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; z-index: -1; opacity: 0.6;
}

.container {
    max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding);
}

.animate-fade-in { opacity: 0; animation: fadeIn 1s ease-out forwards; }
@keyframes fadeIn { to { opacity: 1; } }

/* =================================================================== */
/*                      2. UTILITY & REUSABLE CLASSES                  */
/* =================================================================== */
.glass-effect {
    background: rgba(44, 44, 44, 0.7); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn {
    display: inline-block; padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600; text-decoration: none;
    transition: all var(--transition-speed) ease; border: none; cursor: pointer;
}
.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: #FFFFFF;
}
.btn-primary:hover {
    transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}
.btn-primary i { margin-left: 0.5rem; transition: transform var(--transition-speed) ease; }
.btn-primary:hover i { transform: translateX(5px); }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-bg-light);
    color: var(--color-text);
}
.btn-secondary:hover {
    background: var(--color-bg-light);
    border-color: var(--color-bg-light);
    transform: translateY(-3px);
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
    display: inline-block; padding: 0.4rem 1rem; font-weight: 600;
    margin-bottom: 1rem; border-radius: 20px;
    background: rgba(255, 102, 0, 0.1); color: var(--color-primary);
}
.section-title { font-size: 2.8rem; font-weight: 700; margin-bottom: 1rem; }
.section-subtitle {
    font-size: 1.1rem; color: var(--color-text-dark); max-width: 600px; margin: 0 auto;
}


/* =================================================================== */
/*                      3. HEADER & NAVIGATION                         */
/* =================================================================== */
.header {
    position: fixed; top: 1.5rem; left: 0; width: 100%;
    z-index: 100; padding: 0 var(--container-padding);
}
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.6rem 1.5rem; border-radius: 50px;
}
.logo {
    display: flex; align-items: center; text-decoration: none;
    color: #FFFFFF; font-size: 1.4rem; font-weight: 700;
}

.logo-globe-container {
    width: 38px; height: 38px; margin-right: 12px;
    position: relative; display: grid; place-items: center;
    perspective: 800px;
}
.logo-globe {
    width: 100%; height: 100%; position: absolute;
    transform-style: preserve-3d; animation: rotate-globe 20s linear infinite;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255,165,0,0.2), transparent),
        radial-gradient(circle at 70% 70%, rgba(255,102,0,0.3), transparent);
    border-radius: 50%; border: 1px solid rgba(255,165,0,0.2);
}
@keyframes rotate-globe { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }

.logo-globe::before, .logo-globe::after {
    content: ''; position: absolute; width: 100%; height: 100%;
    border-radius: 50%; border: 1px solid rgba(255, 165, 0, 0.4);
}
.logo-globe::before { transform: rotateX(90deg); }
.logo-globe::after { transform: rotateY(90deg); }

.logo-globe-orbit {
    position: absolute; width: 140%; height: 140%; top: -20%; left: -20%;
    border-radius: 50%; transform-style: preserve-3d;
    animation: rotate-orbit 10s linear infinite;
}
@keyframes rotate-orbit { from { transform: rotateZ(0deg) rotateY(60deg); } to { transform: rotateZ(360deg) rotateY(60deg); } }

.logo-globe-e {
    width: 12px; height: 12px; background: var(--color-primary);
    color: #FFFFFF; border-radius: 50%; position: absolute;
    top: -6px; left: 50%; transform: translateX(-50%); font-size: 8px;
    font-weight: bold; display: grid; place-items: center;
    box-shadow: 0 0 10px var(--color-primary);
}

.nav-menu { 
    display: flex; list-style: none; position: relative;
    padding: 0.4rem; background: rgba(26, 26, 26, 0.5); border-radius: 50px;
}
.nav-menu::before {
    content: ''; position: absolute; top: var(--pill-top, 0.4rem);
    left: var(--pill-left, 0); width: var(--pill-width, 0);
    height: calc(100% - 0.8rem);
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 50px; z-index: 0;
    transition: left var(--transition-speed) ease, width var(--transition-speed) ease;
}
.nav-item { margin: 0; }
.nav-link {
    color: var(--color-text); text-decoration: none; font-weight: 500;
    padding: 0.4rem 1.2rem; font-size: 0.9rem; border-radius: 50px;
    position: relative; z-index: 1; transition: color var(--transition-fast) ease;
}
.nav-link.active, .nav-link.is-active { color: #FFFFFF; font-weight: 600; } 

.nav-contact-btn { display: block; }
.hamburger { display: none; cursor: pointer; }
.hamburger .bar {
    display: block; width: 25px; height: 3px;
    margin: 5px auto; background-color: #FFFFFF;
    transition: all var(--transition-speed) ease-in-out;
}

/* =================================================================== */
/*                      4. PAGE HEADER                           */
/* =================================================================== */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    background-color: var(--color-bg-light);
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    padding-top: 150%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,102,0,0.05), transparent 50%);
    transform: translate(-50%, -50%);
    animation: pulse-bg 8s ease-in-out infinite;
}
@keyframes pulse-bg {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}
.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-text-dark);
}
.breadcrumb a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
.breadcrumb a:hover {
    color: var(--color-primary);
}
.breadcrumb i {
    font-size: 0.8rem;
}

/* =================================================================== */
/*                5. OUR MISSION & VISION SECTION (ABOUT PAGE)         */
/* =================================================================== */
.mission-section {
    padding: 6rem 0;
    background-color: var(--color-bg-dark);
}
.mission-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 4rem;
}
.mission-svg-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mission-svg {
    width: 100%;
    max-width: 400px;
    overflow: visible;
}
.mission-paths path {
    stroke-width: 1;
    stroke: rgba(255, 102, 0, 0.2);
}
.core-node {
    fill: var(--color-primary);
    filter: url(#mission-glow);
    animation: pulse-core 4s ease-in-out infinite;
    transform-origin: center;
}
@keyframes pulse-core {
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
.moving-node {
    fill: var(--color-secondary);
    filter: url(#mission-glow);
}
.moving-node.node-2 { fill: var(--color-text); }
.moving-node.node-3 { fill: var(--color-primary); opacity: 0.8; }

.experience-card-about {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}
.experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}
.experience-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.mission-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-text);
}
.mission-content p {
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}
.mission-content .btn {
    margin-top: 1rem;
}

/* =================================================================== */
/*                6. CORE MISSION SECTION (ABOUT PAGE)                 */
/* =================================================================== */
.core-mission-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
}
.core-mission-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}
.core-mission-svg-area {
    display: flex;
    justify-content: center;
    align-items: center;
}
.core-mission-svg {
    width: 100%;
    max-width: 400px;
    overflow: visible;
}
.cm-branches path {
    stroke: rgba(255, 165, 0, 0.3);
    stroke-width: 2;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw-branch 3s ease-out forwards paused;
}
@keyframes draw-branch {
    to { stroke-dashoffset: 0; }
}
.cm-nodes circle {
    fill: var(--color-bg-light);
    stroke: var(--color-primary);
    stroke-width: 2;
    opacity: 0;
    animation: pulse-mission-node 1s ease-out forwards paused;
}
@keyframes pulse-mission-node {
    to { opacity: 1; }
}
.cm-nodes circle:nth-child(1) { fill: var(--color-primary); animation-delay: 0.5s; }
.cm-nodes circle:nth-child(2) { animation-delay: 1.0s; }
.cm-nodes circle:nth-child(3) { animation-delay: 1.2s; }
.cm-nodes circle:nth-child(4) { animation-delay: 1.4s; }
.cm-nodes circle:nth-child(5) { animation-delay: 1.6s; }
.cm-nodes circle:nth-child(6) { animation-delay: 1.8s; }
.cm-nodes circle:nth-child(7) { animation-delay: 2.0s; }

.core-mission-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-text);
}
.core-mission-content p {
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}
.core-mission-content .btn {
    margin-top: 1rem;
}

/* =================================================================== */
/*                7. OUR VALUES SECTION (ABOUT PAGE)                   */
/* =================================================================== */
.values-section {
    padding: 6rem 0;
    background-color: var(--color-bg-dark);
}
.values-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 4rem;
}
.values-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.values-content p {
    color: var(--color-text-dark);
    margin-bottom: 2rem;
}
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.value-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all var(--transition-speed) ease;
}
.value-item:hover .value-icon {
    background: var(--color-primary);
    transform: scale(1.1);
}
.value-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all var(--transition-speed) ease;
}
.value-item:hover .value-icon svg {
    stroke: #FFFFFF;
}
.value-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}
.value-text p {
    color: var(--color-text-dark);
    line-height: 1.5;
}

/* SVG Icon Specifics */
.vi-excellence {
    stroke-width: 4;
    fill: transparent;
    transition: all 0.5s ease;
}
.value-item:hover .vi-excellence {
    fill: rgba(255, 255, 255, 0.8);
    transform: rotate(360deg) scale(0.9);
}
.vi-integrity {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1s ease, fill 0.5s ease;
}
.value-item:hover .vi-integrity {
    stroke-dashoffset: 0;
    fill: rgba(255,255,255,0.2);
}
.vi-innovation .orbit {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 4;
    transform-origin: center;
    transition: transform 0.5s ease;
}
.value-item:hover .vi-innovation .orbit {
    transform: rotate(180deg);
}
.value-item:hover .vi-innovation circle {
    animation: pulse-atom 1s infinite;
}
@keyframes pulse-atom {
    50% { r: 12; }
}
.vi-partnership {
    stroke-width: 6;
}
.value-item:hover .vi-partnership path {
    transform-origin: center;
    transform: scale(1.1);
}

/* =================================================================== */
/*                8. TIMELINE SECTION (ABOUT PAGE)                   */
/* =================================================================== */
.timeline-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
}
.timeline-tabs {
    display: flex;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    border-radius: 50px;
    padding: 0.5rem;
    max-width: 500px;
    margin: 0 auto 4rem;
}
.timeline-tab-button {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    background: transparent;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}
.timeline-tab-button.active {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.timeline-content-area {
    position: relative;
    min-height: 280px;
}
.timeline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}
.timeline-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}
.timeline-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}
.timeline-text p {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}
.timeline-text p strong {
    color: var(--color-text);
    font-weight: 600;
}

.timeline-svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.timeline-svg {
    width: 100%;
    max-width: 250px;
    overflow: visible;
}
.timeline-svg g {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Timeline SVG Animations */
.timeline-content.active .ts-foundation .seed { animation: grow-seed 2s forwards; }
.timeline-content.active .ts-foundation .sprout { stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw-sprout 2s 1s forwards; }
@keyframes grow-seed { 50% { transform: scale(1.1); } }
@keyframes draw-sprout { to { stroke-dashoffset: 0; } }

.timeline-content.active .ts-growth path { stroke-dasharray: 150; stroke-dashoffset: 150; animation: draw-growth 2s forwards; }
.timeline-content.active .ts-growth path:nth-child(2) { animation-delay: 0.5s; }
.timeline-content.active .ts-growth path:nth-child(3) { animation-delay: 1s; }
.timeline-content.active .ts-growth path:nth-child(4) { animation-delay: 1.5s; }
@keyframes draw-growth { to { stroke-dashoffset: 0; } }

.timeline-content.active .ts-recognition rect { animation: fill-rect 1s forwards; }
.timeline-content.active .ts-recognition path { stroke-dasharray: 50; stroke-dashoffset: 50; animation: draw-check 1s 0.8s forwards; }
.timeline-content.active .ts-recognition circle { animation: pop-in 0.5s 1.5s forwards; transform: scale(0); transform-origin: center; }
@keyframes fill-rect { 50% { fill: rgba(255,165,0,0.1); } 100% { fill: rgba(255,165,0,0.2); } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
@keyframes pop-in { to { transform: scale(1); } }

.timeline-content.active .ts-leadership path { animation: move-up 2s forwards; }
.timeline-content.active .ts-leadership .rocket { animation: whoosh 0.5s 1.8s infinite alternate; }
@keyframes move-up { to { transform: translateY(-10px); } }
@keyframes whoosh { to { transform: translateY(-15px); } }


/* =================================================================== */
/*                9. TESTIMONIAL SECTION (ABOUT PAGE)                  */
/* =================================================================== */
.testimonial-section {
    padding: 6rem 0;
    background-color: var(--color-bg-dark);
}
.testimonial-slider-container {
    overflow: hidden;
    cursor: grab;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    flex: 0 0 33.333%;
    padding: 0 1rem;
}
.testimonial-card {
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
}
.testimonial-quote-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--color-primary);
    opacity: 0.5;
}
.testimonial-card p {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 2rem;
}
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    padding-top: 1.5rem;
}
.testimonial-name {
    font-weight: 600;
    color: var(--color-text);
}
.testimonial-rating {
    color: var(--color-secondary);
}
.testimonial-dots-container {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}
.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-bg-light);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}
.testimonial-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* =================================================================== */
/*                10. FINAL CTA SECTION (ABOUT PAGE)                   */
/* =================================================================== */
.final-cta-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}
.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    max-width: 600px;
}
.cta-content p {
    color: var(--color-text-dark);
    max-width: 600px;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* =================================================================== */
/*                      SCROLL ANIMATIONS                          */
/* =================================================================== */
.animate-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-scroll[data-animation="fade-up"] { transform: translateY(50px); }
.animate-scroll[data-animation="fade-right"] { transform: translateX(-50px); }
.animate-scroll[data-animation="fade-left"] { transform: translateX(50px); }

.animate-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.animate-scroll.is-visible .cm-branches path,
.animate-scroll.is-visible .cm-nodes circle {
    animation-play-state: running;
}


/* =================================================================== */
/*                      FOOTER                                     */
/* =================================================================== */
.footer { padding-top: 6rem; background: var(--color-bg-dark); z-index: 1; position: relative; border-top: 1px solid rgba(255,102,0,0.1)}
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem; padding-bottom: 4rem;
}
.footer-col .logo { margin-bottom: 1rem; }
.footer-col .logo .logo-globe-container { transform: scale(0.9); }
.footer-col p { margin-bottom: 1.5rem; color: var(--color-text-dark); font-size: 0.9rem; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--color-text); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul li span { color: var(--color-text-dark); }
.footer-col ul li a {
    color: var(--color-text-dark); text-decoration: none;
    transition: color var(--transition-speed) ease; position: relative;
    padding-bottom: 4px; display: inline-block;
    font-size: 0.9rem;
}
.footer-col ul li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0;
    height: 2px; background: var(--color-primary);
    transition: width var(--transition-speed) ease;
}
.footer-col ul li a:hover { color: #FFFFFF; }
.footer-col ul li a:hover::after { width: 100%; }
.footer-col ul i { color: var(--color-primary); margin-right: 0.8rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 40px; height: 40px; display: grid; place-items: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    color: #FFFFFF; text-decoration: none;
    transition: all var(--transition-speed) ease;
}
.social-links a:hover {
    color: var(--color-primary); transform: translateY(-3px); box-shadow: 0 0 15px var(--color-primary);
}
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem var(--container-padding); border-top: 1px solid rgba(255, 102, 0, 0.2);
    color: var(--color-text-dark);
}
.footer-bottom a { color: var(--color-text-dark); margin-left: 1.5rem; font-size: 0.9rem; }

/* =================================================================== */
/*                      RESPONSIVE MEDIA QUERIES                   */
/* =================================================================== */
@media (max-width: 1024px) {
    .nav-menu::before { display: none; }
    .nav-menu {
        position: fixed; left: -100%; top: 0; flex-direction: column;
        justify-content: center; background-color: var(--color-bg-dark);
        width: 100%; height: 100vh; text-align: center;
        transition: left var(--transition-speed) ease; padding: 0; border-radius: 0;
    }
    .nav-menu.active { left: 0; }
    .nav-item { 
        margin: 1.5rem 0; opacity: 0; transform: translateY(20px);
    }
    .nav-menu.active .nav-item { animation: navLinkFade 0.5s ease forwards; }
    @keyframes navLinkFade { to { opacity: 1; transform: translateY(0); } }
    .nav-contact-btn { display: none; }
    .hamburger { display: block; z-index: 101; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .mission-container, .core-mission-container, .values-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mission-svg-area, .core-mission-svg-area {
        order: 1;
        margin-bottom: 3rem;
    }
    .mission-content, .core-mission-content {
        order: 2;
    }
    .experience-card-about {
        left: 50%;
        transform: translateX(-50%);
        bottom: -2rem;
    }
    .core-mission-svg-area { 
        order: 2;
        margin-top: 3rem;
        margin-bottom: 0;
    }
    .core-mission-content {
        order: 1;
    }
    .values-content {
        margin-bottom: 2rem;
    }
    .value-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .timeline-content {
        grid-template-columns: 1fr;
    }
    .timeline-svg-container {
        margin-top: 2rem;
    }
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 2.8rem; }
    .mission-content h2, .core-mission-content h2, .values-content h2, .section-title { font-size: 2.2rem; }
    .timeline-tabs {
        max-width: 100%;
        padding: 0.4rem;
    }
    .timeline-tab-button {
        font-size: 0.9rem;
        padding: 0.6rem 0.5rem;
    }
    .testimonial-slide {
        flex: 0 0 100%;
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-buttons .btn {
        width: 100%;
    }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}