/* hazirrlar 

/* Google Fonts ile el yazısı fontu ekleyin */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

/* El yazısı stilini uygulayın */

.el-yazisi {
    font-family: 'Dancing Script', cursive;
    color: #354f70;
    /* Örnek renk */
}


/* Genel stiller */

body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f5f7fa;
    /* Sade gri tonları */
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3 {
    color: #354f70;
    /* Soğuk mavi */
}

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


/* Navbar stilleri */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #354f70;
    /* Soğuk mavi */
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.navbar-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    /* Menü öğelerini ortala */
    flex-grow: 1;
    /* Menü öğeleri aralarındaki boşluğu eşitler */
    margin-left: 30%;
}

.navbar-menu li {
    margin: 0 15px;
}

.navbar-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: #ff6f61;
    /* Yumuşak kırmızı */
}

.navbar-menu .contact-link {
    margin-left: auto;
    /* Sağ tarafa itmek için */
}


/* Hero Section */

.hero {
    background-color: #6c7c93;
    /* Grisel tonlarda mavi */
    color: white;
    padding: 40px 10px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background-color: #ff6f61;
    /* Yumuşak kırmızı */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e45a47;
    /* Koyu kırmızı */
}


/* Hizmetler Section */

.services {
    padding: 50px 20px;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    position: relative;
    padding-top: 250px;
    /* Görsel için alan */
    text-align: center;
}

.card img {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: #354f70;
    /* Soğuk mavi */
    margin-top: 20px;
}


/* Referanslar Section */

h2 {
    color: #354f70;
}

.references {
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90%;
    margin: auto;
    overflow: hidden;
}

.logos {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 100%;
    padding: 10px;
}

.logos img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.scroll-btn {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

.left {
    left: 0;
}

.right {
    right: 0;
}


/* İletişim Section */

.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #ff6f61;
    /* Yumuşak kırmızı */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #e45a47;
    /* Koyu kırmızı */
}


/* Footer */

.footer {
    background-color: #354f70;
    /* Soğuk mavi */
    color: white;
    text-align: center;
    padding: 20px;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6f61;
    /* Yumuşak kırmızı */
}