﻿
.haberler a {
    display: contents;
}



.egitimler a {
    display: contents;
}


/* --- RENK VE TİPOGRAFİ AYARLARI --- */
:root {
    --brand-blue: #346ab3 !important; /* Ana Kurumsal Renk */
    --brand-red: #db4648 !important; /* Aksiyon Rengi */
    --brand-dark: #1b2a4e !important; /* Koyu Lacivert (Metinler için) */
    --bg-light: #f4f6f9 !important;
    --white: #ffffff !important;
}

body {
    color: #505050;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--brand-blue) !important;
    letter-spacing: 0.5px;
}

/* --- UTIL CLASSES --- */
.bg-brand-blue {
    background-color: var(--brand-blue) !important;
    color: white;
}

.bg-brand-dark {
    background-color: var(--brand-dark) !important;
    color: white;
}

.text-brand-red {
    color: var(--brand-red) !important;
}

.text-brand-blue {
    color: var(--brand-blue) !important;
}

.text-brand-dark {
    color: var(--brand-dark) !important;
}

.section-padding {
    padding: 50px 0;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .section-header .line {
        width: 80px;
        height: 4px;
        background: var(--brand-red) !important;
        margin: 0 auto 20px;
        display: block;
    }

    .section-header p {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto;
        color: #777 !important;
    }

/* --- TOP BAR --- */
.top-header {
    background-color: var(--brand-dark);
    color: #ffffff !important;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
    transform: translateY(0px);
    opacity: 1;
}

    .top-header i {
        color: var(--brand-red) !important;
        margin-right: 5px;
    }

    .top-header a {
        color: #ffffff;
        transition: 0.3s;
        /* margin-left: 15px;*/
    }

        .top-header a:hover {
            color: white;
        }

/* --- NAVBAR --- */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 0px 0;
}
/* Logo alanı için güncelleme */
.navbar-brand img {
    max-height: 80px;
    width: auto;
}

.nav-link {
    font-weight: 600;
    color: var(--brand-dark) !important;
    padding: 10px 15px !important;
    font-size: 0.85rem;
    transition: 0.3s;
}

    .nav-link:hover {
        color: var(--brand-red) !important;
    }

.btn-nav-appointment {
    background: var(--brand-red);
    color: white;
    border-radius: 0;
    /* padding: 10px 25px;*/
    font-weight: bold;
    letter-spacing: 1px;
    /*  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;*/
    transform: translateY(0);
}

    .btn-nav-appointment:hover {
        background: var(--brand-dark) !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    }

/* --- HERO SLIDER --- */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=80&w=1920') center/cover fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 106, 179, 0.9) 0%, rgba(27, 42, 78, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

    .hero-content h1 {
        color: white !important;
        font-size: 4rem;
        line-height: 1.1;
        margin-bottom: 20px;
        text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .hero-content p {
        font-size: 1.4rem;
        font-weight: 300;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 800px;
    }

.hero-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-hero-red {
    background: var(--brand-red);
    color: white !important;
}

    .btn-hero-red:hover {
        background: white;
        color: var(--brand-red) !important;
    }

.btn-hero-white {
    background: white;
    color: var(--brand-blue) !important;
}

    .btn-hero-white:hover {
        background: var(--brand-dark);
        color: white !important;
    }

/* --- INFO STRIP (OVERLAP) --- */
.info-strip {
    position: relative;
    margin-top: -55px;
    z-index: 10;
    margin-bottom: 60px;
}



.info-box {
    background: white;
    padding: 30px;
    height: 100%;
    border-bottom: 5px solid var(--brand-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .info-box:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--brand-red);
    }

    .info-box i {
        font-size: 3rem;
        color: var(--brand-blue);
        margin-bottom: 20px;
    }

    .info-box h5 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .info-box p {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 0;
    }

    .info-box img {
        max-height: 80px !important;
        display: block; /* Resmi block element yapıyoruz */
        margin: 0 auto 20px auto; /* Sağdan ve soldan otomatik boşluk ile ortalıyoruz, alttan 20px boşluk bırakıyoruz */
    }


.bilimselyontem img {
    max-height: 80px !important;
    display: block; /* Resmi block element yapıyoruz */
    margin: 0 auto 20px auto; /* Sağdan ve soldan otomatik boşluk ile ortalıyoruz, alttan 20px boşluk bırakıyoruz */
}


/* --- DETAILED CONTENT BLOCKS --- */
.content-block img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: start;
}

