/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

/* Header Stilleri */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

header .logo h1 {
    font-size: 2.5em;
    font-weight: 600;
    color: #fff;
}

header .logo span {
    color: #ff8c00;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}

/* Ana Sayfa Hero */
.hero {
    background: linear-gradient(45deg, #4e73df, #1c1c1c);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

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

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

.cta-button {
    padding: 12px 30px;
    background-color: #ff8c00;
    color: white;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
}

/* Hizmetler Bölümü */
#services {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

#services .section-title {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    width: 23%;
    margin: 20px 0;
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-icon {
    font-size: 50px;
    color: #4e73df;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service p {
    font-size: 1em;
}

/* Hakkımızda Bölümü */
#about {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about .section-title {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.about-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.about-card {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 1.1em;
}

/* Projeler Bölümü */
#projects {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.projects .section-title {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.projects .project {
    display: inline-block;
    width: 45%;
    margin: 20px 2.5%;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.projects .project:hover {
    transform: scale(1.05);
}

.project-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.project h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.project p {
    font-size: 1.1em;
    margin-top: 10px;
}

.project a {
    color: #4e73df;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.project a:hover {
    text-decoration: underline;
}

/* İletişim Bölümü */
#contact form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact button {
    padding: 12px 30px;
    background-color: #4e73df;
    color: white;
    font-size: 1em;
    border: none;
    border-radius: 5px;
}

/* Footer */
footer {
    padding: 20px 0;
    background-color: #333;
    color: white;
    text-align: center;
}

footer .social-media a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

footer .social-media a:hover {
    text-decoration: underline;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .services-container, .projects .project {
        flex-direction: column;
    }

    .service, .project {
        width: 100%;
        margin: 10px 0;
    }

    .about-container {
        flex-direction: column;
    }

    .about-card {
        width: 100%;
        margin: 15px 0;
    }
}
