@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
/* ============================================ */
/* GLOBAL STYLES & VARIABLES                 */
/* ============================================ */
:root {
    --primary-blue: #004494; 
    --dark-gray: #333333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --accent-blue: #005CB9;
    --value-color-own-it: #2a2e74;
    --value-color-one-team: #e61669;
    --value-color-move-fast: #10518d;
    --value-color-build-trust: #09b3b1;
    --value-color-drive-innovation: #e8422b;
    --value-color-delight-customers: #31ae73;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ======================================================= */
/*  HEADER   */
/* ======================================================= */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 1.5rem 2.5rem;
    background-color: transparent; 
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.sub-page .main-header,
.main-header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    padding: 2rem 3.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header .logo img { 
    max-height: 85px; 
    display: block; 
    transition: max-height 0.4s ease; 
}

.sub-page .main-header .logo img,
.main-header.scrolled .logo img { 
    max-height: 85px; 
}
.main-header .main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.5rem; }

.main-header .main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.4s ease;
}

.sub-page .main-header .main-nav a,
.main-header.scrolled .main-nav a {
    color: #111e2b; 
}

.main-header .main-nav a.active::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 2px; background-color: white;
    transition: background-color 0.4s ease;
}

.sub-page .main-header .main-nav a.active::after,
.main-header.scrolled .main-nav a.active::after {
    background-color: #111e2b;
}

/* ============================================ */
/*  Sub-Page Header Gap            */
/* ============================================ */

.page-header {
    background-color: #f8f9fa;
    text-align: center;
    padding: 4rem 0; 
}
.sub-page .page-header {
    padding-top: calc(130px + 4rem);
    padding-bottom: 4rem;
}

/* ============================================ */
/*  Horizontal Overflow on Mobile  */
/* ============================================ */

@media (max-width: 768px) {
    

    .page-header {
        padding: 0.5rem 1rem; 
    }
    .sub-page .page-header {
        padding-top: calc(85px + 2.5rem);
    }
    section {
        overflow-x: hidden;
    }
    .container, 
    .awards-grid, 
    .timeline-image-container {
        max-width: 100%;
        box-sizing: border-box; 
    }
}

/* ============================================ */
/* HERO SECTION (with Video Background)      */
/* ============================================ */
.hero {
    position: relative;
    height: 100vh; 
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; 
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 30, 80, 0.6);
    z-index: 2; 
}

.hero-content {
    position: relative;
    z-index: 3; 
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem; 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
/* ============================================ */
/*  Primary Call-to-Action Button Style        */
/* ============================================ */
.cta-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: 2px solid var(--primary-blue); 
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.cta-button-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}


/* ============================================ */
/* CONTENT SECTIONS (Pillars, Why Us)        */
/* ============================================ */
.pillars, .why-us {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.pillars {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title span {
    display: block;
    font-weight: bold;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
}
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: #555;
}

.pillars-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pillar-card h3 {
    font-size: 1.5rem;
}

.pillar-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
}

.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
}

.pillars-grid.two-pillars {
    max-width: 900px; 
    margin: 0 auto;   
}

/* ============================================ */
/* CTA SECTION                               */
/* ============================================ */
.cta-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

