﻿:root {
    --brand-red: #e53935;
    --text-main: #212121;
    --text-subtle: #757575;
    --border-light: #e0e0e0;
    --hover-bg: rgba(0, 0, 0, 0.04);
    --font-family: 'Segoe UI', sans-serif;
}

/* GENEL */
body {
    background-color: #e5e6e1;
    height: 100vh;
    margin: 0;
}

/* HEADER */
.ory-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    flex-wrap: wrap;
}

/* LOGO */
/* LOGO ALANI */
.logo-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .logo-link:hover {
        transform: scale(1.03);
    }

.logo-image {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-link:hover .logo-image {
    transform: scale(1.15);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-main {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e53935;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.3px;
}

/* NAVIGATION */
.ory-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .ory-nav ul {
        display: flex;
        gap: 24px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .ory-nav li {
        padding: 8px 12px;
        font-size: 1rem;
        cursor: pointer;
        border-radius: 4px;
        transition: background-color 0.3s ease, color 0.3s ease;
        color: var(--text-main);
    }

        .ory-nav li:hover {
            background-color: var(--hover-bg);
            color: var(--brand-red);
        }

    .ory-nav .active {
        font-weight: 600;
        color: var(--brand-red);
    }

/* ICONLAR */
.ory-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .ory-icons a {
        font-size: 1.2rem;
        color: var(--text-main);
        transition: color 0.3s;
    }

        .ory-icons a:hover {
            color: var(--brand-red);
        }
@media (max-width: 768px) {
    .ory-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 0 16px;
    }

    .menu-toggle {
        order: -1;
        background: none;
        border: none;
        font-size: 22px;
        color: #212121;
    }

    .ory-logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .ory-nav .text-center {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px; /* Sabit yükseklikle hizalama kolaylaşır */
    }

        .ory-logo img {
            max-width: 80px;
            height: auto;
            display: block;
        }

    .brand-text {
        font-size: 13px;
        line-height: 1.2;
        margin: 0;
    }

    .ory-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 65vw;
        height: 100vh;
        background-color: #fff;
        z-index: 999;
        display: flex;
        flex-direction: column;
        padding: 0 20px 20px;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
        .ory-nav img {
            display: block;
            margin: 0;
        }

        .ory-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ory-nav li a {
            text-decoration: none;
            font-size: 16px;
            color: #212121;
            padding: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
        }

            .ory-nav li a::after {
                content: '+';
                font-weight: bold;
                font-size: 18px;
                color: #888;
            }
    .ory-nav-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 70vw;
        height: 100vh;
        background: #fff;
        z-index: 1050;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 24px 16px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    #closeMenu {
        position: absolute;
        top: 16px;
        right: 16px;
        background: none;
        border: none;
        cursor: pointer;
    }


        #closeMenu i {
            color: #212121;
            font-size: 1.25rem; /* fa-lg yerine daha hassas boyut kontrolü */
        }
}


    .ory-nav-footer {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid #ddd;
    }

        .ory-nav-footer input[type="search"] {
            width: 100%;
            padding: 8px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .ory-nav-footer a {
            display: block;
            margin-top: 12px;
            font-size: 14px;
            color: #007bff;
            text-decoration: none;
        }

#mobileMenu {
    position: relative; /* Eklenmeli */
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
}

    #mobileMenu.active {
        display: flex !important;
        transform: translateX(0%);
    }

    #mobileMenu li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        color: #333;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        #mobileMenu li:hover {
            background-color: #f8f9fa;
            color: #dc3545;
        }

        #mobileMenu li span {
            transition: transform 0.3s ease;
        }

    #mobileMenu .menu-item:hover .menu-icon {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
.hero {
    padding: 10px 20px;
  /*  background: linear-gradient(120deg, #f0f4ff, #ffffff);*/
    font-family: 'Segoe UI', sans-serif;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #212121;
    margin-bottom: 20px;
}

    .hero-text h1 span {
        color: #ff1a3c;
    }

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-primary {
    background-color: #e53935;
    color: #fff;
    border: none;
}

    .btn-primary:hover {
        background-color: #c62828;
    }

.btn-outline {
    border: 2px solid #e53935;
    color: #e53935;
    background: transparent;
}

    .btn-outline:hover {
        background-color: #e53935;
        color: #fff;
    }

.hero-stats {
    display: flex;
    gap: 30px;
    font-size: 1rem;
    color: #444;
    list-style: none;
    padding: 0;
}

    .hero-stats strong {
        font-size: 1.5rem;
        color: #ff1a3c;
    }

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Mobil uyumlu */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}

