/* ==========================================================================
   1. GLOBAL FRAMEWORK FOUNDATIONS & RESET RULES
   ========================================================================== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    color: #333333;
    background-color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
}

/* ==========================================================================
   2. NAVBAR STRUCTURE MATCH PIPELINE (UNIFORM ACROSS ALL SITE PAGES)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    box-shadow: none;
    padding: 0 80px;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
}

#colab-logo {
    width: 150px;
    height: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #2b4c7e;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7ca852 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================================================
   3. MISSION AND VISION FULL-STRETCH COMPONENT DESIGN
   ========================================================================== */
.Mis-vis-container {
    padding: 140px 0 40px 0;
    width: 100%;
    margin: 0;
}

.Mis-vis-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 35px;
    padding-left: 5%;
}

.Our {
    flex: 0 0 280px;
}

.Our h1 {
    font-size: 42px;
    font-weight: 800;
    color: #2b4c7e;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.green-highlight { color: #7ca852; }
.blue-highlight { color: #2b4c7e; }

.Our h2 {
    border-bottom: 4px solid #2b4c7e;
    width: 150px;
    margin: 14px 0 4px 0;
    border-radius: 2px;
}

.Our h3 {
    border-top: 4px solid #7ca852;
    width: 150px;
    margin: 0;
    border-radius: 2px;
}

/* --- Green Mission Capsule: Compact Height, Centered Inner Image --- */
.Mission {
    display: flex;
    align-items: center;
    background-color: #7ca852;
    color: #ffffff;
    flex: 1;
    min-height: 170px;
    padding: 15px 5% 15px 0;
    position: relative;
    margin-left: 40px;
    
    border-top-left-radius: 85px;
    border-bottom-left-radius: 85px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    
    box-shadow: -5px 12px 35px rgba(124, 168, 82, 0.16);
}

.mission-circle {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.Mission .text-container {
    margin-left: 185px;
    max-width: 680px;
}

/* --- Blue Vision Capsule: Compact Height, Centered Inner Image --- */
.vision-outer-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 70px;
}

.Vision {
    display: flex;
    align-items: center;
    background-color: #2b4c7e;
    color: #ffffff;
    
    width: calc(100% - 290px); 
    min-height: 170px;
    padding: 15px 0 15px 5%;
    position: relative;
    margin-right: 40px;
    
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 85px;
    border-bottom-right-radius: 85px;
    
    box-shadow: 5px 12px 35px rgba(43, 76, 126, 0.16);
}

.vision-circle {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.Vision .text-container {
    margin-right: 185px;
    text-align: left;
    max-width: 680px;
}

/* --- Core Sizing Adjustments for a Shorter Layout --- */
.image-wrapper-circle img {
    width: 156px;
    height: 156px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.text-container h1 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.text-container p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================================================
   4. ACROSTICS CHAIN STRUCTURE (CO-LAB VALUES ARRAY SPECIFICATION)
   ========================================================================== */
.Values {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
    padding-bottom: 100px;
}

#Values-Header {
    font-size: 42px;
    font-weight: 800;
    color: #333333;
    margin: 0;
}

.Values h2 {
    border-bottom: 4px solid #2b4c7e;
    width: 120px;
    margin: 12px 0 4px 0;
    border-radius: 2px;
}

.Values h3 {
    border-top: 4px solid #7ca852;
    width: 120px;
    margin: 0 0 50px 0;
    border-radius: 2px;
}

.Val {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.acronym-chain-container {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 20px;
}

/* Center Guide Acronym Stem Line */
.acronym-chain-container::before {
    content: '';
    position: absolute;
    left: 55px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    border-left: 2px dashed #cbd5e1;
    z-index: 1;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.value-item:last-child {
    margin-bottom: 0;
}

.circle-letter {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    flex-shrink: 0;
    border: 2.5px solid #cbd5e1;
}

.c-color { border-color: #7ca852; color: #7ca852; }
.o-color { border-color: #2b4c7e; color: #2b4c7e; }
.l-color { border-color: #7ca852; color: #7ca852; }
.a-color { border-color: #2b4c7e; color: #2b4c7e; }
.b-color { border-color: #7ca852; color: #7ca852; }

.value-content-block {
    padding-top: 8px;
}

.value-content-block h1 {
    font-size: 20px;
    font-weight: 700;
    color: #2b4c7e;
    margin: 0 0 8px 0;
}

.value-content-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    max-width: 580px;
    text-align: justify;
}

.values-graphic-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.values-graphic-panel img {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 24px;
    border: 10px solid #f1f5f9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   5. VIEWPORT TRIGGER ACTION LOGIC EFFECTS ENGINE
   ========================================================================== */
.scroll-trigger {
    opacity: 0;
    will-change: transform, opacity;
}

.animate-from-left {
    transform: translateX(-80px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-from-right {
    transform: translateX(80px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-step {
    transform: translateY(25px);
    transition: opacity 0.6s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.value-item:nth-child(1) { transition-delay: 0.05s; }
.value-item:nth-child(2) { transition-delay: 0.15s; }
.value-item:nth-child(3) { transition-delay: 0.25s; }
.value-item:nth-child(4) { transition-delay: 0.35s; }
.value-item:nth-child(5) { transition-delay: 0.45s; }

.pop-in-view {
    transform: scale(0.96) translateY(15px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.15s;
}

.scroll-trigger.reveal-triggered {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* ==========================================================================
   6. SUB-FOOTER RE-SYNC COMPONENT STRUCTURAL LAYOUT
   ========================================================================== */
.sub-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    padding: 80px 40px;
    gap: 50px;
    border-top: 1px solid #eeeeee;
}

.footer-logo-side img {
    width: 240px;
    height: auto;
}

.footer-divider {
    width: 1px;
    height: 140px;
    background-color: #dddddd;
}

.foot-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 650px;
}

.info-row {
    display: flex;
    align-items: center;
    color: #444444;
}

.info-row p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.address-row {
    align-items: flex-start;
    gap: 12px;
}

.icon-marker {
    color: #333333;
    font-size: 20px;
    margin-top: 2px;
}

.connect-row {
    gap: 40px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 24px;
    color: #111111;
    transition: color 0.2s;
}

.social-icon:hover {
    color: #1d4477;
}

.mail-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-mail {
    color: #555555;
    font-size: 18px;
}

.phones-row {
    gap: 30px;
}

.phones-row p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-phone, .icon-globe {
    color: #2b4c7e;
    font-size: 16px;
}

footer {
    background-color: #1a4273;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================================================
   7. PRO-GRADE SEAMLESS RESPONSIVE VIEWPORT BREAKPOINTS (TABLETS & PHONES)
   ========================================================================== */
@media (max-width: 1024px) {
    .navbar { padding: 0 40px; }
    .Mis-vis-container { width: 100%; }
    .Vision { width: calc(100% - 270px); }
    .Val { gap: 40px; }
}

@media (max-width: 991px) {
    .Mis-vis-row-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding-right: 5%;
    }
    .Our {
        flex: none;
        width: 100%;
    }
    .Mission {
        width: calc(100% - 40px);
    }
    .vision-outer-container {
        justify-content: flex-end;
    }
    .Vision {
        width: calc(100% - 40px);
    }
    .Val {
        flex-direction: column-reverse;
        align-items: center;
        gap: 50px;
    }
    .acronym-chain-container {
        width: 100%;
    }
    .value-content-block p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar { height: 80px; padding: 0 20px; }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
        padding-top: 60px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 10px rgba(0,0,0,0.05);
    }
    
    .nav-links a { color: #2b4c7e !important; }
    .nav-links.active { right: 0; }
    .hamburger { display: flex; }
    
    .hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
    
    .Mis-vis-container { padding-top: 120px; }
    .Our { text-align: center; }
    .Our h2, .Our h3 { margin: 10px auto; }
    
    .Mission, .Vision {
        width: calc(100% - 40px) !important;
        flex-direction: column !important;
        padding: 95px 24px 30px 24px !important;
        text-align: center !important;
        border-radius: 20px !important;
    }

    /* Fixed Layout Alignment to Center the Boxes Smoothly */
    .Mission {
        margin: 70px auto 20px auto !important;
        margin-left: auto !important;
    }
    
    .Vision {
        margin: 70px auto 20px auto !important;
        margin-right: auto !important;
    }
    
    .mission-circle, .vision-circle {
        position: absolute;
        left: 50% !important;
        right: auto !important;
        top: 0 !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .image-wrapper-circle img {
        width: 140px;
        height: 140px;
    }
    
    .Vision .text-container, .Mission .text-container {
        margin: 0 !important;
        text-align: center !important;
        max-width: 100%;
    }
    
    .animate-from-left, .animate-from-right {
        transform: translateY(30px);
    }
    
    .acronym-chain-container::before { left: 55px; }
    .value-item { gap: 20px; }
    
    .values-graphic-panel img { max-width: 100%; }
    
    .sub-footer { flex-direction: column; text-align: center; padding: 50px 24px; gap: 30px; }
    .footer-divider { display: none; }
    .foot-info-side { align-items: center; }
    .info-row { flex-direction: column; align-items: center; gap: 10px; }
    .connect-row, .phones-row { gap: 20px; }
}

@media (max-width: 480px) {
    .Our h1, #Values-Header { font-size: 32px; }
    .circle-letter { width: 54px; height: 54px; font-size: 22px; }
    .acronym-chain-container::before { left: 47px; }
    .value-item { gap: 15px; }
    .text-container h1 { font-size: 24px; }
    .text-container p { font-size: 14px; }
}