﻿

/* Header */
/*header {
    background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}*/

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    /*.logo img {
        height: 60px;
        width: auto;
    }*/

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #00ffcc;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #66d9ff;
    letter-spacing: 3px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #00ffcc;
    }

    .page-header p {
        font-size: 1.3rem;
        color: #66d9ff;
        max-width: 800px;
        margin: 0 auto;
    }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Vision, Mission & Values */
.vmv-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0a1f2e;
    margin-bottom: 3rem;
}

    .section-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #00ffcc, #66d9ff);
        margin: 1rem auto 0;
    }

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vmv-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

    .vmv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #00ffcc, #66d9ff);
    }

    .vmv-card:hover {
        transform: translateY(-10px);
    }

.vmv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.vmv-card h3 {
    font-size: 1.8rem;
    color: #0a1f2e;
    margin-bottom: 1rem;
}

.vmv-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.2rem;
}
/* Company Introduction */
.intro-section {
    padding: 5rem 2rem;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #0a1f2e;
    margin-bottom: 1.5rem;
}

    .intro-text h2::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #00ffcc, #66d9ff);
        margin-top: 1rem;
    }

.intro-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image {
    position: relative;
}

.intro-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid #00ffcc;
    border-radius: 15px;
    z-index: -1;
}

/* Values List */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
}

    .value-item:hover {
        box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
    }

.value-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.value-content h4 {
    color: #0a1f2e;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.value-content p {
    color: #555;
    font-size: 1.1rem;
}
/* Why XZiLOR Section */
.why-xzilor-section {
    padding: 5rem 2rem;
    background: white;
}

.why-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .why-header h2 {
        font-size: 2.5rem;
        color: #0a1f2e;
        margin-bottom: 1rem;
    }

        .why-header h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00ffcc, #66d9ff);
            margin: 1rem auto 0;
        }

.why-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-top: 1.5rem;
}

.why-features {
    margin-bottom: 4rem;
}

.why-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.feature-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.8rem;
    color: #0a1f2e;
    margin-bottom: 0.8rem;
}

.feature-content p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
}

.why-conclusion {
    margin-top: 4rem;
}

.conclusion-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid #00ffcc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.conclusion-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.conclusion-text h3 {
    font-size: 2rem;
    color: #0a1f2e;
    margin-bottom: 1rem;
}

.conclusion-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.conclusion-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    color: #0a1f2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

    .conclusion-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
    }
/* Leadership Team */
.team-section {
    padding: 5rem 2rem;
    background: white;
}

.team-grid {
    display: flex;
    /* display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    transition: transform 0.3s;
}

    .team-member:hover {
        transform: translateY(-10px);
    }

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #0a1f2e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-info h3 {
    font-size: 1.6rem;
    color: #0a1f2e;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #00ffcc;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: #555;
    line-height: 1.6;
    font-size: 1.2rem;
}
/* Our Differentiation Section */
.differentiation-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
    color: white;
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #66d9ff;
    line-height: 1.8;
}

.differentiation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.diff-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 204, 0.3);
    transition: all 0.3s;
}

    .diff-card:hover {
        transform: translateY(-10px);
        border-color: #00ffcc;
        background: rgba(255, 255, 255, 0.1);
    }

.diff-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.diff-card h3 {
    font-size: 1.8rem;
    color: #00ffcc;
    margin-bottom: 1rem;
}

.diff-card p {
    color: #66d9ff;
    line-height: 1.8;
    font-size: 1.2rem;
}
/* Achievements & Milestones */
.achievements-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
    color: white;
}

    .achievements-section .section-title {
        color: #00ffcc;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 204, 0.3);
    transition: transform 0.3s;
}

    .stat-box:hover {
        transform: translateY(-10px);
        border-color: #00ffcc;
    }

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #00ffcc;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #66d9ff;
    font-size: 1.3rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #00ffcc, #66d9ff);
    }

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 204, 0.3);
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    color: #0a1f2e;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
}

.timeline-content h3 {
    color: #00ffcc;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.timeline-content p {
    color: #66d9ff;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        color: #0a1f2e;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 2rem;
    }

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    color: #0a1f2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
    }

/* Footer */
footer {
    background: #0a1f2e;
    color: white;
    padding: 2rem;
    /*text-align: center;*/
}

.footer-content p {
    color: #66d9ff;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .container {
        padding: 0 0rem;
    }

    .intro-image::before {
        display: none;
    }

    .vmv-grid,
    .values-list {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }

    .timeline-content {
        width: 100%;
        padding: 3rem;
    }

    .timeline-year {
        left: 30px;
        transform: none;
    }

    .team-grid {
        justify-content: center;
        /*grid-template-columns: 1fr;*/
        flex-wrap: wrap;
    }

    .logo-name {
        font-size: 1.5rem;
    }
}
