/* İstatistikler */
.facts {
    padding: 20px;
    text-align: center;
}

.facts h1 {
   color: var(--primary-color);
}

.facts h4 {
    color: var(--light-accent);
}

.counter {
    color: #2c3e50;
}

:root {
    --primary-color: #4a90e2;      /* Daha açık bir mavi */
    --secondary-color: #f8f9fa;    /* Çok açık gri - neredeyse beyaz */
    --accent-color: #5b86e5;       /* Orta ton mavi */
    --accent-color-mid: #36d1dc;   /* Turkuaz */
    --accent-color-dark: #4433ff;  /* Canlı mavi */
    --dark-accent: #eef2f7;        /* Açık gri */
    --light-accent: #2c3e50;       /* Koyu lacivert - yazılar için */
}

/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--dark-accent);
    color: var(--light-accent);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

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

/* Header Stili */
.navbar {
    background: linear-gradient(90deg, #4a90e2, #36d1dc);
	height: 60px; /* Navbar'ın sabit yüksekliği */
}
.navbar-brand img {
    height: 40px; /* Logo yüksekliği */
    max-height: 100%; /* Navbar'ı aşmaması için */
    object-fit: contain; /* Görüntünün oranını korur */
}
.navbar-brand {
    color: white !important;
    font-weight: bold;
}

.nav-link {
    color: white !important;
    margin: 0 10px;
}

/* Hero Section Styles */
#hero {
    background-color: white;
}
.hero-content h1 {
    color: var(--light-accent);
}
.blur {
    filter: blur(70px);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animation-rotate {
    animation: rotate 20s linear infinite;
}

.hero-circles {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74,144,226,0.2) !important;
}
.client-badge {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid rgba(74,144,226,0.2);
    border-radius: 8px;
    color: #2c3e50;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.trusted-by {
    margin-top: -150px;
    position: relative;
    z-index: 1;
}
.client-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74,144,226,0.1);
    border-color: rgba(74,144,226,0.4);
}

/* Hizmetler */
.service-box {
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-box h4 {
    color: #2c3e50;
}
.service-box p {
    color: #34495e;
}
.hero-content .badge {
   background: linear-gradient(45deg, #4a90e2, #36d1dc);
    color: white;
}

.hero-content h1 span {
    background: linear-gradient(45deg, #39B4FB, #1E62C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-box:hover {
    transform: translateY(-10px);
}
/* Ürünler */
.product-box {
    height: 100%;
    transition: all 0.3s ease;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(74,144,226,0.2) !important;
}

.product-box ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.product-box ul li i {
    min-width: 20px;
}
/* İstatistikler */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.counter-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card .stat-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227,24,55,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.9);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-custom {
    background: linear-gradient(45deg, #4a90e2, #36d1dc);
    color: white;
}

.btn-custom:hover {
     background: linear-gradient(45deg, #36d1dc, #4a90e2);
}

/* İletişim */

#contact {
    background-color: var(--secondary-color);
}

.contact-info {
    background-color: white;
}

.contact-info h4, .contact-info p {
    color: var(--light-accent);
}

.form-control {
    background-color: white !important;
    border: 1px solid #dee2e6 !important;
    color: var(--light-accent) !important;
}

.form-control::placeholder {
    color: #6c757d !important;
}

.form-control {
    background-color: white !important;
    border: 1px solid #dee2e6 !important;
    color: var(--light-accent) !important;
}
/* Footer */
footer {
    background: linear-gradient(90deg, #4a90e2, #36d1dc);
}

.social-links a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    #hero {
        text-align: center;
    }
    
    .client-badge {
        margin: 5px;
    }
    
    .service-box {
        margin: 10px 0;
    }
}

/* Mevcut CSS'inizin devamına eklenecek güncellemeler */

/* Mobil Responsive İyileştirmeleri */
@media (max-width: 768px) {
    /* Navbar düzenlemeleri */
    .navbar {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-brand img {
        height: 30px;
    }

    /* Hero section düzenlemeleri */
    .hero-content {
        padding: 2rem 1rem;
        margin-top: 60px; /* Navbar'ın altında kalmayı sağlar */
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Badge düzenlemeleri */
    .trusted-by {
        margin-top: 20px;
        padding: 1rem;
    }

    .client-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin: 5px;
        width: calc(50% - 10px); /* 2 sütunlu grid */
        display: inline-block;
    }

    /* Tech stack grid düzenlemesi */
    .tech-stack-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 15px;
    }

    /* Buton düzenlemeleri */
    .btn-custom, .btn-outline-light {
        width: 100%;
        margin: 5px 0;
        padding: 10px 20px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        width: 100%;
    }

    /* İstatistikler düzenlemesi */
    .facts {
        padding: 10px;
    }

    .facts h1 {
        font-size: 1.5rem;
    }

    .facts h4 {
        font-size: 1rem;
    }

    /* Servis kutuları düzenlemesi */
    .service-box {
        margin: 10px 0;
        padding: 20px;
    }

    /* Ürün kutuları düzenlemesi */
    .product-box {
        margin: 10px 0;
        padding: 15px;
    }

    /* Contact form düzenlemesi */
    .contact-info {
        margin-bottom: 20px;
        padding: 15px;
    }

    .form-control {
        margin-bottom: 10px;
    }

    /* Container padding düzeltmesi */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Section padding düzeltmeleri */
    .section {
        padding: 40px 0;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .trusted-by {
        margin-top: 10px;
    }

    .client-badge {
        width: 100%;
        margin: 5px 0;
    }

    .facts h1 {
        font-size: 1.3rem;
    }
}

/* Yüksek DPI ekranlar için font yumuşatma */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}