.lesson-options {
    padding: 60px 20px;
    /*background-color: #f9f9f9;*/
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

    .lesson-options h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        color: #333;
    }

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background-color: white;
    border-radius: 16px;
    /* Kutunun gölge değerlerini artırın */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); /* Daha belirgin gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Badge için gerekli */
}
.badge-featured {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ff1a3c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
    .option-card:hover {
        /* Hover'da kartı daha belirgin yukarı kaydırın ve gölgeyi güçlendirin */
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Hover'da daha da güçlensin */
    }

    .option-card .icon {
        font-size: 2.8rem;
        color: #e53935;
        margin-bottom: 16px;
    }

    .option-card h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: #222;
    }

    .option-card p {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 20px;
    }

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #e53935;
    border-radius: 8px;
    color: #e53935;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .btn-outline:hover {
        background-color: #e53935;
        color: white;
    }
   

body {
    font-family: 'Inter', sans-serif;
}

/* Slider'ın sorunsuz çalışması için ana stiller */
.carousel-container-wrapper {
    position: relative;
    height: auto; /* İçeriğin yüksekliğine göre otomatik ayarlanacak */
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    visibility: hidden;
}

    .carousel-item.active {
        position: relative;
        opacity: 1;
        visibility: visible;
    }

.carousel-indicator {
    transition: all 0.3s ease;
    cursor: pointer;
}

    .carousel-indicator.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        transform: scale(1.2);
    }

.step-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

    .step-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    }

/*.step-number {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    animation: pulse 2s infinite;
}*/

    /* Her bir adım için özel renkler */
    .step-number1 {
        background-color: #fb0033; /* Kırmızı */
    }

.step-number2 {
    background-color: #fffc00; /* Gri */
    animation: pulse 2s infinite;
}

.step-number3 {
    background-color: #5271ff; /* Mavi */
    animation: pulse 2s infinite;
}

