/*================================================================
Template Name   : Kurumsal V1
Description     : Kurumsal V" İnternet Sitesi
Author          : BTRyazilim.com
Version         : 1.0
==================================================================*/
.project-detail {
    background: #f8f9fa;
}

.project-main-img img {
    transition: transform 0.4s ease;
}

.project-main-img:hover img {
    transform: scale(1.03);
}

.gallery-thumb {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover .gallery-overlay {
    opacity: 1;
}

.project-info-card {
    border: 1px solid #e9ecef;
}

.info-item i {
    width: 20px;
    text-align: center;
}

.project-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

@media (max-width: 768px) {
    .project-main-img img {
        height: 300px !important;
    }
    .project-info-card {
        position: static !important;
    }
}

/* Banka Kartları */
.service-details-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-details-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.service-details-card .thumbnail {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-details-card .icon {
    height: 60px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.service-details-card .details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banka_bilgi h5 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}
.banka_bilgi .sahip {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 12px;
    font-weight: 500;
}
.banka_bilgi .info-line {
    font-size: 0.92rem;
    margin: 6px 0;
    color: #34495e;
    line-height: 1.5;
}
.banka_bilgi .info-line strong {
    color: #e74c3c;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}
.banka_bilgi .iban {
    font-family: 'Courier New', monospace;
    background: #f1f3f5;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    margin: 8px 0;
    font-weight: 600;
    color: #27ae60;
    border: 1px dashed #ddd;
}

/* Belge Kartları Galeri */
.belge-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 32px;
    padding: 40px 0;
}
.belge-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.11);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    background: #fff;
    height: 100%;
    cursor: pointer;
}
.belge-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

/* RESİM TAM ORTALI VE AYNI BOYUTTA */
.belge-card .image-container {
    width: 250px;
    height: 360px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.belge-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* Kırp ve doldur */
    object-position: center;     /* TAM ORTALA */
    transition: transform 0.6s ease;
}
.belge-card:hover img {
    transform: scale(1.18);
}

/* Overlay */
.belge-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.92));
    color: white;
    padding: 42px 20px 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.45s ease;
}
.belge-card:hover .belge-overlay {
    transform: translateY(0);
    opacity: 1;
}
.belge-overlay h5 {
    margin: 0;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

/* Zoom İkonu */
.belge-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.97);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #2c3e50;
    opacity: 0;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.belge-card:hover .belge-zoom {
    opacity: 1;
    transform: scale(1.2);
}

/* Boş Durum */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    color: #95a5a6;
}
.empty-state i {
    font-size: 5rem;
    margin-bottom: 26px;
    color: #e5e5e5;
}
.empty-state h5 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

/* Başlık */
.section-title-center {
    text-align: center;
    margin-bottom: 55px;
}
.section-title-center .site-title-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #e74c3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 10px;
}
.section-title-center .site-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
}
.section-title-center .site-title span {
    color: #3498db;
}

/* Bayi Kartları */
.bayi-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    padding: 40px 0;
}
.bayi-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.bayi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 20px 20px 0 0;
}
.bayi-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}
.bayi-header {
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px dashed #eee;
}
.bayi-header h5 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}
.bayi-body {
    padding: 20px 24px;
    flex-grow: 1;
}
.bayi-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
.bayi-info i {
    font-size: 1.1rem;
    color: #3498db;
    width: 20px;
    text-align: center;
    margin-top: 2px;
    transition: all 0.3s ease;
}
.bayi-card:hover .bayi-info i {
    color: #e74c3c;
    transform: scale(1.2);
}
.bayi-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.bayi-info a:hover {
    color: #e74c3c;
}
.bayi-info strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Boş Durum */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    color: #95a5a6;
}
.empty-state i {
    font-size: 5rem;
    margin-bottom: 24px;
    color: #e5e5e5;
}
.empty-state h5 {
    font-size: 1.6rem;
    margin-bottom:@media 16px;
    color: #7f8c8d;
    font-weight: 600;
}