.check-list i {
    color: var(--brand-red);
    margin-top: 5px;
    margin-right: 10px;
}

/* --- METHODOLOGY CARDS --- */
.method-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    border-left: 4px solid var(--brand-blue);
    transition: 0.3s;
    height: 100%;
}

    .method-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        border-left-color: var(--brand-red);
    }

/* --- SERVICES GRID --- */
.service-item {
    background: white;
    border: 1px solid #eee;
    padding: 0;
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .service-item:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: var(--brand-blue);
    }

.service-img {
    height: 200px;
    overflow: hidden;
}

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.service-item:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-blue);
    color: white;
    position: absolute;
    top: 170px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    border: 4px solid white;
}

.service-item:hover .service-icon {
    background: var(--brand-red);
}

/* --- TEAM MEMBERS --- */
.team-member {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    margin-bottom: 30px;
    border-bottom: 3px solid transparent;
}

    .team-member:hover {
        transform: translateY(-10px);
        border-bottom: 3px solid var(--brand-red);
    }

.team-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

    .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-info {
    padding: 20px;
    text-align: center;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(27, 42, 78, 0.9);
    padding: 10px 0;
    transition: 0.4s;
    text-align: center;
}

.team-member:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    margin: 0 10px;
}

/* --- FACILITIES (TABS) --- */
.nav-tabs .nav-link {
    border: none;
    background: #eee;
    color: #555;
    margin-right: 5px;
    font-weight: 600;
    padding: 15px 25px;
}

    .nav-tabs .nav-link.active {
        background: var(--brand-blue);
        color: white !important;
    }

.tab-content {
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    padding: 30px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

    .testimonial-card i {
        font-size: 40px;
        color: #eee;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 0;
    }

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #555;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 15px;
    overflow: hidden;
}

    .client-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* --- STATS BAR (MAVİ ZEMİN ÜZERİNE BEYAZ YAZI) --- */
.stats-area {
    background-color: var(--brand-blue);
    color: white;
    background-image: linear-gradient(rgba(52, 106, 179, 0.9), rgba(52, 106, 179, 0.9)), url('/base/sys_img/statik/sayac.jpg');
    background-attachment: fixed;
}

.stat-item h3 {
    color: white !important;
    font-size: 3.5rem;
    margin-bottom: 0;
}

.stat-item span {
    font-size: 1.2rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* --- BLOG CARDS --- */
.blog-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.blog-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-red);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 3px;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--brand-dark);
    font-weight: 700;
}

/* --- FOOTER --- */
footer {
    background: #151b25;
    color: #889bb4;
    padding-top: 40px;
    border-top: 5px solid var(--brand-red);
}

    footer h4 {
        color: white !important;
        margin-bottom: 25px;
        font-size: 1.4rem;
    }

    footer ul {
        padding: 0;
        list-style: none;
    }

        footer ul li {
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 10px;
        }

    footer a {
        color: #889bb4 !important;
        text-decoration: none;
        transition: 0.3s;
        display: block;
    }

        footer a:hover {
            color: var(--brand-red) !important;
            padding-left: 5px;
        }

.footer-bottom {
    background: #0e1218;
    padding-bottom: 12px;
    margin-top: 10px;
}

/* --- WHATSAPP & FORM --- */
.form-control {
    height: 50px;
    background: #f9f9f9;
    border: 1px solid #eee;
}

    .form-control:focus {
        border-color: var(--brand-blue);
        box-shadow: none;
        background: white;
    }

.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white !important;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: var(--brand-blue);
    color: white !important;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

    .scroll-to-top.show {
        opacity: 1;
        visibility: visible;
    }

