* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #2c3e50;
    color: white;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.mySwiper {
    width: 100%;
    height: 500px;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

<div class="swiper mySwiper">
    <div class="swiper-wrapper">
        <div class="swiper-slide slide-1"></div>
        <div class="swiper-slide slide-2"></div>
        <div class="swiper-slide slide-3"></div>
        <div class="swiper-slide slide-4"></div>
        <div class="swiper-slide slide-5"></div>
        <div class="swiper-slide slide-6"></div>
    </div>
</div>

#hizmetlerimiz {
    padding: 50px 5%;
    text-align: center;
}

#hizmetlerimiz h2 {
    margin-bottom: 30px;
    color: #2c3e50;
}

.hizmet-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hizmet-card {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    transition: 0.3s;
}

.hizmet-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    margin: 15px;
    min-width: 300px;
}

.hizmet-card:hover {
    transform: translateY(-10px);
}

.hizmet-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.hizmet-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.hizmet-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-image {
    flex: 1;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1600') center/cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}
#iletisim { padding: 80px 5%; background: #ffffff; }

.iletisim-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info { flex: 1; }
.contact-info ul { list-style: none; margin-top: 20px; }
.contact-info li { margin-bottom: 10px; font-size: 1.1rem; }

.contact-form { flex: 1; display: flex; flex-direction: column; gap: 15px; }

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    padding: 15px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.contact-form button:hover { background: #34495e; }

@media (max-width: 768px) {
    .iletisim-container { flex-direction: column; }
}
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 5% 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid #3e5871;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid #3e5871;
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .footer-container { flex-direction: column; text-align: center; }
}
#istatistik {
    background: #2c3e50;
    color: white;
    padding: 60px 5%;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
}

#yorumlar {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

#yorumlar h2 {
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    max-width: 450px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-style: italic;
    position: relative;
}

.testimonial-card h4 {
    margin-top: 20px;
    color: #2c3e50;
    font-style: normal;
}


@media (max-width: 768px) {
    .stats-container { flex-direction: column; }
}
.map-container {
    margin-top: 30px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
    .map-container iframe { height: 200px; }
}
.mySwiper {
    width: 100%;
    height: 500px;
}


.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-us {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about-us h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-us p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    color: #555;
}

.btn-detay {
    padding: 10px 25px;
    background-color: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-detay:hover {
    background-color: #34495e;
}

.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-section iframe {
    width: 100%;
    display: block;
}

#ekibimiz { padding: 50px 20px; background-color: #f9f9f9; text-align: center; }

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 30px auto;
}

.team-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover { transform: translateY(-10px); }

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card h3 { margin-bottom: 10px; color: #333; }
.blog-card {
    transition: transform 0.3s ease;
    background: white;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero h1 { font-size: 3rem; margin-bottom: 10px; }
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.mySwiper { width: 100%; height: 400px; }
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=1600');

    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}
@media screen and (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
        padding-top: 10px;
    }

    .hizmet-container, .team-container {
        grid-template-columns: 1fr !important;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .iletisim-container {
        flex-direction: column;
    }
    .contact-form {
        width: 100% !important;
    }
}
.why-us {
    padding: 80px 5%;
    background-color: #f1f4f8;
    text-align: center;
}

.why-us h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.why-us-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #e67e22;
}

.why-us-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-us-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.why-us-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .why-us h2 { font-size: 2rem; }
}
header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin-left: 15px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        justify-content: center;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    header nav ul li {
        margin: 5px 10px;
    }
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

.whatsapp-button img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}


@media (max-width: 480px) {
    .whatsapp-button span {
        display: none;
    }
    .whatsapp-button {
        padding: 15px;
        border-radius: 50%;
    }
    .whatsapp-button img {
        margin-right: 0;
    }
}
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #2c3e50;
        text-align: center;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 15px 0;
    }
}
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e67e22;
    padding-left: 5px;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

