/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}
.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    z-index: 1000;
    position: absolute;
    margin-top: 50px;
}
.navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.navbar li {
    margin: 0 15px;
}
.navbar a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
}
.navbar a:hover {
    color: #ff0000;
}
footer {
    background-color: #111;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}
.footer-logo img {
    max-width: 150px;
}
.section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    border-bottom: 1px solid #ddd;
}
.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}
.footer-section {
    width: 250px;
    text-align: left;
}
.footer-section h3 {
    border-bottom: 2px solid red;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin: 8px 0;
}
.footer-bottom {
    background: #000;
    padding: 15px 0;
    font-size: 14px;
}
.footer-bottom a {
    color: rgb(250, 247, 247);
    text-decoration: none;
}
header {
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 60px;
    box-sizing: border-box;
}

.service {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1 1 calc(33.333% - 40px); /* 3 sütun düzeni */
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #ffffff;
    margin-bottom: 20px;  /* Alt boşluk ekleyerek öğelerin daha düzgün yerleşmesini sağla */
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
    color:#ffffff;
}
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-top:20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff0000; /* İkonların üzerine gelindiğinde renk değişimi */
}

.social-icon {
    width: 24px; /* İkonun genişliğini ayarlayın */
    height: 24px; /* İkonun yüksekliğini ayarlayın */
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1); /* İkonun üzerine gelindiğinde büyütme efekti */
}
/* Medya sorguları */
@media (max-width: 768px) {
    .service {
        flex: 1 1 calc(50% - 40px); /* 2 sütun düzeni */
    }
}

@media (max-width: 480px) {
    .service {
        flex: 1 1 100%; /* 1 sütun düzeni */
    }
}