/* Başlık */
.section-title-center {
    text-align: center;
    margin-bottom: 55px;
}
.section-title-center .site-title-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #e74c3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 10px;
}
.section-title-center .site-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
}
.section-title-center .site-title span {
    color: #3498db;
}

/* Referanslar Grid */
.partner-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 90px 0;
}
.partner-area .site-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 60px;
    text-align: center;
}
.partner-area .site-title span {
    color: #3498db;
}

/* EŞİT BOYUTLU GRID */
.referans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 32px;
    padding: 0 15px;
    justify-items: center;
    align-items: center;
}

/* EŞİT BOYUTLU KART */
.referans-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    max-width: 220px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.referans-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.06), rgba(231, 76, 60, 0.06));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.referans-card:hover::before {
    opacity: 1;
}
.referans-card:hover {
    transform: translateY(-12px) scale(1.06);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.2);
}

/* RESİM ALANI */
.referans-card .image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    border-radius: 22px;
    overflow: hidden;
}
.referans-card img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
    padding: 20px;
    box-sizing: border-box;
    filter: grayscale(100%) brightness(1.1) contrast(0.9);
    transition: all 0.45s ease;
}
.referans-card:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.08);
}

/* Zoom İkonu */
.referans-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.97);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #2c3e50;
    opacity: 0;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    z-index: 2;
}
.referans-card:hover .referans-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.25);
}

/* Boş Durum */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    color: #95a5a6;
}
.empty-state i {
    font-size: 5.5rem;
    margin-bottom: 28px;
    color: #eaeaea;
}
.empty-state h5 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

/* Modern Referans Detay */
.referans-detay-area { padding: 90px 0; background: #f8f9fa; }
.referans-detay-area .site-title { font-size: 2.6rem; font-weight: 800; color: #2c3e50; margin: 0 0 60px; text-align: center; }
.referans-detay-area .site-title span { color: #3498db; }

/* Sidebar */
.service-sidebar {
    background: #fff; border-radius: 20px; padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); height: fit-content;
    position: sticky; top: 100px;
}
.service-sidebar .title {
    font-size: 1.4rem; font-weight: 700; color: #2c3e50; margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 2px solid #3498db; position: relative;
}
.service-sidebar .title::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 50px; height: 2px; background: #e74c3c;
}

/* Kurumsal Menü */
.category a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; margin-bottom: 8px; border-radius: 12px;
    color: #555; font-weight: 500; text-decoration: none;
    transition: all 0.3s ease;
}
.category a:hover, .category a.active {
    background: #3498db; color: white; transform: translateX(8px);
}
.category a i { font-size: 0.9rem; }

/* İndirilebilir */
.service-download a {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px; margin-bottom: 12px; background: #f1f3f5;
    border-radius: 14px; color: #2c3e50; font-weight: 600;
    text-decoration: none; transition: all 0.35s ease;
}
.service-download a:hover {
    background: #e74c3c; color: white; transform: translateX(6px);
}
.service-download a i { font-size: 1.3rem; color: #e74c3c; }
.service-download a:hover i { color: white; }

/* Ana İçerik */
.service-details {
    background: #fff; border-radius: 20px; padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.service-details img.main-image {
    width: 100%; height: 400px; object-fit: cover; object-position: center;
    border-radius: 16px; margin-bottom: 30px;
}
.service-details h3 {
    font-size: 2.2rem; font-weight: 800; color: #2c3e50; margin-bottom: 20px;
}
.service-details .content {
    font-size: 1.1rem; line-height: 1.8; color: #555;
}
.service-details .content p { margin-bottom: 18px; }

/* Ek Resimler */
.extra-images .col-md-6 { margin-bottom: 20px; }
.extra-images img {
    width: 100%; height: 220px; object-fit: cover; border-radius: 14px;
    transition: all 0.4s ease;
}
.extra-images img:hover {
    transform: scale(1.03); box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.hero-slider-two__item {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    min-height: 600px; /* isteğe göre ayarlayabilirsin */
}

@media (max-width: 768px) {
    .hero-slider-two__item { min-height: 600px; }
}






