﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --primary-blue: #004E89;
    --dark-blue: #002D4D;
    --light-blue: #0077B6;
    --accent-gold: #FFB41F;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e0e0e0;
    --hero-overlay-opacity: 0.5;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 45, 77, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.85;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-image {
    transform: scale(1.05);
}

.logo {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    color: var(--primary-orange);
    font-size: 1.7em;
    font-weight: 300;
    opacity: 0.9;
    border-left: 2px solid var(--primary-orange);
    padding-left: 15px;
    line-height: 1.8;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    /* flex: 1; */
    justify-content: flex-end;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 12px 10px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 45, 77, var(--hero-overlay-opacity)), rgba(0, 78, 137, calc(var(--hero-overlay-opacity) * 0.82)));
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white);
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content .tagline {
    font-size: 2em;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3em;
    font-weight: 300;
    max-width: 800px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Intro Section */
.intro-section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.intro-section h2 {
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.intro-section h2 span {
    color: var(--primary-orange);
}

.intro-section p {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 100px 60px;
    color: var(--white);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item h3 {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-orange);
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.stat-item p {
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Expertise Section */
.expertise-section {
    padding: 120px 60px;
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 80px;
}

.expertise-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.expertise-card {
    background: var(--white);
    padding: 50px 40px;
    transition: all 0.4s ease;
    border-left: 5px solid var(--primary-orange);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 78, 137, 0.15);
    border-left-color: var(--primary-blue);
}

.expertise-icon {
    font-size: 3em;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 1.6em;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.expertise-card h4 {
    font-size: 1.4em;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1em;
}

/* Projects Section */
.projects-section {
    padding: 120px 60px;
    background: var(--white);
}

.projects-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    overflow: hidden;
    position: relative;
}

.project-video {
    padding: 0;
    background: #000;
    height: 280px;
}

.youtube-video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 1.5em;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.project-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 15px;
}

/* Organization Section */
.organization-section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--gray-light);
}

.org-chart {
    margin-top: 60px;
}

.org-level {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.org-box {
    background: var(--white);
    border: 3px solid var(--primary-blue);
    padding: 30px 50px;
    min-width: 280px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.org-box:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 78, 137, 0.3);
}

.org-box h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.org-box:hover h3,
.org-box:hover p {
    color: var(--white);
}

.org-box p {
    font-size: 0.95em;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.org-connector {
    width: 3px;
    height: 40px;
    background: var(--primary-orange);
    margin: 0 auto 20px;
}

/* Leadership Section */
.leadership-section {
    padding: 120px 60px;
    background: var(--white);
}

.leadership-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.leader-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.leader-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5em;
    font-weight: 700;
}

.leader-info {
    padding: 30px 25px;
}

.leader-info h3 {
    font-size: 1.4em;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.leader-info .position {
    color: var(--primary-orange);
    font-size: 1em;
    margin-bottom: 20px;
    font-weight: 500;
}

.leader-info .contact {
    font-size: 0.9em;
    color: var(--text-light);
    margin: 5px 0;
}

/* Values Section */
.values-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.values-section .section-title {
    color: var(--white);
}

.values-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-10px);
}

.value-icon {
    font-size: 4em;
    margin-bottom: 25px;
    color: var(--primary-orange);
}

.value-item h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-item p {
    font-size: 1em;
    line-height: 1.7;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.contact-card {
    border-left: 5px solid var(--primary-orange);
    padding-left: 30px;
    background: var(--gray-light);
    padding: 30px;
    border-radius: 5px;
}

.office-image {
    transition: transform 0.3s ease;
}

.office-image img {
    transition: transform 0.5s ease;
}

.contact-card:hover .office-image img {
    transform: scale(1.05);
}

.contact-card h3 {
    font-size: 1.8em;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 48px 48px 32px;
    text-align: center;
}

.footer-logo-image {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--primary-orange);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 90px);
        background: rgba(0, 45, 77, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 10px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-container {
        padding: 15px 30px;
    }

    .logo-tagline {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .logo-container {
        min-width: auto;
        gap: 10px;
    }

    .logo-image {
        height: 50px;
    }

    .logo-tagline {
        font-size: 1em;
    }
}

/* Certifications Section */
.certifications-section .cert-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.certifications-section .cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 78, 137, 0.2) !important;
}

.certifications-section .cert-card img {
    transition: transform 0.3s ease;
}

.certifications-section .cert-card:hover img {
    transform: scale(1.05);
}

.certifications-section .cert-card h4 {
    transition: color 0.3s ease;
}

.certifications-section .cert-card:hover h4 {
    color: var(--primary-orange);
}

/* Company History Timeline */
.company-history {
    margin-top: 50px;
    padding: 25px 20px 30px 20px;
    background: var(--primary-blue);
    overflow: visible !important;
}

.company-history .timeline-header {
    position: relative;
    text-align: center;
    margin-bottom: 70px;
}