/* --- MOBİL MENÜ İYİLEŞTİRMELERİ --- */
@media (max-width: 991.98px) {

    .navbar-collapse {
        background-color: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid #eee;
        font-size: 1.2rem;
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .btn-nav-appointment {
        width: calc(100% - 40px);
        margin: 15px 20px !important;
        text-align: center;
    }

    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100%;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-item {
        padding: 10px 30px;
        background-color: var(--bg-light);
        border-top: 1px solid #eee;
    }

        .dropdown-item:hover {
            background-color: #e0e0e0;
        }
}

.whatsapp-fixed:hover,
.scroll-to-top:hover {
    text-decoration: none;
}

/* --- PAGE HEADINGS --- */
.page-heading {
    position: relative;
    padding: 30px 0; /* Significantly reduced padding */
    background: var(--brand-dark); /* Solid dark background */
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-title {
    font-size: 2rem; /* Further reduced font size */
    margin-bottom: 0;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: none; /* Removed text shadow */
    animation: none; /* Removed animation */
}

/* Ensure breadcrumbs remain hidden */
.page-heading .breadcrumb,
.page-heading .breadcrumb-item a,
.page-heading .breadcrumb-item a:hover,
.page-heading .breadcrumb-item.active {
    display: none;
}

/* Remove the keyframes if not used elsewhere */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- ABOUT HERO SECTION --- */
.about-hero {
    padding: 80px 0;
}

    .about-hero h1 {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .about-hero .lead {
        font-size: 1.15rem;
        color: #666;
    }

/* --- ICON BOXES (Used in Kurumsal Değerlerimiz) --- */
.icon-box {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .icon-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

    .icon-box i {
        font-size: 3.5rem;
        color: var(--brand-red);
        margin-bottom: 20px;
    }

    .icon-box h3 {
        font-size: 1.6rem;
        color: var(--brand-blue);
        margin-bottom: 15px;
    }

    .icon-box p {
        font-size: 0.95rem;
        color: #777;
    }

/* --- GENERAL BUTTONS --- */
.btn-brand-blue {
    background-color: var(--brand-blue);
    color: white !important;
    border: none;
    transition: all 0.3s ease;
}

    .btn-brand-blue:hover {
        background-color: var(--brand-dark);
        color: white;
        transform: translateY(-2px);
    }

.btn-brand-red {
    background-color: var(--brand-red);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

    .btn-brand-red:hover {
        background-color: var(--brand-dark);
        color: white;
        transform: translateY(-2px);
    }





/*YAŞAM ALANLARI*/

.kurumsal-detay-section {
    padding: 20px 0;
    background: #ffffff;
}

.content-wrapper {
    width: 100%;
    margin: 0;
}

.yasam-tab-nav {
    border: none;
}

    .yasam-tab-nav .nav-link {
        color: #444;
        font-weight: 600;
        border: 1px solid #eee !important;
        margin-bottom: 8px;
        border-radius: 5px !important;
        padding: 12px 15px;
        transition: all 0.3s ease;
    }

        .yasam-tab-nav .nav-link i {
            color: #db4648;
            font-size: 0.8rem;
        }

        .yasam-tab-nav .nav-link.active {
            background-color: #366db4 !important;
            color: #fff !important;
            border-color: #366db4 !important;
        }

            .yasam-tab-nav .nav-link.active i {
                color: #fff;
            }

.yasam-resim-wrapper {
    position: relative;
}

    .yasam-resim-wrapper img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-bottom: 5px solid #db4648;
    }

.yasam-alt-bilgi {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(54, 109, 180, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    max-width: 80%;
}












/* =========================================
   MOBİL İYİLEŞTİRMELERİ (Sadece 991px ve altı)
   ========================================= */
@media (max-width: 991px) {

    /* 1. HERO ALANI MOBİL AYARLARI */
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 120px 0 60px 0;
        background-attachment: scroll;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-content .btn {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
        display: block;
    }


    .info-strip {
        margin-top: 0;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .info-box {
        margin-bottom: 15px;
        text-align: center;
    }


    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }


    .content-block {
        text-align: center;
    }

    .check-list {
        text-align: left;
        display: inline-block;
    }

    .yasam-resim-wrapper img {
        height: 250px;
    }

    .yasam-alt-bilgi {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        background: var(--brand-blue);
        border-radius: 0 0 8px 8px;
        margin-top: -5px;
    }


    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item span {
        font-size: 0.9rem;
    }


    .section-padding {
        padding: 40px 0;
    }


    footer {
        text-align: center;
    }

        footer .col-lg-4, footer .col-lg-2, footer .col-lg-3 {
            margin-bottom: 30px;
        }
}


@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .stat-item {
        margin-bottom: 30px;
    }
}
