/*
Theme Name: Kerim Samet Kılıç Teması
Author: Samet
Description: Özel HTML'den dönüştürülmüş WordPress teması.
Version: 1.0
*/

/* --- DİKKAT: BURADAN AŞAĞIYA KENDİ style.css KODLARININ TAMAMINI YAPIŞTIR --- */
/* (Senin orijinal style.css dosyanın içindeki her şeyi kopyala ve bu satırın altına yapıştır) */

:root {
    --primary-color: #f59205;
    --dark-bg: #146eb4;
    --light-bg: #FAF3E1;
    --text-dark: #29313d;
    --text-gray: #f59205;
    --white: #F5E7C6;
    --border-radius: 12px;
    --container-width: 1200px;
}
 
        :root {
            --primary-color: #f59205;
            --dark-bg: #146eb4;
            --light-bg: #FAF3E1;
            --text-dark: #29313d;
            --text-gray: #f59205;
            --white: #F5E7C6;
            --border-radius: 12px;
            --container-width: 1200px;
        }


        .fa-brands{
            color: var(--primary-color);
            font-size: 20px;
            gap: 10px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
            border: 2px solid var(--primary-color);
        }

        .btn-primary:hover {
            background-color: #0044cc;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--text-dark);
            border: 1px solid #e5e7eb;
        }

        .btn-outline:hover {
            border-color: var(--text-dark);
        }

        .btn-block {
            display: block;
            width: 100%;
            border-radius: 8px;
        }

        .badge {
            background-color: #eff6ff;
            color: var(--primary-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        
        header {
            padding: 20px 0;
            position: sticky;
            top: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #f3f4f6;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 700;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-gray);
        }

        .nav-links a:hover { 
            color: var(--primary-color); 
        }

       
        .hero {
            padding: 80px 0;
            background: linear-gradient(to bottom, #faf3e1, #fff);
        }

        .hero-content-1{
            display: flex;
            flex-direction: column;
            justify-content: center;
        }


        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 20px;
            color: #111;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-proof {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        
        .avatars img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid #fff;
            margin-left: -10px;
        }
        .avatars img:first-child { margin-left: 0; }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .testimonial-card-float {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(5px);
        }

        
        .stats {
            padding: 40px 0;
            background: #fff;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            justify-items: center;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .stat-icon {
            color: #d1d5db;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .stat-number { 
            font-size: 1.8rem; 
            font-weight: 800; 
            color: #29313d; 
        }

        .stat-label { 
            font-size: 0.9rem; 
            color: var(--text-gray); 
        }

       
        .process {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .process-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .step-card {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            transition: transform 0.2s;
        }

        .step-card:hover { 
            transform: translateY(-3px); 
        }

        .step-icon {
            background: #eff6ff;
            color: var(--primary-color);
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        
        .services {
            padding: 80px 0; 
        }

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

        .section-header h2 { 
            font-size: 2.2rem; 
            margin-bottom: 10px; 
        }

        .section-header p { 
            color: var(--text-gray); 
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: #28323e;
            border: 1px solid #28323e;
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s;
            position: relative;
        }

        .service-card:hover {
            box-shadow: 0 20px 30px rgba(0,0,0,0.05);
            border-color: transparent;
        }

        .service-card.highlight {
            background-color: #28323e; 
            border: none;
        }

        .popular-tag {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--primary-color);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .service-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
            background-color: #ddd; 
        }

        .service-features li {
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .service-features i { 
            color: #10b981;  
        }

      
        .testimonials { 
            padding: 80px 0; 
            background: var(--light-bg); 
        }

        .testimonial-header {
            font-size: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }

        .slider-nav button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #d1d5db;
            background: #fff;
            cursor: pointer;
            transition: 0.2s;
        }

        .slider-nav button:hover { 
            background: var(--primary-color); 
            color: #fff; 
            border-color: var(--primary-color); 
        }


        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: #fff;
            padding: 30px;
            border-radius: 16px;
        }

        .stars { 
            color: #fbbf24; 
            margin-bottom: 15px; 
        }

        .review-text { 
            font-style: italic; 
            font-size: 0.95rem; 
            margin-bottom: 20px; 
            color: #374151; 
        }
        
        .reviewer { 
            display: flex; 
            align-items: center; 
            gap: 15px;
            margin-top: auto; 
        }

        .reviewer img { 
            width: 40px;
            height: 40px; 
            border-radius: 50%;
            object-fit: cover; 
        }

        .reviewer-info h4 { 
            font-size: 0.9rem; 
        }

        .reviewer-info span { 
            font-size: 0.8rem; 
            color: var(--text-gray); 
        }


        
        .newsletter {
            background-color: var(--primary-color);
            color: #fff;
            padding: 80px 0;
            text-align: center;
        }

        .newsletter h2 { 
            font-size: 2.2rem; 
            margin-bottom: 10px; 
        }

        .newsletter p { 
            margin-bottom: 30px; opacity: 0.9;
         }

        .subscribe-form {
            display: flex;
            justify-content: center;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto 15px auto;
        }

        .subscribe-form input {
            flex: 1;
            padding: 15px 20px;
            border-radius: 8px;
            border: none;
            outline: none;
        }

        .subscribe-form button {
            background-color: #000;
            color: #fff;
            padding: 15px 30px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-weight: 600;
        }

        
        
        footer { 
            padding: 60px 0 20px 0; 
            background: #fff; 
            border-top: 1px solid #f3f4f6; 
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 4fr 4fr 4fr;
            gap: 40px;
            margin-bottom: 40px;
            justify-items: center;
            align-content: end;
            justify-content: center;
            align-items: start;
        }

        .footer-col h4 { 
            margin-bottom: 20px; 
            font-size: 25px; 
        }

        .footer-col ul li {
            padding-bottom: 10px;
           color: #f69106;
           margin-bottom: 10px; 
        }

        .footer-col ul li a { 
            color: var(--text-gray); 
            font-size: 0.9rem; 
        }
        
        .footer-col ul li a:hover { 
            color: var(--primary-color); 
        }

        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-top: 40px;
        }

        
        @media (max-width: 992px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-text p { margin: 0 auto 30px auto; }
            .hero-buttons { justify-content: center; }
            .process-container { grid-template-columns: 1fr; }
            .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); text-align: center; }
            .stat-item { align-items: center; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; } 
            .hero-text h1 { font-size: 2.5rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .subscribe-form { flex-direction: column; }
            
           
            .mobile-menu-btn { display: block; font-size: 1.5rem; cursor: pointer; }
        }
        
        .mobile-menu-btn { display: none; }

       
       

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

     
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px; 
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 0.95rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
            border: 2px solid var(--primary-color);
        }

        .btn-primary:hover { 
            background-color: #0044cc; 
            border-color: #0044cc; 
        }

        .btn-outline {
            background-color: transparent;
            color: var(--text-dark);
            border: 1px solid #e5e7eb;
        }

        .btn-outline:hover { 
            border-color: var(--text-dark); 
            background: #f9fafb; 
        }
        
        .btn-white {
            background-color: #fff;
            color: var(--primary-color);
            border: none;
        }
        .btn-white:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

      
        header {
            padding: 20px 0;
            position: sticky;
            top: 0;
            background: rgba(255,255,255,0.98);
            z-index: 1000;
            border-bottom: 1px solid #f3f4f6;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 800;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dark);
        }

        .nav-links { 
            display: flex; 
            gap: 30px; 
        }
        .nav-links a { 
            font-size: 0.95rem; 
            font-weight: 500; 
            color: var(--text-gray); 
        }
        .nav-links a:hover, .nav-links a.active { 
            color: var(--primary-color);
         }
        .mobile-menu-btn { 
            display: none; 
            font-size: 1.5rem; 
            cursor: pointer; 
        }

        
        .about-hero {
            padding: 80px 0 100px 0;
            background: linear-gradient(to right, #fcf7eb 50%, #fff 50%);
        }

        .hero-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-img-box img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            object-fit: cover;
            height: 500px;
        }

        .hero-text .badge {
            background-color: #eff6ff;
            color: var(--primary-color);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 20px;
        }

        .hero-text h1 {
            font-size: 3rem;
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 20px;
            color: #111;
        }

        .hero-text p {
            text-align: justify;
            color: var(--text-gray);
            font-size: 15px;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-actions { display: flex; gap: 15px; margin-bottom: 50px; }

       
        .stats-float-container {
            display: flex;
            gap: 20px;
            margin-top: -60px; 
            position: relative;
            z-index: 2;
        }

        .stat-card {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            flex: 1;
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid #f3f4f6;
        }

        .stat-icon-box {
            width: 50px;
            height: 50px;
            background: #eff6ff;
            color: var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .stat-info h3 { 
            font-size: 1.5rem; 
            font-weight: 800; 
            color: #111; 
        }
        .stat-info span {
            font-size: 0.75rem; 
            color: var(--text-gray); 
            font-weight: 600; 
            text-transform: uppercase; 
            letter-spacing: 0.5px; 
        }

       
        .expertise { 
            padding: 100px 0;
            background-color: #fff; 
        }
        
        .section-title {
            display: flex;
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 60px;
            color: #111;
            justify-content: center;
        }
        
        .section-desc {
            color: var(--text-gray);
            max-width: 600px;
            margin-bottom: 50px;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .expert-card {
            background: #f9fafb;
            padding: 30px;
            border-radius: 12px;
            transition: transform 0.3s ease, background 0.3s;
        }

        .expert-card:hover {
            transform: translateY(-5px);
            background: #fff;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        .expert-icon {
            width: 45px;
            height: 45px;
            background: var(--text-dark);
            color: var(--primary-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .expert-card h3 {
            color: var(--primary-color);
            font-size: 1.1rem; 
            margin-bottom: 10px; 
            font-weight: 700; 
        }

        .expert-card p { 
            font-size: 0.9rem; 
            color: var(--text-gray); 
            line-height: 1.5; 
        }

        
        .timeline-section {
            padding: 80px 0;
            background: #fafafa;
        }

        .timeline-wrapper {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding-left: 50px; 
        }

       
        .timeline-wrapper::before {
            content: '';
            position: absolute;
            left: 19px; 
            top: 0;
            bottom: 0;
            width: 2px;
            background: #e5e7eb;
            z-index: 0;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            opacity: 1 !important;        /* ARTIK GÖRÜNÜR */
            transform: none !important;   /* ARTIK KAYMA YOK, YERİNDE SABİT */
            transition: none !important;
}
        
        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-icon {
            position: absolute;
            left: -50px; 
            width: 40px;
            height: 40px;
            background: #fff;
            border: 2px solid #e5e7eb;
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            font-size: 0.9rem;
        }
        
        .timeline-item:hover .timeline-icon {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: #fff;
            transition: 0.3s;
        }

        .timeline-content h3 { 
            font-size: 1.2rem; 
            font-weight: 700; 
            margin-bottom: 5px; 
            display: flex; 
            align-items: center;
            gap: 10px; }
        
        .year-badge {
            background: #eff6ff;
            color: var(--primary-color);
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }

        .timeline-content p { 
            color: var(--text-gray); 
            font-size: 0.95rem; 
        }

       
        .cta-banner {
            background-color: var(--primary-color);
            padding: 80px 0;
            color: #fff;
            text-align: center;
        }

        .cta-banner h2 { 
            font-size: 2.5rem; 
            margin-bottom: 15px; 
            font-weight: 800; 
        }

        .cta-banner p { 
            margin-bottom: 30px;
            opacity: 0.9; 
            max-width: 600px;
            margin-left: auto;
            margin-right: auto; 
        }

        
        footer { 
            padding: 40px 0; 
            background: #fff; 
            border-top: 1px solid #f3f4f6; 
        }

        .footer-flex { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            flex-wrap: wrap; gap: 20px; 
        }

        .social-links a { 
            color: var(--text-gray); 
            font-size: 1.1rem;
            margin-left: 15px; 
            transition: 0.3s; 
        }

        .social-links a:hover { 
            color: var(--primary-color);
        }

        .copyright {
            font-size: 0.85rem; 
            color: var(--text-gray); 
        }

        
        @media (max-width: 992px) {
            .hero-wrapper { grid-template-columns: 1fr; }
            .about-hero { background: #fff; text-align: center; padding-top: 40px; }
            .hero-img-box img { height: 350px; margin-bottom: 30px; }
            .hero-text p { margin: 0 auto 30px auto; }
            .hero-actions { justify-content: center; }
            
            .stats-float-container { flex-direction: column; margin-top: 20px; }
            .expertise-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .hero-text h1 { font-size: 2.2rem; }
            .cta-banner h2 { font-size: 1.8rem; }
        }



      
       

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
        }

        a { text-decoration: none; 
            color: inherit; 
        }

        ul { 
            list-style: none; 
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 0.95rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
            border: 2px solid var(--primary-color);
        }

        .btn-primary:hover {
            background-color: #0044cc; 
            border-color: #0044cc; 
        }

        .btn-outline {
            background-color: transparent;
            color: wheat;
            border: 1px solid #e5e7eb;
        }

        .btn-outline:hover { 
            border-color: var(--text-dark); 
            background: #f9fafb; 
        }

        .btn-white {
            background-color: #fff;
            color: var(--primary-color);
            border: none;
            padding: 15px 35px;
        }

        .btn-white:hover { 
            box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
        }

       
        header {
            padding: 20px 0;
            position: sticky;
            top: 0;
            background: rgba(255,255,255,0.98);
            z-index: 1000;
            border-bottom: 1px solid #f3f4f6;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 800;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dark);
        }

        .nav-links { 
            display: flex; 
            gap: 30px; 
        }

        .nav-links a { 
            font-size: 0.95rem; 
            font-weight: 500; 
            color: var(--text-gray);
        }


        .nav-links a:hover, .nav-links a.active { 
            color: var(--primary-color); 
        }


        .mobile-menu-btn {
            display: none; 
            font-size: 1.5rem; 
            cursor: pointer; 
        }


        
        .services-hero {
            padding: 80px 0;
            background: #fff;
        }

        .hero-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3rem;
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 20px;
            color: #29313d;
        }

        .hero-content p {
            font-size: 1.05rem;
            color:var(--text-dark);
            margin-bottom: 30px;
            max-width: 500px;
        }
        
        .trust-badges {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .trust-badges i { 
            color: var(--primary-color);
            margin-right: 5px; 
        }

        .hero-img img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

      
        .stats-bar {
            padding: 40px 0;
            border-bottom: 1px solid #f3f4f6;
            background: #fff;
        }

        
        .stats-flex {
            display: flex;
            justify-content: space-around;
            text-align: center;
        }

        
        .stat-box h3 { 
            font-size: 1.8rem; 
            font-weight: 800; color: #111; 
            margin-bottom: 5px; 
        }

        .stat-box p { 
            font-size: 0.85rem; 
            color: var(--text-gray); 
            text-transform: uppercase; 
            letter-spacing: 0.5px; 
        }

        
        .detailed-services { 
            padding: 80px 0; 
            background: var(--light-bg);
        }
        
        .section-header { 
            text-align: center; 
            max-width: 700px; 
            margin: 0 auto 60px auto; 
        }

        .section-header .tag { 
            color: var(--primary-color); 
            font-weight: 700; 
            font-size: 0.85rem; 
            letter-spacing: 1px; 
            text-transform: uppercase; 
            margin-bottom: 10px; 
            display: block; 
        }

        .section-header h2 { 
            font-size: 2.2rem; 
            font-weight: 800; 
            margin-bottom: 15px; 
        }

        .section-header p { 
            color: var(--text-gray); 
        }

        .service-row {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 80px;
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }

        
        .service-row:nth-child(even) {
            flex-direction: row-reverse;
        }


        .service-img-box { 
            flex: 1; 
        }

        .service-img-box img { 
            width: 100%; 
            border-radius: 12px; 
            object-fit: cover; 
            height: 350px;
        }

        .service-text-box { 
            flex: 1; 
        }
        .service-text-box h3 { 
            font-size: 1.8rem; 
            font-weight: 700; 
            margin-bottom: 15px; 
            display: flex; 
            align-items: center; 
            gap: 15px; 
        }

        .service-icon { 
            width: 40px;
            height: 40px; 
            background: #eff6ff; 
            color: var(--primary-color);
            border-radius: 8px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-size: 1.2rem; 
        }

        
        .service-text-box p { 
            color: var(--text-gray); 
            margin-bottom: 25px; 
            font-size: 0.95rem; 
        }

        .feature-list li { 
            margin-bottom: 10px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            font-size: 0.9rem; 
            color: #374151; 
        }

        .feature-list i { 
            color: #10b981; 
        } 

        .link-arrow { 
            color: var(--primary-color); 
            font-weight: 600; margin-top: 
            25px; display: inline-block; 
            font-size: 0.95rem; 
        }

        .link-arrow:hover { 
            text-decoration: underline; 
        }

        
        .work-process { 
            padding: 80px 0;
            background: linear-gradient(to bottom, #faf3e1, #fff);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .process-item {
            background: #fff;
            padding: 30px 20px;
            border-radius: 16px;
            text-align: center;
            transition: 0.3s;
        }
        .process-item:hover { 
            background: #fff; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
            transform: translateY(-5px); 
        }


        .process-icon {
            width: 60px;
            height: 60px;
            background:var(--text-dark);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 1.2rem;
        }

        .process-item h4 { 
            margin-bottom: 10px; 
            font-weight: 700; 
        }

        .process-item p { 
            font-size: 0.85rem; 
            color: var(--text-gray); 
        }

       
        .faq-section { 
            padding: 80px 0;
            max-width: 800px; 
            margin: 0 auto; 
        }
        
        .accordion-item {
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 10px;
        }

        .accordion-header {
            width: 100%;
            padding: 20px 0;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #111;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .accordion-header i { 
            transition: transform 0.3s; 
            color: var(--text-gray); 
            font-size: 0.9rem;
        }

        .accordion-header.active i { 
            transform: rotate(180deg); 
            color: var(--primary-color); 
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        .accordion-body p { 
            padding-bottom: 20px; 
        }

     
        .cta-blue {
            background: var(--primary-color);
            padding: 80px 0;
            text-align: center;
            color: #fff;
        }

        .cta-blue h2 { 
            font-size: 2.2rem; 
            margin-bottom: 15px; 
            font-weight: 800; 
        }

        .cta-blue p { 
            margin-bottom: 30px;
            opacity: 0.9; 
        }

        
        footer { 
            padding: 40px 0; 
            background: #fff; 
            border-top: 1px solid #f3f4f6; 
        }
        .footer-flex { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            flex-wrap: wrap; 
            gap: 20px; 
        }
        .social-links a { 
            color: var(--text-gray); 
            font-size: 1.1rem; 
            margin-left: 15px; 
            transition: 0.3s; 
        }
        .social-links a:hover { 
            color: var(--primary-color); 
        }
        .copyright { 
            font-size: 0.85rem; 
            color: var(--text-gray); 
        }


        @media (max-width: 992px) {
            .hero-row { grid-template-columns: 1fr; text-align: center; }
            .hero-content p, .trust-badges { justify-content: center; margin-left: auto; margin-right: auto; }
            .service-row, .service-row:nth-child(even) { flex-direction: column; text-align: left; }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-flex { flex-wrap: wrap; gap: 30px; }
        }
        
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .hero-content h1 { font-size: 2.2rem; }
            .process-grid { grid-template-columns: 1fr; }
        }


        .home-h3{
            color: wheat;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

    

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 0.95rem;
        }

        .btn-primary {
            background-color: #28313b;
            color: var(--white);
            border: 2px solid wheat;
        }
        .btn-primary:hover { 
            background-color: #232f3e; 
            border-color: #232f3e;
            color: var(--white); 
        }

        .btn-white {
            background-color: #fff;
            color: var(--primary-color);
            border: none;
            padding: 15px 30px;
        }

        .btn-white:hover { 
            box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
        }

        header {
            padding: 20px 0;
            position: sticky;
            top: 0;
            background: #faf3e1;
            z-index: 1000;
            border-bottom: 1px solid #f3f4f6;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 800;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dark);
        }

        .nav-links { 
            display: flex;
            gap: 30px; 
        }

        .nav-links a { 
            font-size: 16px; 
            font-weight: 600; 
            color: var(--text-gray);
            transition: 0.5s; 
        }

        .nav-links a:hover, .nav-links a.active {
            color:#262f3a; 
        }

        .mobile-menu-btn { 
            display: none; 
            font-size: 1.5rem; 
            cursor: pointer; 
        }

       
        .page-header {
            padding: 60px 0 40px 0;
            text-align: left;
        }
        .page-header .sub-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #111;
        }
        .page-header p {
            color: var(--text-gray);
            max-width: 600px;
            font-size: 1.05rem;
        }

       
        .top-stats { 
            padding-top: 140px;
            padding-bottom: 80px; 
        }

        .stats-grid-1 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .stat-card {
            background: #fff;
            border: 1px solid #f3f4f6;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stat-icon {
            width: 40px; 
            height: 40px; 
            background: #eff6ff; 
            color: var(--primary-color); 
            border-radius: 8px; 
            display: flex; 
            align-items: center; 
            justify-content: center;
        }
        .stat-value { 
            font-size: 2rem; 
            font-weight: 800; 
            color: #111; 
        }

        .stat-label { 
            font-size: 0.9rem; 
            color: var(--text-gray); 
            font-weight: 500; 
        }

        .growth-tag { 
            font-size: 0.8rem; 
            color: #10b981; 
            font-weight: 600; 
            display: flex; 
            align-items: center; 
            gap: 5px; 
        }

       
        .projects-section {
            padding: 60px 0;
            background: #fff;
        }

        .section-heading-row {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 80px;
        }

        .section-heading-row h2 { 
            font-size: 1.8rem;
            font-weight: 700; 
        
        }

        .view-all-link { 
            color: var(--primary-color); 
            font-weight: 600; 
            font-size: 0.9rem; 
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .project-card {
            background: #fff;
            border: 1px solid #f3f4f6;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }

        .card-img {
            height: 220px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-fit: contain;
            transition: 0.3s;
        }
        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #fff;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #10b981; 
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .card-content { 
            padding: 25px; 
        }

        .card-content h3 { 
            font-size: 1.1rem; 
            margin-bottom: 10px; 
            font-weight: 700; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }

        .card-content p { 
            font-size: 0.85rem; 
            color: var(--text-gray); 
            line-height: 1.5; 
        }

        .arrow-icon { 
            color: #d1d5db; 
            transition: 0.3s;
         }

        .project-card:hover .arrow-icon { 
            color: var(--primary-color); 
            transform: rotate(-45deg);
        }

        
        .project-card.join-us {
            background: #eff6ff; 
            border: 2px dashed #bfdbfe;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
            cursor: pointer;
        }
        .plus-icon-circle {
            width: 60px; height: 60px;
            background: #fff;
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .join-us h3 { color: var(--primary-color); margin-bottom: 10px; }
        .join-us p { color: var(--text-gray); font-size: 0.85rem; margin-bottom: 0; }

        
        .partners-strip {
            padding: 40px 0;
            border-top: 1px solid #f3f4f6;
            background: linear-gradient(to bottom, #fff, #faf3e1);
        }
        .partners-flex {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #9ca3af;
            font-weight: 600;
            font-size: 1.1rem;
            flex-direction: column;
        }
        .partner-item { display: flex; align-items: center; gap: 10px; }
        .partner-item i { font-size: 1.5rem; }

       
        .testimonials { padding: 80px 0; background: var(--light-bg); }
        .testimonials-header { text-align: center; margin-bottom: 50px; }
        .testimonials-header h2 { font-size: 2rem; margin-bottom: 10px; }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .review-card {
            background: #fff;
            padding: 30px;
            border-radius: 40px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.01);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .stars { 
            color: #fbbf24; 
            margin-bottom: 15px; 
            font-size: 0.9rem; 
        }

        .quote-icon { 
            float: right; 
            color: #e5e7eb; 
            font-size: 2rem; 
            line-height: 0; 
            margin-top: 10px; 
        }

        .review-text { 
            font-size: 0.9rem; 
            color: #374151;
            margin-bottom: 25px; 
            font-style: italic; 
            line-height: 1.6; 
        }
        
        .user-profile { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
        }

        .user-profile img { 
            width: 45px; 
            height: 45px; 
            border-radius: 50%; 
            object-fit: cover; 
        }

        .user-info h4 { 
            font-size: 0.9rem; 
            font-weight: 700; 
            color: #111;
        }

        .user-info span { 
            font-size: 0.8rem; 
            color: var(--text-gray); 
        }

       
        .cta-blue {
            background: var(--primary-color);
            padding: 80px 0;
            text-align: left;
            color: #fff;
        }
        .cta-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .cta-text h2 { 
            font-size: 2.2rem; 
            font-weight: 800; 
            margin-bottom: 10px; 
        }

        .cta-text p { 
            opacity: 0.9; 
            max-width: 600px; 
        }

        .cta-buttons { 
            display: flex;
            gap: 15px; 
        }

        .btn-transparent-outline {
            background: rgba(255,255,255,0.1);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
        }

        .btn-transparent-outline:hover { 
            background: rgba(255,255,255,0.2); 
        }

        
        footer { 
            padding: 40px 0; 
            background: linear-gradient(to bottom, #fbf5e5, #fff);
        }

        .footer-flex { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            flex-wrap: wrap; 
            gap: 20px; 
        }

        .social-links a { 
            color: var(--text-gray); 
            font-size: 1.1rem; 
            margin-left: 15px; 
            transition: 0.3s; 
        }

        .social-links a:hover { 
            color: var(--primary-color); 
        }
        .copyright { 
            font-size: 0.85rem;
            color: var(--text-gray); 
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .stats-grid, .project-grid, .testimonial-grid { grid-template-columns: 1fr; }
            .cta-content { flex-direction: column; text-align: center; gap: 30px; }
            .cta-text p { margin: 0 auto; }
            .partners-flex { flex-wrap: wrap; gap: 20px; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
        }
        /* --- TIMELINE (SERÜVENİM) DÜZELTME KODU --- */
/* Bunu style.css dosyasının en altına yapıştır */

.timeline-item {
    opacity: 1 !important;        /* Görünmezliği iptal et */
    transform: none !important;   /* Kaymayı iptal et */
    visibility: visible !important; /* Zorla göster */
    animation: none !important;   /* Animasyonu durdur */
}
/* Mobil Menü İçin Yeni Stil */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Varsayılan olarak gizli */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.open {
        display: flex; /* JS ile 'open' classı eklenince görünür */
    }
}