        :root {
            --primary-color: #2c3e50; /* Koyu Lacivert */
            --secondary-color: #d35400; /* Turuncu */
            --success-color: #5cb85c; /* Whatsapp Yeşili */
            --light-bg: #f8f9fa;
            --text-dark: #333;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
a
{
    text-decoration: none !important;
	}
        /* 1. Top Bar */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .top-bar a {
            color: white;
            text-decoration: none;
            margin-left: 10px;
            transition: 0.3s;
        }
        .top-bar a:hover {
            color: var(--secondary-color);
        }

        /* 2. Navbar */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            background: white;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            margin-right: 15px;
        }
        .nav-link:hover {
            color: var(--secondary-color);
        }
        .btn-contact-nav {
            background-color: var(--secondary-color);
            color: white;
            border-radius: 5px;
            padding: 8px 20px;
        }
        .btn-contact-nav:hover {
            background-color: #b04600;
            color: white;
        }

        /* 3. Hero / Slider */
        .hero-section {
            background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            height: 600px; /* Çok büyük olmasın dendiği için sınırlandırdık */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-btns .btn {
            padding: 15px 30px;
            font-weight: 600;
            text-transform: uppercase;
            margin: 10px;
            border-radius: 50px;
        }
        .btn-orange {
            background-color: var(--secondary-color);
            color: white;
            border: none;
        }
        .btn-orange:hover {
            background-color: #a04000;
            color: white;
        }
        .btn-green {
            background-color: #4CAF50;
            color: white;
            border: none;
        }
        .btn-green:hover {
            background-color: #45a049;
            color: white;
        }

        /* 4. Hizmet Kutuları */
        .service-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            text-align: center;
            height: 100%;
            border-bottom: 3px solid var(--secondary-color);
        }
        .service-box:hover {
            transform: translateY(-10px);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        /* 5. Hizmet Bölgeleri */
        .area-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: 0.3s;
            background: white;
            margin-bottom: 30px;
        }
        .area-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .area-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .area-body {
            padding: 20px;
        }
        .btn-detail {
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
            width: 100%;
            margin-top: 10px;
        }
        .btn-detail:hover {
            background: var(--primary-color);
            color: white;
        }

        /* 6. Yorumlar (Testimonials) */
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            margin: 10px;
        }
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 15px;
            object-fit: cover;
            border: 3px solid var(--secondary-color);
        }
        .stars { color: #f1c40f; }

        /* 7. İstatistikler */
        .stats-section {
            background: var(--primary-color);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .stat-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
        }

        /* 8. FAQ & 9. Referanslar */
        .accordion-button:not(.collapsed) {
            color: var(--secondary-color);
            background-color: rgba(211, 84, 0, 0.1);
        }
        .partner-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: 0.3s;
            max-height: 60px;
            width: auto;
        }
        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Footer */
        footer {
            background: #1a252f;
            color: #bdc3c7;
            padding: 50px 0 20px;
        }
        footer h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        footer a {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .footer-social a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2rem; }
            .top-bar { text-align: center; }
            .top-bar .socials { margin-top: 5px; justify-content: center; }
        }
	
	

    .sidebar-nav {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }
    
    .sidebar-nav a {
        display: block;
        padding: 15px 20px;
        color: var(--primary-color);
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
    }

    .sidebar-nav a:last-child {
        border-bottom: none;
    }

    .sidebar-nav a:hover {
        background-color: #f1f1f1;
        padding-left: 25px; /* Hoverda sağa kayma efekti */
        color: var(--secondary-color);
    }

    .sidebar-nav a.active {
        background-color: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
    }
    
    .sidebar-nav a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    /* Sağ İçerik Alanı */
    .corporate-content img.featured-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 25px;
    }

    .content-title {
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }

    .content-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background-color: var(--secondary-color);
    }

    .content-text p {
        color: var(--text-color);
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Liste Stili */
    .custom-list li {
        margin-bottom: 10px;
        list-style: none;
        position: relative;
        padding-left: 25px;
    }
    .custom-list li::before {
        content: '\f00c'; /* FontAwesome check ikonu */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--secondary-color);
        position: absolute;
        left: 0;
        top: 2px;
    }
	
	    /* Blog Alanına Özel CSS */
    .blog-section-wrapper {
        padding: 70px 0;
        background-color: #f8f9fa; /* Hafif gri arka plan */
    }

    .blog-card-item {
        background-color: #ffffff;
        border-radius: 15px; /* Daha yumuşak köşeler */
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: none;
    }

    /* Hover efekti: Kart yukarı kalkar */
    .blog-card-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .blog-image-box {
        height: 250px; /* Resim yüksekliği sabit */
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .blog-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    /* Hover efekti: Resim yaklaşır */
    .blog-card-item:hover .blog-image-box img {
        transform: scale(1.1);
    }

    /* Resim üzerine tarih etiketi (Opsiyonel şıklık katar) */
    .blog-date-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: #d35400; /* Turuncu */
        color: white;
        padding: 5px 12px;
        border-radius: 5px;
        font-size: 0.8rem;
        font-weight: bold;
        z-index: 2;
    }

    .blog-content-box {
        padding: 25px 20px;
        flex-grow: 1;
        display: flex;
        align-items: center; /* Başlığı dikey ortalar */
        justify-content: center;
        border-top: 1px solid #f0f0f0;
    }

    .blog-title-text {
        color: #2c3e50; /* Lacivert */
        font-size: 1.25rem;
        font-weight: 700;
        text-align: center;
        margin: 0;
        line-height: 1.4;
        transition: color 0.3s;
        text-decoration: none;
    }
	

    .blog-card-item:hover .blog-title-text {
        color: #d35400; /* Hoverda turuncu olur */
    }
    
    /* Başlık altındaki dekoratif çizgi */
    .blog-title-line {
        width: 40px;
        height: 3px;
        background-color: #d35400;
        margin: 15px auto 0 auto;
        border-radius: 2px;
        transition: width 0.3s;
    }

    .blog-card-item:hover .blog-title-line {
        width: 80px; /* Hoverda çizgi uzar */
    }
	
	
	    /* İletişim Bölümüne Özel CSS */
    .cnt-page-wrapper {
        padding: 60px 0;
        background-color: #f4f6f8; /* Çok açık gri arka plan */
    }

    /* Sol Taraf: İletişim Bilgi Kutuları */
    .cnt-info-card {
        background-color: #ffffff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
        border-left: 4px solid #2c3e50; /* Varsayılan sol çizgi */
    }

    .cnt-info-card:hover {
        transform: translateX(5px);
        border-left-color: #d35400; /* Hoverda turuncu çizgi */
    }

    .cnt-icon-box {
        width: 50px;
        height: 50px;
        background-color: rgba(44, 62, 80, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        color: #2c3e50;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .cnt-info-content h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: #333;
    }

    .cnt-info-content p {
        margin: 0;
        font-size: 0.9rem;
        color: #666;
        line-height: 1.4;
    }

    /* Sağ Taraf: İletişim Formu */
    .cnt-form-container {
        background-color: #ffffff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .cnt-form-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .cnt-input-group {
        margin-bottom: 20px;
    }

    .cnt-input-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        color: #555;
    }

    /* Bootstrap form-control üzerine özel stil */
    .cnt-custom-input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 0.95rem;
        transition: border-color 0.3s;
        background-color: #fdfdfd;
    }

    .cnt-custom-input:focus {
        border-color: #28a745; /* Yeşil odak rengi */
        outline: none;
        box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
    }

    .cnt-submit-btn {
        background-color: #28a745; /* Bootstrap Success Yeşili */
        color: white;
        border: none;
        padding: 15px;
        border-radius: 5px;
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: background-color 0.3s;
        width: 100%; /* Buton uzun olsun */
        cursor: pointer;
    }

    .cnt-submit-btn:hover {
        background-color: #218838;
    }

    /* Harita Alanı */
    .cnt-map-frame {
        width: 100%;
        height: 400px;
        border: 0;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* Alert Kutusu Özelleştirme */
    .cnt-success-alert {
        display: none; /* Varsayılan olarak gizli, JS ile açacaksınız */
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 30px;
        font-weight: 500;
        text-align: center;
    }
    
    .cnt-success-alert.show-message {
        display: block;
    }