.ecu-header {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.ecu-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.contact-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    padding: 12px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    box-shadow: 0px 5px 15px rgba(255, 65, 108, 0.3);
    transition: 0.3s ease-in-out;
    position: relative;
    animation: pulse 1.5s infinite alternate;
}

.contact-link i {
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
    animation: bounce 1.5s infinite;
}

.contact-link:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    box-shadow: 0px 10px 25px rgba(255, 65, 108, 0.5);
}

.contact-link:hover i {
    transform: translateY(5px);
}

#slider {
    position: relative;
    width: 100%;
    height: 75vh; /* Mevcut kodundaki "min-vh-75" tanımına uygun */
}


/* Glow Animasyonu */
@keyframes glow {
    0% { box-shadow: 0px 5px 15px rgba(255, 65, 108, 0.3); }
    100% { box-shadow: 0px 10px 25px rgba(255, 65, 108, 0.6); }
}

/* Yanıp Sönme Animasyonu */
@keyframes pulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Aşağı yukarı hareket */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.custom-card {
        background: linear-gradient(135deg, #FFD54F, #FFAB91);
        color: #fff;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        margin: 15px;
    }

    .custom-card:hover {
        transform: translateY(-10px);
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    }

    .styled-list li {
                font-size: 16px;
                line-height: 1.8;
                margin-bottom: 8px;
                display: flex;
                align-items: center;
            }

            .gradient-icon {
                color: #6a11cb;
            }

            .trainer-card {
                background: #fff;
                padding: 15px;
                border-radius: 10px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }

            .trainer-img {
                width: 180px;
                height: 250px;
                object-fit: cover;
                border-radius: 10px;
            }

            @media (max-width: 768px) {
                .trainer-img {
                    width: 150px;
                    height: 200px;
                }
                .styled-list {
                    font-size: 14px;
                }
            }
            .tabs-container {

padding: 80px 0;
}
.tabs {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 30px;
}
.tab {
padding: 15px 30px;
border: none;
background: linear-gradient(135deg, #6a11cb, #2575fc);
color: white;
font-size: 18px;
cursor: pointer;
transition: 0.3s;
border-radius: 8px;
}
.tab:hover, .tab.active {
background: linear-gradient(135deg, #ff416c, #ff4b2b); /* Aktif tab için farklı renk */
}
.tab-content-wrapper {
background: linear-gradient(135deg, #D6EAF8, #ECEFF1);
padding: 40px;
border-radius: 12px;
text-align: center;
min-height: 400px;
}
.tab-content {
display: none;

}
.tab-content.active {
display: block;
}
.tab-content img {
max-width: 100%;
height: auto;
margin-top: 20px;
border-radius: 12px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.team-card {
        background: white;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .team-image img {
        width: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

    .team-info h4 {
        font-size: 1.2rem;
        font-weight: bold;
        margin: 10px 0 5px;
        color: #333;
    }

    .team-info p {
        font-size: 0.9rem;
        color: #777;
    }
    .photo-gallery-card {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.card {
    width: 300px;
    background: linear-gradient(135deg, #E3F2FD, #F8F9FA);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-gallery {
    background: white;
    color: #6a11cb;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-gallery:hover {
    background: #fff;
    color: #2575fc;
    transform: scale(1.1);
}

/* GALERİ MODALI */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.gallery-container {
    position: relative;
    width: 80%;
    max-width: 800px;
}

#galleryImage {
    width: 100%;
    border-radius: 8px;
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close-gallery:hover {
    color: red;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    transition: 0.3s;
}

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
.quote-section {
            background: #f7931e;
            padding: 40px 0;
            text-align: center;
        }

        .quote-box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin: 0 auto;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            height: 200px;
        }

        .quote-icon {
            font-size: 40px;
            color: #f7931e;
            position: absolute;
            left: 15px;
            top: 15px;
        }

        @media (min-width: 768px) {
            #slider {
                min-height: 89vh;
            }
        }


        /* Kartları aynı yükseklikte tut */
        .row {
            display: flex;
            align-items: stretch;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Kartları Daha Belirgin Hale Getirme */
        .testimonial-box {
            background: #fff;
            border-left: 5px solid #ff9800;
            /* Sol tarafa şık bir detay ekledik */
            font-size: 1.2rem;
            max-width: 900px;
            margin: auto;
        }

        .quote-icon {
            font-size: 3rem;
            font-weight: bold;
            color: #ff9800;
            position: absolute;
            left: 15px;
            top: -10px;
        }

        .testimonial-text {
            font-style: italic;
            color: #333;
            line-height: 1.6;
        }

        .testimonial-author {
            text-align: right;
        }

        .tabs-alt {
            border-bottom: 2px solid #ddd;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .tabs-alt .nav-link {
            font-size: 18px;
            font-weight: bold;
            color: #555;
            background: #f9f9f9;
            border-radius: 8px;
            padding: 10px 20px;
            transition: all 0.3s ease-in-out;
        }

        .tabs-alt .nav-link.active {
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            color: #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        /* Sekme İçeriği */
        .tab-content {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sekme Geçiş Efektleri */
        .tab-pane {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .tab-pane.active {
            display: block;
        }

        .gradient-icon {
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