.cta-button-light {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button-light:hover {
    background: var(--light-gray);
    transform: scale(1.05);
}


/* ============================================ */
/* 6. FOOTER (FINAL REVISED LAYOUT)             */
/* ============================================ */
.main-footer {
    background: #111e2b; 
    color: #a9b3c1;
    padding: 5rem 0 1.5rem 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr; 
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #334252;
    align-items: start;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Column 1: Company Info & Follow Us --- */
.footer-branding .company-name-full { font-weight: bold; color: white; font-size: 1rem; margin-bottom: 0.25rem; }
.footer-branding .company-reg-moved { font-size: 0.9rem; opacity: 0.8; margin-bottom: 2rem; }
.footer-branding .follow-us-title { margin-bottom: 1rem; }
.social-icons a { color: #a9b3c1; font-size: 2.2rem; margin-right: 1.5rem; transition: color 0.3s ease, transform 0.3s ease; }
.social-icons a:hover { color: var(--white); transform: translateY(-3px); }

/* --- Column 2: Contact Us --- */
.contact-list { list-style: none; padding: 0; }
.contact-list li { display: flex; align-items: flex-start; margin-bottom: 1rem; }
.contact-list i { font-size: 1rem; color: var(--primary-blue); margin-right: 1rem; margin-top: 5px; width: 20px; text-align: center; }

/* --- Column 3: Quick Links & Logo --- */
.footer-column-right { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.quick-links { list-style: none; padding: 0; }
.quick-links li { margin-bottom: 0.8rem; }
.footer-bottom-logo { margin-top: auto; padding-top: 1.5rem; text-align: left; }
.footer-bottom-logo .footer-logo { max-height: 60px; }

/* --- General & Bottom --- */
.main-footer a { color: #a9b3c1; text-decoration: none; transition: color 0.3s ease; }
.main-footer a:hover { color: var(--white); }
.footer-bottom { padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-column:nth-child(2) { grid-column: 1 / -1; margin-top: 2rem; } /* Contact Us becomes full-width */
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-column:nth-child(2) { grid-column: auto; margin-top: 0; }
    .footer-column, .footer-column-right { align-items: center; }
    .contact-list li { justify-content: center; }
    .footer-bottom-logo { text-align: center; margin-top: 2rem; }
}


/* ============================================ */
/* FEATURE VIDEO SECTION (Homepage)       */
/* ============================================ */
.feature-video-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.video-thumbnail-link {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover {
    transform: scale(1.02);
}

.video-thumbnail-link img {
    width: 100%;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 68, 148, 0.3); 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-thumbnail-link:hover .play-button-overlay {
    background: rgba(0, 68, 148, 0.5);
}

.play-button-overlay i {
    font-size: 4rem;
    color: white;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover .play-button-overlay i {
    transform: scale(1.1);
}
/* ============================================ */
/* 7. ABOUT US PAGE STYLES                      */
/* ============================================ */

.page-header {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}



.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    padding-top: 30px;
}

.story-image img {
    width: 100%;
    border-radius: 5px;
}

.story-content h2 {
    font-size: 2.2rem;
}

/* Mission, Vision, Values Section */
.mvv-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: var(--white);
    padding: 2rem;
    border-left: 5px solid var(--primary-blue);
}

.mvv-card h3 {
    margin-bottom: 0.5rem;
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%; 
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--light-gray);
}

.team-member h4 {
    margin-bottom: 0.25rem;
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.team-member .title {
    color: #777;
}

.core-values-section {
    padding: 55px 0;
}


/* ============================================ */
/*  HEXAGON GRID STYLES         */
/* ============================================ */
.leadership-section {
    padding: 5rem 0;
}
.leadership-section.management-team {
    background-color: #f8f9fa;
}

.hexagon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.hexagon-card {
    width: 170px;
    text-align: center;
    transition: transform 0.3s ease;
}
.hexagon-card:hover {
    transform: translateY(-10px);
}

.hexagon-image {
    position: relative;
    width: 100%;
    padding-top: 115.47%; 
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: #e9ecef;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
    -webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.hexagon-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon-info .leader-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue, #004494);
    margin: 0 0 0.25rem 0;
}

.hexagon-info .leader-title {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.hexagon-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, 170px); 
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
}
/* ============================================ */
/* OUR CORE VALUES (with Banners)           */
/* ============================================ */

.core-values-section {
    padding: 0;
    background-color: white;
}

.beliefs-banner-container {
    line-height: 0;
}


.beliefs-banner--top img {
    width: 80%;
    height: auto; 
    object-fit: cover;
    object-position: bottom; 
    padding-bottom: 1rem;
    display: block;
    margin: 0 auto;
}

.beliefs-banner--bottom img {
    width: 80%;
    height: auto; 
    object-fit: cover;
    object-position: top; 
    padding-top: 1rem;
    display: block;
    margin: 0 auto;
}
.beliefs-title h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    color: #3f464d; 
    letter-spacing: 1px;

}
.core-values-section .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* --- Purpose Statement Image --- */
.purpose-statement-image-container {
    text-align: center;
}
.purpose-statement-image-container img {
    max-width: 80%;
    height: auto;
}

/* --- The Grid of 6 Value Cards  --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; 
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.value-card-image {
    overflow: hidden; 
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beliefs-banner--top img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    object-position: bottom; 
    padding-bottom: 1rem;
    display: block;
    margin: 0 auto;
}

.beliefs-banner--bottom img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    object-position: top; 
    padding-top: 1rem;
    display: block;
    margin: 0 auto;
}
.beliefs-title h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    color: #3f464d; 
    letter-spacing: 1px;

}
.core-values-section .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.purpose-statement-image-container img {
    max-width: 100%;
    height: auto;
}
}

@media (max-width: 768px) {
    .core-values-section .container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .beliefs-banner--top img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    object-position: bottom; 
    padding-bottom: 1rem;
    display: block;
    margin: 0 auto;
}

.beliefs-banner--bottom img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    object-position: top; 
    padding-top: 1rem;
    display: block;
    margin: 0 auto;
}
.beliefs-title h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    color: #3f464d; 
    letter-spacing: 1px;

}
.core-values-section .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.purpose-statement-image-container img {
    max-width: 100%;
    height: auto;
}
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .beliefs-banner--top img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    object-position: bottom; 
    padding-bottom: 1rem;
    display: block;
    margin: 0 auto;
}

.beliefs-banner--bottom img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    object-position: top; 
    padding-top: 1rem;
    display: block;
    margin: 0 auto;
}
.beliefs-title h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    color: #3f464d; 
    letter-spacing: 1px;

}
.core-values-section .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.purpose-statement-image-container img {
    max-width: 100%;
    height: auto;
}
}


/* ============================================ */
/* Certifications   */
/* ============================================ */
.certifications-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.filter-gallery-container {
    margin-top: 3rem;
}

.filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 50px; 
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.filter-btn.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 68, 148, 0.2);
}

.filterable-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 1.5rem;
}