.step-number4 {
    background-color: #0ba84a; /* Yeşil */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


.progress-bar {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.6s ease;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

/* Modal ana kapsayıcısı */
/* Modalın tüm ekranı kaplayan kapsayıcısı */
/* Modalın tüm ekranı kaplayan kapsayıcısı */
/*.modal-overlay {
    position: fixed;*/ /* Ekranın herhangi bir yerine göre sabitler */
    /*top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);*/ /* Arka planı hafifçe karartır */
    /*backdrop-filter: blur(5px);*/ /* Arka planı bulanıklaştırır */
    /*display: flex;*/ /* İçeriği ortalamak için flexbox kullanır */
    /*justify-content: center;
    align-items: center;
    z-index: 999;*/ /* Diğer tüm elemanların üzerinde olmasını sağlar */
    /*opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}*/

    /* Modal aktif olduğunda görünür hale gelir */
    /*.modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }*/

/* Modalın kendisi, yani beyaz kutu */
/*.login-container {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 90%;
    transform: translateY(-50px);*/ /* İlk başta yukarıda durur */
    /*transition: transform 0.3s ease;
}*/

/* Modal açıldığında kutuyu yukarıdan getirir */
/*.modal-overlay.active .login-container {
    transform: translateY(0);
}*/
/* Gizleme sınıfı */
/*.hidden {
    display: none;
}*/
/* Modal açıkken sayfanın kaymasını engellemek için */
/*body.modal-open {
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #555;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

    .modal-close-btn:hover {
        color: #000;
    }


    .modal-close:hover {
        color: #764ba2;
    }*/

/* Form kutusu ve içindeki elemanlar */
/*.form-box h2 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

    .form-box h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 2px;
    }

.form-group {
    margin-bottom: 25px;
    position: relative;
}

    .form-group label {
        display: block;
        color: #555;
        font-weight: 500;
        margin-bottom: 8px;
        font-size: 14px;
        transition: color 0.3s ease;
    }

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

    .form-input:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        transform: translateY(-1px);
    }

        .form-input:focus + .input-icon {
            color: #667eea;
        }

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    transition: color 0.3s ease;
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s ease;
}

    .password-toggle:hover {
        color: #667eea;
    }

.btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn:hover::before {
        left: 100%;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }

    .btn:active {
        transform: translateY(0);
    }

.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

    .form-footer a {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .form-footer a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .remember-me input[type="checkbox"] {
        margin-right: 10px;
        transform: scale(1.2);
        accent-color: #667eea;
    }

    .remember-me label {
        margin-bottom: 0;
        font-size: 14px;
        cursor: pointer;
    }

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.loading {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
        margin: 10px;
    }

    .form-box h2 {
        font-size: 24px;
    }
}
.open-modal-link {
    display: inline-block;
    font-weight: 500;
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .open-modal-link:hover {
        color: #764ba2;
        text-decoration: underline;
    }*/
.login-modal-content {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

    .login-modal-content .form-control {
        border-radius: 8px;
        padding: 10px;
        font-size: 15px;
    }

    .login-modal-content .btn-danger {
        border-radius: 8px;
        font-weight: 600;
    }

.progress-bar.bg-gradient {
    background: linear-gradient(to right, #00c6ff, #0072ff);
}
/*neden biz*/
.neden-biz-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.neden-biz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

/*.neden-biz {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    padding: 80px 40px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    ov*//*erflow: hidden;
}*/
.neden-biz {
    background: #FFFFFF; /* İçerik kartı için temiz beyaz arka plan */
    padding: 80px 40px;
    color: #333; /* Koyu metin rengi, okunurluk için */
    font-family: 'Poppins', sans-serif;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Yumuşak bir gölge efekti */
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0; /* Hafif bir kenarlık ekler */
}

.neden-biz::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.neden-biz .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #E91E63, #9C27B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.neden-biz .section-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    color: #444;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.neden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.neden-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    transition: all 0.3s ease;
}

    .neden-item:hover {
        transform: translateX(5px);
    }

    .neden-item .icon {
        font-size: 36px;
        color: #E91E63;
        flex-shrink: 0;
        margin-top: 5px;
        background: linear-gradient(45deg, #E91E63, #FF5722);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: transform 0.3s ease;
    }

    .neden-item:hover .icon {
        transform: scale(1.1);
    }

.neden-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.neden-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #E91E63, #9C27B0);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(233, 30, 99, 0.4);
    }

/* Responsive: Mobile için */
@media (max-width: 768px) {
    .neden-biz {
        padding: 60px 20px;
    }

        .neden-biz .section-title {
            font-size: 2.2rem;
        }

        .neden-biz .section-subtitle {
            font-size: 1.1rem;
        }

    .neden-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .neden-item {
        padding: 20px;
    }

        .neden-item .icon {
            font-size: 32px;
        }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }

    .neden-biz .section-title {
        font-size: 1.8rem;
    }

    .neden-grid {
        grid-template-columns: 1fr;
    }

    .neden-item {
        gap: 15px;
        padding: 18px;
    }
}
/*yorum*/
.testimonial-section {
    padding: 80px 20px;
   /* background: linear-gradient(135deg, #f9f9fb 0%, #eef1f8 100%);*/
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

    .testimonial-section .testimonial-section-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
        font-weight: 700;
        background: linear-gradient(45deg, #5271ff, #fb0033);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
    }

        .testimonial-section .testimonial-section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #fb0033;
            margin: 12px auto 0;
            border-radius: 2px;
        }

.testimonial-slider-container {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
  
}

.testimonial-slider-inner {
    display: flex;
    transition: transform 0.6s ease-in-out;

}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    background: #e5e6e1;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    padding: 50px 40px;
    margin: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    }

    .testimonial-card .testimonial-quote-icon {
        font-size: 3rem;
        color: #5271ff;
        margin-bottom: 20px;
        background: linear-gradient(45deg, #5271ff, #0ba84a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

    .testimonial-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #5271ff;
    }

.testimonial-author-info h4 {
    font-size: 1.2rem;
    color: #fb0033;
    margin: 0;
    font-weight: 600;
}

.testimonial-author-info p {
    font-size: 0.95rem;
    color: #777;
    margin: 4px 0 0;
}

/* Slider Buttons */
.testimonial-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #5271ff, #fb0033);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(82, 113, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

    .testimonial-slider-btn:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 20px rgba(82, 113, 255, 0.5);
    }

.testimonial-prev-btn {
    left: 0px;

}

.testimonial-next-btn {
    right: 0px;
    
}

/* Slider Dots */
.testimonial-slider-dots {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .testimonial-dot:hover {
        background-color: #fb0033;
    }

    .testimonial-dot.active {
        background: linear-gradient(45deg, #5271ff, #fb0033);
    }
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 90%; /* Kart genişliği ekranın %90’ı olacak */
        max-width: 90%; /* Maksimum genişliği de %90 */
        padding: 30px 20px; /* İç boşlukları azaltıyor */
    }

    .testimonial-section-title {
        font-size: 2rem; /* Başlık boyutunu küçültüyor */
    }

    .testimonial-text {
        font-size: 1rem; /* Yazı boyutunu küçültüyor */
    }
    .testimonial-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Revize Edilmiş Sıkça Sorulan Sorular Bölümü CSS */
/* Revize Edilmiş Sıkça Sorulan Sorular Bölümü CSS */
.faq-section {
    background-color: #ffffff; /* Ana bölümün arka planı beyaz */
    padding: 50px 15px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
    /* İsteğe bağlı gren efekti */
    /* background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%); */
}

    .faq-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }

    .faq-section .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #5271ff;
        position: relative;
        z-index: 1;
        background: linear-gradient(45deg, #5271ff, #0ba84a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

        /* Başlık altındaki çizgi ve ikon */
        .faq-section .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #fb0033, #fffc00);
            margin: 15px auto 0;
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(251, 0, 51, 0.3);
        }

.faq-accordion {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #e5e6e1; /* Akordeon kutularının arka planı gri */
    border-radius: 10px;
    /* Kutu gölgesi inceltildi */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent; /* Kenarlık inceltildi */

}

    .faq-item:hover {
        /* Hover'da gölge ve kenarlık daha belirgin ama yine de zarif */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
        border-color: rgba(82, 113, 255, 0.1);
    }

    .faq-item.active {
        border-color: #5271ff;
        /* Aktif durumda daha belirgin gölge */
        box-shadow: 0 10px 30px rgba(82, 113, 255, 0.1);

    }

.faq-question {
    width: 100%;
    padding: 20px;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

    .faq-question:hover {
        background: linear-gradient(135deg, rgba(82, 113, 255, 0.04) 0%, rgba(11, 168, 74, 0.02) 100%);
        color: #5271ff;
    }

    .faq-question.active {
        background: linear-gradient(135deg, #5271ff 0%, #0ba84a 100%);
        color: white;
    }

    .faq-question .icon-plus {
        font-size: 1.3rem;
        color: #5271ff;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.9);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .faq-question:hover .icon-plus {
        background: #fb0033;
        color: white;
        transform: scale(1.1);
    }

    .faq-question.active .icon-plus {
        transform: rotate(45deg) scale(1.1);
        background: white;
        color: #5271ff;
    }

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #fafafa;
    overflow: hidden;
    border-top: 1px solid rgba(82, 113, 255, 0.1);
}

    .faq-answer.active {
        max-height: none;
        padding: 20px; /* Burayı artırdım */
        overflow: visible;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 0.95rem;
        line-height: 1.8; /* daha geniş satır yüksekliği */
        color: #555;
        margin: 0 0 30px 0; /* her satırın altına boşluk */

    }
    
/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

        .faq-section .section-title {
            font-size: 1.8rem;
        }

    .faq-question {
        padding: 18px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

        .faq-answer.active {
            padding: 15px;
        }

    .faq-question .icon-plus {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}
/* FOOTER*/
/* Genel Footer Stilleri */
.site-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 100px 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

    /* Arka Plan Efektleri */
    .site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 15% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 40%), radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 45%), radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .site-footer::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #4a90e2 25%, #a67eff 75%, transparent 100%);
    }

