/* ================================================================
   1. GENEL AYARLAR VE EKRAN KİLİDİ
   ================================================================ */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

:root {
    --ana-renk: #00468b;
    --vurgu-renk: #ffcc00;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* ================================================================
   2. SLIDER (KAHRAMAN) BÖLÜMÜ - TAŞMA ENGELLİ VE BULANIK FONLU
   ================================================================ */
#heroSlider {
    width: 100%;
    height: 550px !important;
    overflow: hidden;
    position: relative;
    background: #000;
}

.slider-outer-container {
    width: 100%;
    height: 550px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Arkadaki Bulanık Katman */
.slider-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.4);
    transform: scale(1.1);
    z-index: 1;
}

/* Öndeki Net Orijinal Resim */
.slider-main-img {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.carousel-inner, .carousel-item {
    height: 550px !important;
}

/* ================================================================
   3. SOL ÜST TABELA (KART)
   ================================================================ */
.custom-caption-fixed {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1050;
    width: auto;
}

.caption-content {
    display: inline-block;
    background: rgba(0, 70, 139, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-left: 8px solid var(--vurgu-renk);
    border-radius: 0 0 40px 0;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

.caption-content h2 { font-size: 1.8rem; color: #fff; margin: 0; font-weight: 800; }
.tel-link-large { font-size: 1.6rem; font-weight: 800; color: var(--vurgu-renk) !important; text-decoration: none !important; display: block; margin-top: 5px; }

/* ================================================================
   4. HİZMET KUTULARI
   ================================================================ */
.service-box {
    transition: all 0.3s ease;
    border-radius: 12px;
}
.service-box:hover {
    border-color: var(--vurgu-renk) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ================================================================
   5. WHATSAPP BUTONU - SOL ALTA ÇEKİLDİ
   ================================================================ */
.whatsapp-button-main {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important; /* SAĞDAN SOLA ALINDI */
    background-color: #25D366 !important;
    color: white !important;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999999;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button-main:hover {
    transform: scale(1.05) translateY(-5px);
    background-color: #128c7e !important;
    color: white !important;
}

.whatsapp-button-main i {
    font-size: 28px !important;
    line-height: 1;
}

.wa-text {
    font-weight: 600;
}

/* ================================================================
   6. MOBİL UYUMLULUK (RESPONSIVE)
   ================================================================ */
@media (max-width: 768px) {
    #heroSlider, .slider-outer-container, .slider-main-img, .carousel-inner, .carousel-item {
        height: 350px !important;
    }
    .caption-content { padding: 15px; border-radius: 0 0 30px 0; }
    .caption-content h2 { font-size: 1.2rem; }
    .tel-link-large { font-size: 1.1rem; }
    
    .whatsapp-button-main {
        left: 15px !important;
        bottom: 15px !important;
        padding: 10px;
    }
    .wa-text { display: none; } /* Mobilde sadece ikon kalsın */
}/* SAĞ TARAF HİZMET LİSTESİ TASARIMI */
/* SAĞ TARAF HİZMET LİSTESİ - YENİ VE GÖZE HİTAP EDEN TASARIM */
/* SAĞ TARAF HİZMET LİSTESİ - ZARİF VE DERLİ TOPLU TASARIM */
/* SAĞ TARAF HİZMET LİSTESİ - BEYAZ VE SADE TASARIM */
/* SAĞ TARAF HİZMET LİSTESİ - KURUMSAL MAVİ & TEMİZ BEYAZ */
.slider-services-right {
    position: absolute;
    right: 30px; 
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    width: 300px;
}

.services-list-wrapper {
    /* Arka planı senin ana mavi tonuna (lacivert) çektik */
    background: rgba(0, 70, 139, 0.8) !important; 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 20px;
    /* İnce bir sarı çerçeve maviyi çok iyi patlatır */
    border: 1px solid rgba(255, 204, 0, 0.4); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.services-list-wrapper h5 {
    color: #ffffff !important; /* BEYAZ BAŞLIK */
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    border-bottom: 2px solid #ffcc00; /* Alt çizgi senin sarın */
    padding-bottom: 12px;
    margin-bottom: 15px !important;
    text-transform: uppercase;
}

.services-list-wrapper ul li {
    color: #ffffff !important; /* BEYAZ YAZILAR */
    font-size: 1rem;
    font-weight: 600;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-list-wrapper ul li i {
    color: #ffcc00 !important; /* İKONLAR SARI (Mavi üzerinde çok net görünür) */
    font-size: 1.2rem;
}

.services-list-wrapper ul li:last-child {
    border-bottom: none;
}

/* Üzerine gelince parlasın */
.services-list-wrapper ul li:hover {
    color: #ffcc00 !important;
    transform: translateX(8px);
    transition: 0.3s all ease;
}

/* Mobilde slider çok daralacağı için bu listeyi gizliyoruz (zaten altta var) */
@media (max-width: 992px) {
    .slider-services-right {
        display: none !important;
    }
}/* SAĞ-SOL OK BUTONLARININ YERİ VE GÖRÜNÜRLÜĞÜ */
.carousel-control-prev {
    left: 350px !important; /* Bu rakamı artırırsan ok sağa (içeri) kayar */
    z-index: 1100 !important;
    width: auto !important; /* Genişliği serbest bırakalım */
}
.carousel-control-next {
   right: 350px !important; /* Bu rakamı artırırsan ok sola (içeri) kayar */
    z-index: 1100 !important;
    width: auto !important;            /* Görünürlük seviyesi */
}

/* VİDEO ÖNİZLEME KARTLARI */
.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    aspect-ratio: 9/16;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.video-overlay i {
    font-size: 3rem;
    color: #ffcc00;
}

.video-overlay span {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
}

.video-card:hover video {
    opacity: 1;
    transform: scale(1.05);
}
video.work-video {
    z-index: 10 !important;
    position: relative !important;
}
<body class="bg-corporate-dark text-white">

<div class="bg-gradient-overlay"></div>

<div class="back-nav">
    <a href="index.php" class="btn btn-warning rounded-pill shadow-lg fw-bold px-4">
        <i class="bi bi-house-door-fill me-1"></i> ANA SAYFA
    </a>
</div>

<div class="container py-5 mt-4 position-relative">
    <div class="text-center mb-5">
        <h1 class="fw-bold text-warning mt-3 display-4">HİZMET GALERİMİZ</h1>
        <p class="text-light-50 text-uppercase small" style="letter-spacing: 3px;">Güvenin ve Kalitenin Görüntüleri</p>
        <div class="mx-auto bg-warning" style="height: 4px; width: 60px; border-radius: 2px;"></div>
    </div>
    ```

---

### 2. `assets/css/style.css` (Arka Plan ve Kart Revizesi)

CSS dosendaki o füme etkisini silip yerine şunları ekle:

```css
/* FÜME RENGİNİ ÖLDÜREN KURUMSAL DERİNLİK */
.bg-corporate-dark {
    /* Füme yerine zengin bir koyu lacivert degrade */
    background: radial-gradient(circle at center, #001d3d 0%, #000814 100%) !important;
    min-height: 100vh;
    color: #fff;
}

/* Sayfaya hafif bir doku katmak istersen */
.bg-gradient-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

/* VİDEO KARTLARININ ALTINDAKİ GRİLİĞİ KALDIR */
.video-wrapper {
    background: rgba(255, 255, 255, 0.03) !important; /* Füme yerine çok hafif şeffaf beyaz */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 204, 0, 0.15) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-wrapper:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #ffcc00 !important;
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.15) !important;
}

/* Başlık ve Metin Renklerini Canlandır */
.text-light-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}