/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Roboto:wght@400;500;700&display=swap');

/* Genel Stil */
body {
    color: #333; /* Koyu gri yazı */
    background-color: #f4f8fb; /* Açık pastel mavi arka plan */
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #0d6efd; /* Pastel mavi ton */
    font-weight: 600;
}

p {
    color: #666; /* Orta gri ton */
}

/* Navbar */




.nav-link {
    color: #336e9a !important;
    font-size: 1.1rem;
    margin-right: 15px;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* Header (Ana Sayfa) */
header {
    background: linear-gradient(to right, #0d6efd, #333);
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

header p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

header .btn {
    background-color: #0d6efd;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
}

header .btn:hover {
    background-color: #0056b3;
}

/* Services */
#services {
    background-color: #f4f8fb;
    padding: 50px 0;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-radius: 10px;
}

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



/* About Us */
#about {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

/* Contact Form */
#contact {
    padding: 50px 0;
    background-color: #333;
    color: white;
}

#contact h2 {
    color: #f4f8fb;
    font-family: 'Poppins', sans-serif;
}

form .form-control {
    border: 1px solid #0d6efd;
    border-radius: 5px;
}

form .btn {
    background-color: #0d6efd;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

form .btn:hover {
    background-color: #0056b3;
}

footer {
    background-color: #222; /* Daha koyu bir arka plan */
    color: #aaa; /* Metin için hafif gri ton */
}
footer h5 {
    color: #fff; /* Başlıkları beyaz yap */
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
footer ul li {
    margin-bottom: 10px; /* Liste öğeleri arasında boşluk */
}
footer ul li i {
    margin-right: 10px; /* İkonlar ile metin arasındaki boşluk */
}
footer a:hover {
    color: #0d6efd; /* Bağlantılar için hover efekti */
}



.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    
}

.slider-track {
    display: flex;
    width: max-content; /* İçerik genişliğine göre ayarla */
    animation: slide 30s linear infinite; /* Animasyon */
}

.client-logo {
    flex: 0 0 auto;
    margin: 0 20px; /* Logo arası boşluk */
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 150px; /* Logo genişliği */
    height: auto;
    transition: transform 0.3s ease; /* Hover efekti için */
}

.client-logo:hover img {
    transform: scale(1.1); /* Fare üzerine gelince büyüt */
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Yarısı kadar kaydır */
    }
}
