.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.floating-buttons a {
    text-decoration: none;
}

/* Butonları eşit hale getir */
.floating-buttons img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
    background-color: white; /* Beyaz arka plan kaybını engelle */
    padding: 5px;
}

/* WhatsApp butonuna özel tasarım */
.floating-buttons a:first-child img {
    background-color: #25D366;
    padding: 10px;
}

.floating-buttons img:hover {
    transform: scale(1.1);
}

/* Açılır Menü Tasarımı */
.floating-menu {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    z-index: 1001;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

/* Açılma animasyonu */
.floating-menu.show {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.floating-menu h3 {
    margin: 0;
    font-size: 16px;
}

.floating-menu button {
    padding: 10px;
    border: none;
    background: #25D366;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 200px;
}

.floating-menu button:hover {
    background: #1ebd58;
}

.close-btn {
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
    display: inline-block;
    color: red;
}
/* web site açılış dişli dönme */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; overflow: hidden; }

.loader-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #282c34;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gears {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gear {
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

.gear:nth-child(2) {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    animation-duration: 3s;
}

.gear:nth-child(3) {
    width: 120px;
    height: 120px;
    margin-left: 20px;
    animation-duration: 4s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
