.position-relative {
    position: relative;
}

.video-overlay-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: white;
    text-align: center;
    width: 80%;
    text-shadow: 2px 2px 8px #000, 0 0 20px #000, 0 0 40px #000;
}

.video-overlay-text h2 {
    font-size: 2.8rem;
    font-weight: bold;
}

.video-overlay-text p {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.video-cards {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    width: 90vw;
    max-width: 1000px;
}

.video-card {
    
    color: #23243a;
    width: 280px;
    height: 180px;
    min-width: 200px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 32px rgba(241, 19, 19, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    overflow: hidden;
    border-radius: 30px;
    margin: 0 auto;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.video-card h5 {
    font-size: 2.1rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    color: #23243a;
    
    
}

.w-100 {
    max-height: 80vh;
    object-fit: cover;
}
.video-overlay-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Daha az saydam, daha koyu */
    z-index: 2; /* video'dan büyük, metinden küçük olmalı */
    pointer-events: none; /* tıklamaları engellemesin */
}

/* Global Styles */
:root {
    --primary-color: #23243a;
    --secondary-color: #23243a;
    --dark-color: #2c3e50;
    --light-color: #f5f6fa;
    --text-color: #333;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Why PwC Section */
.why-pwc-section {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 200;
}

.section-header .tagline {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.content-block {
    margin-bottom: 30px;
}

.content-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #23243a, transparent);
    margin: 20px 0;
}

/* Values Section */
.values-section {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
}

.values-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 4%;
    justify-content: flex-start;
}

.value-item {
    flex: 0 1 48%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    padding: 24px 18px;
    box-sizing: border-box;
    min-width: 260px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    z-index: 2;
}

.value-item i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    color: #444;
}

/* Responsive Design */
@media (max-width: 992px) {
    .video-overlay-text {
        width: 95%;
        max-width: 95vw;
        padding: 0 10px;
    }
    .video-overlay-text h2 {
        font-size: 2rem;
    }
    .video-overlay-text p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    .video-cards {
        gap: 20px;
        width: 98vw;
        max-width: 98vw;
        justify-content: center;
        align-items: center;
    }
    .video-card {
        width: 180px;
        min-width: 140px;
        height: 140px;
        min-height: 140px;
        font-size: 1rem;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .video-overlay-text {
        width: 99%;
        max-width: 99vw;
        padding: 0 5px;
    }
    .video-overlay-text h2 {
        font-size: 1.3rem;
    }
    .video-overlay-text p {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    .video-cards {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        top: 60%;
        width: 100vw;
        max-width: 100vw;
    }
    .video-card {
        width: 90vw;
        min-width: 0;
        height: 80px;
        min-height: 80px;
        font-size: 0.95rem;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .video-overlay-text {
        width: 100vw;
        max-width: 100vw;
        padding: 0 2px;
    }
    .video-overlay-text h2 {
        font-size: 1.05rem;
    }
    .video-overlay-text p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    .video-cards {
        top: 55%;
        gap: 10px;
    }
    .video-card {
        width: 98vw;
        height: 60px;
        font-size: 0.85rem;
        padding: 8px 2px;
    }
}