/* ===== VARIABLES ===== */
:root {
    --primary-color: #105da3;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HERO SECTION ===== */
.hero-section {

    background-color: none;

    background: linear-gradient(135deg, rgba(16, 93, 163, 0.95), rgba(16, 93, 163, 0.85)),
        url('https://t4.ftcdn.net/jpg/01/76/34/31/360_F_176343126_7qRCWukm30mpf7xwLErxuGluN5Vy0B7x.jpg') center center/cover no-repeat;

    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 109.4px;

}



.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}



.value-row {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.value-row:last-child {
    margin-bottom: 0;
}

.value-item {
    flex: 1;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1;
    opacity: 0.8;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
    background-color: var(--nebular-cross);
    padding: 20px;
    color: white;
}

.value-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify;
    padding: 20px;
    padding-top: 0;
    margin-top: 0;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-align: center;
    display: inline-block;
}

.stat-symbol {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-left: 0;
    vertical-align: baseline;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
    line-height: 1.4;
    margin-top: 8px;
}

/* ===== EXCELLENCE SECTION ===== */
.excellence-section {
    padding: 20px 0;
    background-color: var(--bg-light);
    /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); */
    position: relative;
}

.excellence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,2 47,13.4 47,36.6 25,48 3,36.6 3,13.4" fill="none" stroke="rgba(16,93,163,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>'); */
}

.section-badge {
    display: inline-block;
    background: var(--nebular-cross);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.excellence-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.excellence-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.primary-card {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
    color: white;
    grid-column: span 2;
}



.card-title {
    padding: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: white;
    background-color: var(--nebular-cross);
}

.card-description {
    color: black;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.commitment-metrics {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.primary-card .metric-number {
    color: #fbbf24;
}

.metric-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.primary-card .metric-label {
    color: rgba(255, 255, 255, 0.8);
}

.quality-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.pillar {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 147px;
    /* border-left: 4px solid var(--primary-color); */
}

.pillar:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
}

.pillar-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.pillar-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: justify;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.feature {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 147px;
    /* border-left: 4px solid var(--accent-color); */
}

.feature:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: justify;
}

.innovation-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.highlight-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }


    .value-row {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
    }


    .stats-container {
        flex-direction: column;
        gap: 32px;
    }

    .stat-item {
        flex: none;
    }

    .stat-number {
        font-size: 2.5rem;
        display: inline-block;
    }

    .stat-symbol {
        font-size: 2.5rem;
        margin-left: 0;
        vertical-align: baseline;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .primary-card {
        grid-column: 1;
    }

    .commitment-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .quality-pillars {
        flex-direction: column;
        gap: 16px;
    }


    .delivery-features {
        flex-direction: column;
        gap: 16px;
    }


    .innovation-highlights {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
        display: inline-block;
    }

    .stat-symbol {
        font-size: 2rem;
        margin-left: 0;
        vertical-align: baseline;
    }

}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-item,
.excellence-card {
    animation: fadeInUp 0.6s ease-out;
}

.value-item:nth-child(1) {
    animation-delay: 0.1s;
}

.value-item:nth-child(2) {
    animation-delay: 0.2s;
}

.value-item:nth-child(3) {
    animation-delay: 0.3s;
}

.value-item:nth-child(4) {
    animation-delay: 0.4s;
}

.excellence-card:nth-child(1) {
    animation-delay: 0.1s;
}

.excellence-card:nth-child(2) {
    animation-delay: 0.2s;
}

.excellence-card:nth-child(3) {
    animation-delay: 0.3s;
}

.excellence-card:nth-child(4) {
    animation-delay: 0.4s;
}