/* Language Switcher Header */
.lang-btn-header {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    padding: 8px 12px;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: auto;
    /* Push to the right */
    margin-right: 20px;
    /* Space before hamburger */
    display: inline-block;
}

.lang-btn-header:hover {
    background: var(--white);
    color: var(--primary-blue);
}

@media (max-width: 1024px) {
    .lang-btn-header {
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .lang-btn-header {
        padding: 6px 10px;
        font-size: 0.85em;
    }
}



.company-history .timeline-title {
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-gold) 50%, var(--primary-orange) 100%);
    color: white;
    padding: 15px 60px;
    font-size: 2.2em;
    font-weight: bold;
    letter-spacing: 2px;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    display: inline-block;
}

.company-history .timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    overflow: visible !important;
}

.company-history .timeline-wrapper {
    position: relative;
    height: 280px;
    overflow: visible !important;
}

.company-history .timeline-line {
    position: absolute;
    left: 40px;
    right: 40px;
    top: 120px;
    height: 3px;
    background: var(--primary-orange);
}

.company-history .timeline-arrow {
    position: absolute;
    right: 20px;
    top: 113px;
    width: 0;
    height: 0;
    border-left: 15px solid var(--accent-gold);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.company-history .timeline-milestone {
    position: absolute;
    top: 120px;
}

.company-history .milestone-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(255, 183, 31, 0.5);
    z-index: 2;
}

.company-history .milestone-content {
    position: absolute;
    width: 160px;
    text-align: center;
    transform: translateX(-50%);
}

.company-history .milestone-content.top {
    left: 0;
    bottom: 20px;
}

.company-history .milestone-content.bottom {
    left: 0;
    top: 20px;
}

.company-history .milestone-year {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.5);
}

.company-history .milestone-year span {
    color: white;
    font-size: 1.65em;
    font-weight: bold;
}

.company-history .milestone-title {
    color: var(--accent-gold);
    font-size: 1.05em;
    margin: 8px 0;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.company-history .milestone-description {
    font-size: 0.95em;
    line-height: 1.3;
    color: white;
    margin: 0;
    opacity: 0.95;
}

.company-history .milestone-today {
    position: absolute;
    right: 0;
    top: 120px;
    transform: translateY(-50%);
}

.company-history .today-badge {
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 12px 24px;
    font-size: 1.4em;
    font-weight: bold;
    clip-path: polygon(10% 0%, 100% 0%, 90% 50%, 100% 100%, 10% 100%, 0% 50%);
    box-shadow: 0 2px 6px rgba(255, 183, 31, 0.5);
    margin-bottom: 10px;
    white-space: nowrap;
}

.company-history .today-badge .year {
    font-size: 1.5em;
}

.company-history .today-badge .label {
    font-size: 0.65em;
    margin-top: 2px;
    letter-spacing: 1px;
}

.company-history .today-info {
    width: 160px;
    text-align: right;
    margin-top: 8px;
}

.company-history .today-title {
    color: var(--accent-gold);
    font-size: 1.05em;
    margin: 4px 0;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.company-history .today-description {
    font-size: 0.95em;
    line-height: 1.3;
    color: white;
    margin: 0;
    opacity: 0.95;
}

/* Responsive adjustments for timeline */
@media (max-width: 1200px) {
    .company-history .timeline-wrapper {
        height: 320px;
    }

    .company-history .milestone-content {
        width: 140px;
    }

    .company-history .milestone-title {
        font-size: 0.95em;
    }

    .company-history .milestone-description {
        font-size: 0.85em;
    }

    .company-history .today-title {
        font-size: 0.95em;
    }

    .company-history .today-description {
        font-size: 0.85em;
    }
}


@media (max-width: 768px) {
    .company-history .timeline-wrapper {
        height: auto;
        min-height: 600px;
    }

    .company-history .timeline-line {
        left: 50%;
        right: auto;
        width: 3px;
        height: 100%;
        top: 0;
        transform: translateX(-50%);
    }

    .company-history .timeline-arrow {
        display: none;
    }

    .company-history .timeline-milestone {
        position: relative;
        left: 0 !important;
        top: auto !important;
        margin-bottom: 40px;
    }

    .company-history .milestone-dot {
        left: 50%;
    }

    .company-history .milestone-content {
        position: relative;
        left: 0 !important;
        bottom: auto !important;
        top: auto !important;
        transform: none;
        width: 100%;
        padding-top: 20px;
    }

    .company-history .milestone-today {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }
}

/* Language Switcher */
.nav-menu .lang-btn {
    display: inline-block;
    cursor: pointer;
    background: var(--primary-orange);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white !important;
    /* Force white color */
    text-decoration: none;
    min-width: 40px;
    text-align: center;
}

.nav-menu .lang-btn:hover {
    background: #e05e2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}