.grid-item {
    flex-basis: 300px; 
    position: relative; 
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}   
.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.grid-item img {
    width: 100%;
    height: 400px; 
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%); 
    transition: transform 0.4s ease;
}
.grid-item:hover .item-overlay {
    transform: translateY(0);
}
.item-overlay h3 {
    color: white;
    margin: 0;
}


.grid-item.is-hidden {
    display: none;
}

@media (max-width: 768px) {
    .item-overlay {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.6);
        padding: 1rem;
    }

    .grid-item img {
        height: 500px; 
    }
}

.awards-section {
    padding: 80px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.award-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 5px;
    border: 2.5px solid #e0e0e0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.award-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0, 68, 148, 0.08);
}

.award-image {
    flex: 0 0 120px; 
    margin-right: 2rem;
    text-align: center;
}

.award-image img {
    max-width: 300px;
    max-height: 300px;
}

.award-content {
    flex: 1;
}

.award-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.award-details {
    font-weight: bold;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.award-description {
    color: #555;
    line-height: 1.6;
}


/* ============================================ */
/*  Milestones Section Styles      */
/* ============================================ */

.milestones-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    text-align: center; 
}

.milestones-teaser-content {
    max-width: 800px;
    margin: 0 auto;
}

.milestones-teaser-content p {
    margin-bottom: 1.5rem; 
}