/* Ana İçerik Düzeni */
.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1.5fr; /* KVKK, Hakkımızda, İletişim/Sosyal, Bülten */
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
    position: relative;
    z-index: 1;
}

/* Ortak Bölüm Başlığı Stilleri */
.footer-links h3,
.footer-about h3,
.footer-social h3,
.footer-newsletter h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: #ffffff;
    position: relative;
    font-family: inherit;
    letter-spacing: -0.2px;
}

    /* Başlık Altındaki Çizgi */
    .footer-links h3::after,
    .footer-about h3::after,
    .footer-social h3::after,
    .footer-newsletter h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(45deg, #a67eff, #2ed1a2);
        border-radius: 2px;
        box-shadow: 0 2px 8px rgba(166, 126, 255, 0.3);
    }

/* Footer Linkleri ve KVKK Bölümü */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links ul li {
        margin-bottom: 18px;
        transform: translateX(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .footer-links ul li:hover {
            transform: translateX(8px);
        }

.footer-links a {
    text-decoration: none;
    color: #a0aec0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    position: relative;
    border-radius: 6px;
}

    .footer-links a::before {
        content: '→';
        font-size: 0.85rem;
        opacity: 0;
        transform: translateX(-12px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: #4a90e2;
    }

    .footer-links a:hover {
        color: #4a90e2;
        padding-left: 8px;
    }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

/* Hakkımızda Bölümü */
.footer-about p {
    font-size: 1rem;
    line-height: 1.8;
    color: #a0aec0;
    font-weight: 400;
    margin-bottom: 16px;
}

/* İletişim ve Sosyal Medya Bölümü */
.footer-social .contact-info {
    margin-bottom: 25px;
}

    .footer-social .contact-info p {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .footer-social .contact-info a {
        color: #a0aec0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-social .contact-info a:hover {
            color: #4a90e2;
        }

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 15px; /* İletişim bilgileri ile aradaki boşluğu azaltır */
    flex-wrap: wrap;
}

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        color: #ffffff;
        font-size: 1.3rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(20px);
        position: relative;
        overflow: hidden;
    }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #4a90e2, #a67eff);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .social-icons a:hover::before {
            left: 0;
        }

        .social-icons a:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
            border-color: transparent;
            color: #ffffff;
        }

