body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box; /* Ensures padding and borders are included in the width calculation */
    background-color: #f5f5f5;
    overflow-x: hidden; /* Prevents horizontal scroll */
}

/* reCAPTCHA v3 badge’ini gizle */
.grecaptcha-badge {
    display: none !important;
  }


/* Responsive container */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto; /* Center the content */
    padding: 0 15px; /* Provide space on the sides */
}

/* Header (fixed position, full width) */
header {
    top: 0;
    left: 0;
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 40px; /* Orijinal 15px yerine 30px padding */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: none;
}

/* Prevent header overflow */
header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Responsive design for smaller screens */
}

/* Slider (swiper-container) */
.swiper-container {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    position: relative;
}

/* Adjusting sliders for responsive behavior */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Prevents horizontal overflow */
* {
    box-sizing: border-box;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
}

/* Bizimle Çalışan Firmalar */
.partners {
    background-color: #f5f5f5;
    padding: 40px 0;
    text-align: center;
}

.partners h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 30px;
}

/* Adjusted height for partner logos */
.partners-swiper {
    width: 100%;
    padding: 10px 0;  /* Reduced height */
    height: 150px;
}

/* Hide arrows in the partner swiper */
.partners-swiper .swiper-button-next,
.partners-swiper .swiper-button-prev {
    display: none;
}

.partners-swiper .swiper-slide img {
    max-width: 120px;  /* Restrict the size of partner logos */
    height: auto;
    margin: 0 10px; /* Add spacing between logos */
}

/* Adjust responsiveness */
@media (max-width: 1024px) {
    .partners-swiper .swiper-slide img {
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .partners-swiper .swiper-slide img {
        max-width: 80px;
    }
}

@media (max-width: 576px) {
    .partners-swiper .swiper-slide img {
        max-width: 60px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    line-height: 70px; /* İkonu dikeyde ortalamak için */
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