.milestones-button-container {
    margin-top: 2rem; 
}
.timeline {
    position: relative;
    max-width: 900px; 
    margin: 3rem auto 0 auto;
    padding-bottom: 50px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #dee2e6;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px; 
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px; 
    background-color: white;
    border: 4px solid var(--primary-blue);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-card {
    padding: 1.5rem;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.timeline-year {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.timeline-title {
    font-size: 1.25rem;
    margin-top: 0;
    color: var(--dark-gray);
}

.timeline-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* --- Responsive Styles for Mobile --- */
@media (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
    }
    .timeline-item:nth-child(even) {
        left: 0; 
    }
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
    }
}
/* ============================================ */
/* CORE FOCUS & STATS */
/* ============================================ */

/* Core Focus Section */
.core-focus {
    padding: 80px 0;
    background: var(--white);
}


.focus-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.focus-content {
    display: flex;
    flex-direction: column;
}

.focus-content .cta-button {
    padding: 0.8rem 1.5rem;
    margin-top: 2rem; 
    width: fit-content; 
}

.stats-bar {
    background: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    line-height: 1.1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
}



/* ============================================ */
/*  LEADERSHIP    */
/* ============================================ */

.leadership-section {
    padding: 80px 0;
}

.management-team {
    background-color: var(--light-gray);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.leader-card {
    text-align: center;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.leader-image img {
    width: 100%;
    height: 300px;
    object-fit: cover; 
    display: block;
}

.leader-info {
    padding: 1.5rem 1rem;
}

.leader-name {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin: 0 0 0.25rem 0;
}

.leader-title {
    font-size: 1rem;
    color: #555;
    margin: 0;
}


.board-of-directors-grid {
    grid-template-columns: repeat(4, 1fr); 
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.board-of-directors-grid .span-2 {
    grid-column: span 2;
}



/* ======================================================= */
/*  Layout for Custom Rows (BOD and Management)            */
/* ======================================================= */

.director-row,
.management-row {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    margin-bottom: 2rem; 
}

.director-row .leader-card,
.management-row .leader-card {
    flex: 0 0 260px; 
    max-width: 260px;
    margin: 0.75rem;
}

.board-of-directors-container .director-row:last-child,
.management-team-container .management-row:last-child {
    margin-bottom: 0;
}



/* ======================================================= */
/*  Layout for Senior Management    */
/* ======================================================= */

.management-row {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;        
    margin-bottom: 2rem; 
}

.management-row .leader-card {
    flex: 0 0 260px;
    max-width: 260px;
    margin: 0.75rem;
}

.management-team-container .management-row:last-child {
    margin-bottom: 0;
}


/* ======================================================= */
/*  16. Custom UI Styles        */
/* ======================================================= */
.sl-overlay { background: #0d1a2e; }
.sl-wrapper .sl-close, .sl-wrapper .sl-navigation button { color: #FFFFFF !important; font-size: 2rem !important; }
.sl-wrapper .sl-caption { background: rgba(0, 0, 0, 0.5) !important; color: #FFFFFF !important; font-size: 1rem !important; }

/* ============================================ */
/* OUR PLANT PAGE STYLES         */
/* ============================================ */

.manufacturing-process { padding: 60px 0; }
.process-step { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 5rem; }
.process-step.reverse {
    grid-template-areas: "content image";
}
.process-step.reverse .process-image-container {
    grid-area: image;
}
.process-step.reverse .process-content {
    grid-area: content;
    padding-left: 0;      
    padding-right: 5rem;    
    text-align: right;      
}

.process-step.reverse .process-content .process-number {
    left: auto;   
    right: 0;     
}

.process-image-container {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.process-slider.swiper { visibility: hidden; }
.process-slider.swiper-initialized { visibility: visible; }
.swiper-slide img { width: 100%; height: 400px; object-fit: cover; display: block; }
.process-slider .swiper-button-next, .process-slider .swiper-button-prev { color: #fff; background-color: rgba(0, 0, 0, 0.3); width: 40px; height: 40px; border-radius: 50%; }
.process-slider .swiper-button-next::after, .process-slider .swiper-button-prev::after { font-size: 1rem; }

.process-content {
    position: relative;
    padding-left: 6rem;
    text-align: left; 
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 68, 148, 0.15); 
    line-height: 1;
    z-index: -1;
}
.process-content {
    position: relative;
    padding-left: 7rem; 
    text-align: left;
}

.process-step.reverse .process-content {
    grid-area: content;
    padding-left: 0;
    padding-right: 7rem; 
    text-align: right;
}

.swiper-slide a {
    display: block; 
    width: 100%;
    height: 100%;
}
/* ============================================ */
/* Sustainability Section Styles            */
/* ============================================ */

.sustainability-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.sustainability-grid-dynamic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sustainability-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sustainability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sustainability-card img {
    width: 100%;
    height: auto;
    display: block;
}

.sustainability-title {
    color: var(--primary-blue);
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
}


@media (max-width: 992px) {
    .process-content,
    .process-step.reverse .process-content {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 768px) {
    .process-step, 
    .process-step.reverse {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .process-step.reverse {
        grid-template-areas: unset;
    }
    .process-step.reverse .process-image-container,
    .process-step.reverse .process-content {
        grid-area: unset;
    }
    .process-content,
    .process-step.reverse .process-content {
        padding-left: 0;
        padding-right: 0;
        text-align: left; 
    }
    .process-content .process-number,
    .process-step.reverse .process-content .process-number {
        left: 0;
        right: auto;
        font-size: 3rem;
        top: -1rem;
    }
    .process-content h3 {
        margin-top: 3rem; 
    }

}


/* ======================================================= */
/*  Pulsing Animation for the Final CTA Button         */
/* =================================G====================== */
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.cta-section .cta-button-light {
    animation: pulse-animation 2s infinite;
    transition: transform 0.3s ease;
}

.cta-section .cta-button-light:hover {
    animation: none;
    transform: scale(1.1);
}


/* ============================================ */
/* 18. CONTACT US PAGE STYLES  */
/* ============================================ */

.contact-directory-section { padding: 80px 0; }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.directory-item { text-align: center; }
.directory-link { display: block; background: var(--light-gray); border-radius: 8px; padding: 2.5rem 1.5rem; text-decoration: none; height: 100%; transition: all 0.3s ease; border: 1px solid #e0e0e0; }
.directory-link:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--primary-blue); }
.directory-link i { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 1.5rem; }
.directory-link h3 { color: var(--primary-blue); margin-bottom: 0.75rem; }
.directory-link p { color: #555; line-height: 1.5; }

.contact-page-section { padding: 5rem 0; border-top: 1px solid #e0e0e0; }
.contact-page-section.light-bg { background-color: var(--light-gray); }

/* Enquiry Section */
.enquiry-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; margin-top: 3rem; }
.enquiry-details .contact-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.enquiry-details .contact-list li { display: flex; align-items: center; margin-bottom: 1rem; font-size: 1.1rem; }
.enquiry-details .contact-list i { margin-right: 1rem; color: var(--primary-blue); width: 20px; text-align: center; }
.enquiry-map iframe { border-radius: 8px; }
.subsection-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
}

.enquiry-social-icons {
    margin-top: 1rem;
}

.enquiry-social-icons a {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.enquiry-social-icons a:hover {
    color: var(--dark-gray);
}

.requirements-list {
    margin-top: 1.5rem;
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

/* ============================================ */
/* Career & Internship Layout   */
/* ============================================ */

.career-internship-layout {
    display: flex; 
    align-items: flex-start;
    gap: 3rem;
    max-width: 1100px;
    margin: 3rem auto 0 auto;
}

.career-internship-layout.reverse {
    flex-direction: row-reverse;
}

.ci-image {
    flex: 0 0 50%; 
    min-width: 0; 
}
.ci-content {
    flex: 1 1 50%; 
}

.ci-slider {
    width: 100%; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.ci-slider .swiper-slide img {
    width: 100%;
    height: auto; 
    display: block;
}
.ci-slider .swiper-button-next,
.ci-slider .swiper-button-prev {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .career-internship-layout,
    .career-internship-layout.reverse {
        flex-direction: column; 
    }
}


/* ============================================ */
/* Career & Internship Section Styles       */
/* ============================================ */

.career-internship-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 3rem auto 0 auto;
}

.career-internship-layout.reverse {
    grid-template-areas: "content image";
}
.career-internship-layout.reverse .ci-image {
    grid-area: image;
}
.career-internship-layout.reverse .ci-content {
    grid-area: content;
}

.ci-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ci-image a:hover img {
    transform: scale(1.03);
}

.ci-content h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.ci-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}
.ci-button {
    margin-top: 2rem;
    color: var(--primary-blue);      
    border-color: var(--primary-blue); 
}

.ci-button:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}
.email-link,
.phone-link {
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .career-internship-layout,
    .career-internship-layout.reverse {
        grid-template-columns: 1fr;
        grid-template-areas: unset;
    }
}

/* ============================================ */
/*  Internship Section Layout      */
/* ============================================ */
.internship-layout {
    display: flex;
    align-items: flex-start; 
    gap: 3rem;
}

.internship-image {
    flex: 0 0 40%; 
}

.internship-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.internship-content {
    flex: 1; 
}

@media (max-width: 768px) {
    .internship-layout {
        flex-direction: column;
    }

    .internship-image {
        order: -1; 
        margin-bottom: 2rem;
    }
}

/* ======================================================== */
/*  Corporate Policy  */
/* ======================================================== */

.accordion-container {
    max-width: 900px;
    margin: 3rem auto 0 auto;
    border: 1px solid #e0e0e0; 
    border-radius: 8px;
    overflow: hidden; 
}

.accordion-item {
    background: var(--white);
    border-top: 1px solid #e0e0e0;
}
.accordion-item:first-child {
    border-top: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray); 
    text-align: left;
    transition: background-color 0.3s ease; 
}

.accordion-header:hover {
    background-color: #f7f9fc; 
}

.accordion-header .icon::before {
    content: '\002B'; 
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 300;
}

.accordion-item.active .accordion-header .icon::before {
    content: '\2212'; 
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; 
    background: #f7f9fc; 
    border-left: 4px solid transparent; 
}

.accordion-content-inner {
    padding: 2rem 1.5rem;
    line-height: 1.7;
    color: #000000;
}
.accordion-content-inner h3 {
    color: #000;
}
.accordion-item.active .accordion-header {
    color: var(--primary-blue); 
}

.accordion-item.active .accordion-content {
    border-left-color: var(--primary-blue); 
}
.accordion-content-inner ol { padding-left: 20px; margin-top: 1rem; }
.accordion-content-inner li { margin-bottom: 0.75rem; }
.accordion-content-inner .cta-button-outline { margin-top: 1.5rem; display: inline-block; color: var(--primary-blue); border-color: var(--primary-blue); }
.accordion-content-inner .cta-button-outline:hover { background: var(--primary-blue); color: white; }

.policy-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
.policy-buttons .cta-button-outline {
    margin-top: 0; 
}

.accordion-content-inner table {
    width: 100%; 
    border-collapse: collapse; 
    margin: 1.5rem 0;
}

.accordion-content-inner th,
.accordion-content-inner td {
    border: 1px solid #000000; 
    padding: 0.75rem; 
    text-align: left; 
}

.accordion-content-inner th {
    background-color: #f8f9fa; 
    font-weight: bold;
    color: var(--dark-gray);
}


/* ============================================ */
/* PRODUCTS PAGE  */
/* ============================================ */

.brand-showcase-section { padding: 80px 0; }
.brand-tabs { display: flex; justify-content: center; border-bottom: 1px solid #e0e0e0; margin-bottom: 3rem; }
.brand-tab-link { display: flex; align-items: center; gap: 0.75rem; background: none; border: none; padding: 1rem 1.5rem; font-size: 1.1rem; font-weight: 600; color: #777; cursor: pointer; position: relative; border-bottom: 3px solid transparent; margin-bottom: -1px; }
.brand-tab-link img { max-height: 35px; }
.brand-tab-link.active, .brand-tab-link:hover { color: var(--primary-blue); }
.brand-tab-link.active { border-bottom-color: var(--primary-blue); }

.brand-tab-pane { display: none; }
.brand-tab-pane.active { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.showcase-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: center; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 10px 40px rgba(0, 68, 148, 0.1); padding: 2rem; }
.showcase-image-wrapper { position: relative; min-height: 400px; }
.showcase-image-wrapper img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    transition: opacity 0.3s ease;
}
.showcase-models {
    padding: 2rem;
    border-left: 1px solid #e0e0e0;
}

.showcase-models h4 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.models-list { list-style: none; padding: 0; }
.models-list li {
    padding: 0.6rem 1rem; 
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem; 
}
.models-list li:hover { background: var(--light-gray); border-color: var(--primary-blue); }
.models-list li.selected { background: var(--primary-blue); color: white; border-color: var(--primary-blue); }

.model-slider { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.model-slider.is-active { opacity: 1; visibility: visible; }

.model-slider .swiper-slide img { width: 100%; height: auto; max-height: 400px; display: block; margin: 0 auto; object-fit: contain; }
.model-slider .swiper-button-next, .model-slider .swiper-button-prev { color: var(--primary-blue); }

.brand-description {
    margin-top: 3rem; 
}
.brand-description h4 { color: var(--primary-blue); margin-top: 0; margin-bottom: 1.5rem; }
.brand-description .cta-button-outline {
    margin-top: 1.5rem;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}
.brand-description .cta-button-outline {
    margin-top: 1.5rem;
    color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
} 
.brand-description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}
.brand-description-text h4 { color: var(--primary-blue); margin-top: 0; margin-bottom: 1.5rem; }
.brand-description-banner img {
    width: 100%;
    border-radius: 8px;
}

.brand-website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.brand-website-link:hover {
    background: var(--primary-blue);
    color: white;
}


.showcase-image-wrapper {
    position: relative; 
    min-height: 400px; 
}

.model-image {
    max-width: 100%;
    max-height: 400px !important; 
    width: auto;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    transition: opacity 0.4s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
}

.model-image.is-visible {
    opacity: 1;
    visibility: visible;
}

.model-image.is-visible {
    opacity: 1;
    visibility: visible;
}

.model-slider {
    display: none; 
}
.model-slider.is-active {
    display: block; 
}

.brand-hero-container {
    position: relative;
    min-height: 400px; 
}

.brand-hero-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.brand-hero-section.active {
    opacity: 1;
    visibility: visible;
}

.brand-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 30, 43, 0.7);
}

.brand-hero-content {
    position: relative; 
    z-index: 2;
    max-width: 800px;
}

.brand-hero-content h4 {
    color: white;
    font-size: 2rem;
    margin-top: 0;
}

.brand-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.brand-hero-content .brand-website-link {
    border-color: white;
    color: white;
}
.brand-hero-content .brand-website-link:hover {
    background-color: white;
    color: var(--primary-blue);
}

.brand-showcase-section {
    padding-top: 3rem; 
}

/* ============================================ */
/* OUR COMMITMENT PAGE STYLES               */
/* ============================================ */
.commitment-section {
    padding: 80px 0;
}
.commitment-section.light-bg {
    background-color: var(--light-gray);
}
.csr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.csr-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.csr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.csr-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.csr-card-content {
    padding: 1.5rem;
    flex-grow: 1; 
}
.csr-date {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.csr-card-content h3 {
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}
.csr-card-content p {
    color: #555;
    line-height: 1.6;
}


/* --- Styles for CSR Details Page --- */
.csr-gallery-section { padding: 80px 0; }
.csr-full-description { max-width: 800px; margin: 0 auto 3rem auto; text-align: center; font-size: 1.1rem; line-height: 1.7; }
.csr-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
a.csr-card {
    text-decoration: none;
}

/* ============================================ */
/* Next/Previous Navigation    */
/* ============================================ */

.program-navigation {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    background-color: var(--light-gray);
}

.nav-links {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--dark-gray);
    transition: color 0.3s ease;
    max-width: 45%; 
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.nav-links a span {
    display: block;
    font-size: 0.9rem;
    color: #777;
}

.nav-links a strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link-next {
    text-align: center; 
}

.nav-links a span {
    min-width: 0;
}

.nav-links a strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .nav-links a strong {
        white-space: normal; 
        overflow: visible;
        text-overflow: clip;
    }
}

/* ============================================ */
/*  Gallery Details Page (Mobile)  */
/* ============================================ */

.back-link-wrapper {
    margin-bottom: 2rem;
}
.back-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.back-link:hover {
    color: var(--dark-gray);
}


.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a span {
    display: block; 
}

.nav-links a strong {
    display: block; 
    margin-top: 0.25rem;
}

.nav-placeholder {
    flex: 1; 
}


@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 2rem;
        align-items: center; 
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: space-between;
        text-align: right; 
    }

    .nav-link-prev {
        flex-direction: right; 
    }
    
    .nav-link-next {
        flex-direction: left;
    }

    .nav-placeholder {
        display: none;
    }
    
    .nav-links a strong {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

/* ============================================ */
/*  OUR COMMITMENT PAGE STYLES (with Tabs)   */
/* ============================================ */
.tabbed-section {
    padding: 40px 0;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 3rem;
}
.tab-link {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    position: relative;
    margin-bottom: -1px; 
    border-bottom: 3px solid transparent;
}
.tab-link.active, .tab-link:hover {
    color: var(--primary-blue);
}
.tab-link.active {
    border-bottom-color: var(--primary-blue);
}

/* Tab Content */
.tab-pane {
    display: none; 
}
.tab-pane.active {
    display: block; 
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .tab-link {
        padding: 0.5rem 0.5rem; 
    }
}


/* --- CSR & Engagement Grid Styles --- */
.csr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.csr-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* In case it's a link */
}
.csr-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.csr-card-image img { width: 100%; height: 220px; object-fit: cover; display: block; }
.csr-card-content { padding: 1.5rem; flex-grow: 1; }
.csr-date { display: block; font-size: 0.85rem; color: #777; margin-bottom: 0.75rem; font-weight: 600; }
.csr-card-content h3 { color: var(--primary-blue); margin: 0 0 1rem 0; font-size: 1.25rem; }
.csr-card-content p { color: #555; line-height: 1.6; }

/* ============================================ */
/*  Live Search/Filter Styles          */
/* ============================================ */

.search-filter-wrapper {
    position: relative; 
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #aaa;
}

.search-input {
    width: 100%;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 50px; 
    outline: none; 
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 68, 148, 0.1);
}

.clear-search-btn {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    background: #ccc;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-input:not(:placeholder-shown) + .clear-search-btn {
    opacity: 1;
    visibility: visible;
}

.csr-card.is-hidden {
    display: none;
}

/* ======================================================= */
/*  RESPONSIVE STYLES (Tablet & Mobile)    */
/* ======================================================= */

/* --- Mobile Hamburger Menu Styles --- */
.hamburger-button {
    display: none; /* Hidden by default on desktop */
    background: none; border: none; font-size: 1.8rem; cursor: pointer; z-index: 1001;
}
.home-page .hamburger-button { color: white; }
.sub-page .hamburger-button, .main-header.scrolled .hamburger-button { color: #111e2b; }

.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 30, 43, 0.98);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav-overlay.is-active { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; padding: 0; text-align: center; display: inline-block; }
.mobile-nav li { margin-bottom: 2rem; }
.mobile-nav a { color: white; text-decoration: none; font-size: 1.5rem; font-weight: 600; }

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.mobile-nav a.active {
    color: var(--primary-blue); 
}

.mobile-nav a.active::before {
    content: '\f192'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    animation: pulse-icon 1.5s infinite ease-in-out;
}
@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
@media (max-width: 992px) {
    
    /* --- Header & Navigation --- */
    .main-nav { display: none; } 
    .hamburger-button { display: block; } 

    .main-header, .main-header.scrolled { padding: 1rem 1.5rem; }

    /* --- Global Font & Layout Adjustments --- */
    h1 { font-size: 2.5rem; }
    h2, .section-title h2 { font-size: 2rem; }
    .container { padding: 0 1.5rem; }

    /* --- Page Specific Adjustments --- */
    .hero h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .story-grid { grid-template-columns: 1fr; }
    .story-image { order: -1; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .award-card { flex-direction: column; text-align: center; }
    .award-image { margin-right: 0; margin-bottom: 1.5rem; }
    .hexagon-card { width: 220px; }
    .hexagon-row { grid-template-columns: repeat(auto-fit, 220px); }
    .process-step, .process-step.reverse { grid-template-columns: 1fr; }
    .process-step.reverse .process-content, .process-content { padding: 0; text-align: left; }
    .brand-tabs { flex-wrap: wrap; }
    .showcase-grid { grid-template-columns: 1fr; align-items: center; }
    .showcase-image-wrapper { min-height: 200px; }
    .showcase-models { border-left: none; border-top: 1px solid #e0e0e0; padding-top: 2rem; }
    .brand-description-grid { grid-template-columns: 1fr; }
    .brand-description-banner { order: -1; margin-bottom: 2rem; }
    .directory-grid { grid-template-columns: repeat(2, 1fr); }
    .enquiry-grid { grid-template-columns: 1fr; }
    .enquiry-map { margin-top: 2rem; }
}

@media (max-width: 768px) {
   
    .main-header .logo img, .main-header.scrolled .logo img { max-height: 50px; }
    .sub-page main { padding-top: 30px; } 

    h1 { font-size: 2rem; }
    h2, .section-title h2 { font-size: 1.8rem; }

    .stats-grid, .focus-grid, .values-grid, .certifications-grid, .directory-grid {
        grid-template-columns: 1fr; 
    }
    .focus-image { margin-bottom: 2rem; }
    .contact-list li, .social-icons { justify-content: center; }
    .hexagon-card { width: 250px; }
    .hexagon-row { grid-template-columns: repeat(auto-fit, 250px); }
    .career-internship-layout, .career-internship-layout.reverse { flex-direction: column; }


}