/* Haftalık Bülten */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.06);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

    .footer-newsletter p {
        font-size: 0.95rem;
        color: #a0aec0;
        margin-bottom: 24px;
        line-height: 1.6;
    }

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .newsletter-form input {
        padding: 18px 24px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 14px;
        font-size: 0.95rem;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        outline: none;
        font-family: inherit;
        font-weight: 500;
    }

        .newsletter-form input::placeholder {
            color: #94a3b8;
            font-weight: 400;
        }

        .newsletter-form input:focus {
            border-color: #4a90e2;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.2);
            transform: translateY(-2px);
        }

    .newsletter-form button {
        padding: 18px 28px;
        border: none;
        background: linear-gradient(135deg, #4a90e2 0%, #a67eff 100%);
        color: #ffffff;
        font-weight: 600;
        font-size: 0.95rem;
        border-radius: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: inherit;
        position: relative;
        overflow: hidden;
    }

        .newsletter-form button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2c72b8 0%, #8553d1 100%);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .newsletter-form button:hover::before {
            left: 0;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
        }

        .newsletter-form button:active {
            transform: translateY(-1px);
        }

/* Alt Bilgi ve Ödeme Yöntemleri */
.footer-bottom {
    /* Mevcut stilleriniz */
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 40px;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    /* Bu satırları ekleyelim/değiştirelim */
    display: flex;
    justify-content: center; /* İçeriği yatayda ortalar */
    align-items: center; /* İçeriği dikeyde ortalar */
    flex-direction: column; /* İçeriği dikey olarak sıralar */
    gap: 15px; /* Öğeler arasına boşluk bırakır */
    text-align: center; /* Metni ortalar */
}

    .footer-bottom p {
        font-size: 0.9rem;
        color: #94a3b8;
        margin: 0;
        font-weight: 500;
    }

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

    .payment-methods img {
        height: 30px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

        .payment-methods img:hover {
            opacity: 1;
        }

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 80px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px 60px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 24px 20px;
    }

    .payment-methods {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 60px 0 0;
    }

    .footer-container {
        gap: 32px;
        padding: 0 16px 50px;
    }

    .footer-links h3,
    .footer-about h3,
    .footer-social h3,
    .footer-newsletter h3 {
        font-size: 1.1rem;
    }

    .social-icons a {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}
/*// spaking club*/
.speak-club {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background-color: #fefefe;
}

.speak-club__info {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.speak-club__title {
    font-size: 2rem;
    color: #222;
}

.speak-club__desc {
    margin: 1rem 0;
    color: #555;
}

.speak-club__list {
    list-style: none;
    padding: 0;
}

.speak-club__item {
    margin-bottom: 0.5rem;
}

.speak-club__button {
    background-color: #0077cc;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.speak-club__card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.speak-club__image {
    width: 100%;
    height: auto;
}

.speak-club__card-content {
    padding: 1.2rem;
}

.speak-club__card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.speak-club__card-desc {
    color: #555;
    margin-bottom: 1rem;
}

.speak-club__tags {
    margin-bottom: 1rem;
}

.speak-club__tag {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 0.85rem;
    color: #555;
}

.speak-club__card-button {
    background-color: #00aa88;
    color: #fff;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
