﻿


.section-divider {
    width: 100%;
    height: 25px; /* iki alan arası denge */
    display: flex;
    align-items: center;
    margin: 25px 0;

}

    .section-divider::before {
        content: "";
        width: 100%;
        max-width: 1100px; /* container kadar uzun */
        height: 2px; /* ince ama net */
        margin: 0 auto;
        background: linear-gradient( 90deg, transparent, rgba(30,185,128,0.35), rgba(30,185,128,0.35), transparent );
    }










/* Genel bölüm */
.edu-courses-section {
    padding: 25px 0;
}

.edu-title {
    text-align: center;
    margin-bottom: 50px;
}

    .edu-title h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .edu-title p {
        font-size: 16px;
        color: #555;
    }

/* GRID */
.edu-courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Kart Tasarımı */
.edu-course-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

    .edu-course-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

.edu-course-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 12px; /* YÜKSEKLİK AZALDI */
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    transition: background 0.3s ease;
}

    .edu-course-overlay h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }
/* İncele butonu */
.edu-cat {
    margin-top: 4px;
    display: inline-block;
    background: #1EB980;
    color: #333;
    padding: 2px 7px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}
    .edu-cat:hover {
        transform: scale(1.05);
    }


/* Hover efekti */
.edu-course-card:hover img {
    transform: scale(1.05);
}

.edu-course-card:hover .edu-course-overlay {
    background: rgba(0, 0, 0, 0.75);
}

/* Responsive */
@media (max-width: 992px) {
    .edu-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .edu-course-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .edu-courses-grid {
        grid-template-columns: 1fr;
    }

    .edu-course-card img {
        height: 200px;
    }
}





/* Öğretmen avatar container (üst sol) */
.teacher-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3; /* overlay'in üstünde */
    pointer-events: auto;
}

/* Tekil avatar */
.teacher-badge {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: transform .18s ease, box-shadow .18s ease;
    text-decoration: none;
    background: #eee;
}

    .teacher-badge img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .teacher-badge:hover {
        transform: translateY(-4px) scale(1.06);
        box-shadow: 0 8px 18px rgba(0,0,0,0.30);
    }

/* Üst üste bindirme (overlap) için negatif margin — daha fazla profesyonel görünür */
.teacher-badges .teacher-badge + .teacher-badge {
    margin-left: -10px; /* üst üste bindirme derecesi */
}

/* +N butonu */
.teacher-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    padding: 0 6px;
    margin-left: -10px;
}

/* Mobilde daha küçük yap ve overlap azalt */
@media (max-width: 576px) {
    .teacher-badge, .teacher-more {
        width: 42px;
        height: 42px;
        min-width: 28px;
        font-size: 11px;
    }

    .teacher-badges .teacher-badge + .teacher-badge,
    .teacher-badges .teacher-badge + .teacher-more {
        margin-left: -8px;
    }
}

/* Erişilebilirlik: focus stili */
.teacher-badge:focus, .teacher-more:focus {
    outline: 2px solid #ffd54a;
    outline-offset: 3px;
}




















/* Index deki slider alanının hemen altıdaki yan yana 4 kutunun css leri. */
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
    
}

.service-box {
    background: #96caf3;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .service-box .icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .service-box h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #333;
    }

    .service-box button {
        background-color: #3C7EEA;
    }

        .service-box button:hover {
            background-color: #3067c2;
        }

    .service-box p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

/* Mobil uyum */
@media (max-width: 991px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services {
        grid-template-columns: 1fr;
    }
}


/*Hakkımızda vizyon...*/
.about {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); /* Hafif pastel gradient */
    color: #333;
    border-radius: 10px;
    margin-bottom: 50px;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.about-left, .about-right {
    flex: 0 0 30%;
}

    .about-left h2 {
        font-size: 32px;
        margin-bottom: 30px;
        color: #444;
    }

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

    .about-point span {
        font-size: 28px;
    }

    .about-point p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
    }

.about-center {
    flex: 0 0 35%;
    text-align: center;
}

    .about-center img {
        width: 100%;
        max-width: 400px;
        border-radius: 16px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.2);
        transition: transform 0.4s ease;
    }

        .about-center img:hover {
            transform: scale(1.05);
        }

.about-right p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Fade-in animasyonu */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil uyumlu */
@media (max-width: 992px) {
    .about-left, .about-center, .about-right {
        flex: 0 0 100%;
        text-align: center;
    }

    .about-left {
        margin-bottom: 30px;
    }

    .about-right p {
        margin-bottom: 15px;
    }
}


/* Derslerimiz alanı temsil eder.*/
/* Dersler alanı */
.courses {
    position: relative; /* çok önemli */
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, #3C7EEA 0%, #6BCB77 100%);
    overflow: hidden; /* ::before taşmasın */
}

    .courses h2 {
        color: aliceblue;
        text-align: center;
        /*    background: linear-gradient(135deg, #3C7EEA 0%, #6BCB77 100%);*/
    }

.read-more-btn {
    /* display: inline-block;*/
    /* padding: 8px 14px;
    font-size: 0.85rem;*/
    /*background-color: #007bff;*/
    color: #fff;
    text-decoration: none;
    /*transition: background-color 0.3s ease;*/
    /* position: absolute;*/
    /*bottom: 16px;
    right: 16px;
    border-radius:30px;*/
}

    .read-more-btn:hover {
        /*background-color: #3067c2;*/
        color: #3C7EEA;
    }

.courses::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/umd/img/arkaplan.png'); /* kökten yol verildi */
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* çok koyu olmasın */
    pointer-events: none;
}

.course-box a {
    text-decoration: none; /* alt çizgiyi kaldırır */
    color: inherit; /* başlık rengini korur */
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #333;
}

/* Grid düzeni */
.course-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PC’de 4 */
    gap: 25px;
}

.course-rowSearch {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* PC’de 4 */
    gap: 5px;
}
/*.course-box1 {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}*/
/* Kartlar */
.course-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

    .course-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    /* Görseller */
    /*.course-box img {
        width: 90%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 15px;
        border:solid;
    }*/
    .course-box img {
        width: 90%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 15px;
        border: 1px solid rgba(0, 0, 0, 0.1); /* ince, yumuşak gri ton */
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

        /* Hover efekti (isteğe bağlı, hoş bir dokunuş katar) */
        .course-box img:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: scale(1.02);
        }

    /* Başlık & açıklama */
    .course-box h3 {
        text-decoration: none; /* alt çizgiyi kaldırır */
        font-size: 20px;
        margin-bottom: 10px;
        color: #444;
        font-weight: bold;
    }

    .course-box p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

    .course-box h3:hover {
        color: #3C7EEA;
    }

/* Tablet ve mobil için */
@media (max-width: 992px) {
    .course-row {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
    }

    .course-box img {
        height: 160px;
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .course-row {
        grid-template-columns: repeat(1, 1fr); /* 2 sütun */
    }

    .course-box img {
        height: auto;
        width: 100%;
        padding: 0;
    }

    .course-box h3 {
        font-size: 18px;
        margin-bottom: 5px;
        color: #444;
        font-weight: bold;
    }
}
/*Hero-Banner-Split yani video solda yazı sağda alanı. neW*/
.hero-banner-split {
    display: flex;
    width: 100%;
    height: 70vh; /* PC için daha küçük height */
    background-color: #e0f7fa; /* sağ taraf için farklı arkaplan rengi */
}

/* Sol taraf video */
.hero-left-split {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-split {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

/* Ortadaki içerik (video üzerinde) */
.hero-center-content {
    position: absolute;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 20px;
}

    .hero-center-content h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hero-center-content p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

/* Sağ taraf içerik */
.hero-right-split {
    flex: 1;
    padding: 50px;
    background-color: #f1f8e9; /* farklı arka plan */
}

    .hero-right-split h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-right-split ul {
        padding-left: 20px;
    }

        .hero-right-split ul li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

/* Responsive: mobilde alt alta */
@media (max-width: 992px) {
    .hero-banner-split {
        flex-direction: column;
        height: auto;
    }

    .hero-left-split,
    .hero-right-split {
        flex: unset;
        width: 100%;
        height: auto;
    }

    .hero-video-split {
        height: 300px; /* mobilde video yüksekliği */
    }

    .hero-center-content h1 {
        font-size: 1.5rem;
    }

    .hero-center-content p {
        font-size: 1rem;
    }
}



/*Hero banner video alanı bölgesi css leri*/
.hero-banner {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 30px;*/
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Şeffaf overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* %40 şeffaf siyah */
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

    .hero-content h1 {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 20px;
        text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 30px;
        text-shadow: 0 3px 10px rgba(0,0,0,0.5);
    }

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

    .hero-btn:hover {
        background: #2980b9;
    }

/* Mobil uyumlu */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}


/*Başarı Hikayeleri*/
.testimonials {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); /* Canlı gradient */
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff; /* Beyaz başlık gradient üzerinde daha okunaklı */
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding-top: 15px;
    max-width: 90%;
    margin: 0 auto;
}

/*.testimonial-item {
    flex: 0 0 30%;
    background: #b8b5b5;*/ /* yumuşak gri ton */
/*border-radius: 12px;
    padding-top: 18px;*/ /* azaltılmış padding */
/*box-shadow: 0 3px 10px rgba(0,0,0,0.1);*/ /* gölgeyi de biraz hafifleterek dengeli görünüm */
/*transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}*/

.testimonial-item {
    position: relative; /* köşeye ikon yerleştirmek için gerekli */
    flex: 0 0 30%;
    background: #b8b5b5;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

/* Sol üst köşedeki ikon grubu */
.review-badge {
    position: absolute;
    top: 10px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
}

/* Hover efekti */
.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


.testimonial-item:hover {
    transform: translateY(-6px);
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #f1f1f1;
}

.testimonial-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #444;
}

.testimonial-item p {
    font-size: 14px;
    color: #03132d;
    padding: 20px;
}

/* Mobil uyumlu */
@media (max-width: 992px) {
    .testimonial-item {
        flex: 0 0 45%; /* mobilde 2 yan yana */
    }
}

@media (max-width: 576px) {
    .testimonial-item {
        flex: 0 0 80%; /* çok küçük ekranlarda tek kutu */
    }

    .testimonial-slider {
        max-width: 100%;
    }
}

/*NEDEN BİZ ALANI...*/
/* GENEL ALAN */
.features {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, #EAF8F0, #D4F0DF);
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #25633D;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* GRID */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* KUTULAR */
.feature-box {
    flex: 0 0 22%;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 22px;
    border: 2px solid #BCE8C8; /* Çerçeve eklendi */
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
}

    /* Hover efekti biraz daha canlı */
    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
        border-color: #88D5A2;
    }

/* İKON */
.feature-icon {
    font-size: 52px;
    margin-bottom: 18px;
}

/* BAŞLIK */
.feature-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2A6B48;
    font-weight: 600;
}

/* METİN */
.feature-box p {
    font-size: 15px;
    color: #4d6455;
    line-height: 1.6;
}

/* TABLET */
@media (max-width: 992px) {
    .feature-box {
        flex: 0 0 45%;
    }
}

/* MOBİL — TAM GENİŞLİK */
@media (max-width: 576px) {
    .feature-box {
        flex: 0 0 100%;
        padding: 30px 25px;
    }
}



/*İnstagram iframe*/
.instagram-grid .ratio {
    border-radius: 20px;
    overflow: hidden; /* iframe taşmasını engeller */
    border: 3px solid #3C7EEA; /* mavi çerçeve */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* isteğe bağlı gölge */
}


/*Sık Sorulan Sorular*/
#faq .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

    #faq .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: #3C7EEA;
        box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    }

#faq .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}


/* Google Maps */
.map-section {
    background: #f9f9f9;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

    .map-section h2 {
        font-weight: 700;
        color: #3C7EEA;
    }

.map-wrapper iframe {
    border: none;
}

/* Mobil için tam ekran */
@media (max-width: 768px) {
    .map-section {
        max-width: 100%;
        padding: 0 10px; /* kenarlardan biraz boşluk */
    }
}


/*eğitmenler sayfası.*/
.trainer-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    /* Her 4 karttan sonra çizgi ve boşluk */
    /*.col-12.col-md-3:nth-of-type(4n)::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #e0e0e0;
    margin: 40px 0;
}*/

    /* Mobil görünümde her 2 kartta bir çizgi */
    /*@media (max-width: 768px) {
    .col-12.col-md-3:nth-of-type(2n)::after {
        content: "";
        display: block;
        height: 1px;
        width: 100%;
        background-color: #e0e0e0;
        margin: 30px 0;
    }
}*/

    .trainer-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .trainer-card h4,
    .trainer-card h3 {
        font-family: 'Unna', serif;
        margin-bottom: 5px;
        color: #3C7EEA;
        font-size: 20px;
        position: relative;
        padding-bottom: 10px; /* Yazı altına biraz boşluk */
    }

        /* Altına zarif bir divider çizgisi */
        .trainer-card h4::after,
        .trainer-card h3::after {
            content: "";
            display: block;
            width: 100%; /* Çizgi uzunluğu */
            height: 1px; /* Çizgi kalınlığı */
            background-color: rgba(60, 126, 234, 0.35); /* Maviyi %35 opaklıkla yumuşattık */
            margin-top: 12px; /* Başlık ile çizgi arası mesafe */
            border-radius: 2px; /* Uçları yumuşat */
            opacity: 0.7; /* Hafif solgunluk, zarif görünüm */
        }

    .trainer-card p {
        color: #666; /* Yumuşak gri tonu */
        font-weight: 500;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
    }

    /* Hover efekti */
    .trainer-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
/* Responsive: Tablet */
@media (max-width: 768px) {
    .trainer-card p {
        font-size: 1.3rem;
    }
}
/* Kurucu / Sahibi kartını öne çıkar */
.founder-card {
    width: 300px;
    border: 2px solid #3C7EEA;
}




/*Header özel*/
.page-header {
    background-color: #3C7EEA;
    color: #fff;
    height: 150px; /* sabit yükseklik */
    display: flex; /* ortalamak için flex */
    flex-direction: column;
    justify-content: center; /* dikey ortalama */
    align-items: center; /* yatay ortalama */
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

    .page-header h1 {
        font-size: 2rem; /* yükseklik azaldığı için daha küçük */
        font-weight: 700;
        margin: 0;
    }

    .page-header p {
        font-size: 1rem;
        color: #f0f0f0;
        margin: 0;
    }

    /* Alt dalga efekti */
    .page-header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20px;
        background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="0.3" d="M0,128L1440,32L1440,320L0,320Z"></path></svg>') no-repeat bottom;
        background-size: cover;
    }

.mini-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
    /* Köşe köşe farklı */
    border-radius: 10px 30px 5px 20px;
    margin-left: 3px; /* yazı ile img arası boşluk */
    margin-right: 2px; /* img ile sonraki L harfi arası boşluk */
}


/*Eğitim Detay sayfaları içinnnn.*/
/* Genel Ders Sayfası Stilleri */
.ders-detay-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Başlıklar */
.ders-header h1 {
    font-size: 2.5rem; /* Masaüstü büyük başlık */
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.ders-header .ders-alt-baslik {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.ders-section h2 {
    font-size: 1.8rem; /* Alt başlık */
    font-weight: 600;
    color: #222;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0d6efd; /* Navbar link rengi ile uyumlu */
}

/* Paragraflar ve listeler */
.ders-section p,
.ders-section ul {
    font-size: 1rem;
    color: #333;
}

    .ders-section ul li {
        margin-bottom: 8px;
    }

/* Görseller */
.ders-images img {
    width: 48%;
    margin-right: 2%;
    margin-bottom: 15px;
    border-radius: 8px;
}

    .ders-images img:last-child {
        margin-right: 0;
    }

/* Responsive: Tablet */
@media (max-width: 768px) {
    .ders-header h1 {
        font-size: 2rem;
    }

    .ders-section h2 {
        font-size: 1.5rem;
    }

    .ders-images img {
        width: 100%;
        margin-right: 0;
    }
}

/* Responsive: Mobil */
@media (max-width: 480px) {
    .ders-header h1 {
        font-size: 1.6rem;
    }

    .ders-header .ders-alt-baslik {
        font-size: 0.95rem;
    }

    .ders-section h2 {
        font-size: 1.3rem;
    }

    .ders-section p,
    .ders-section ul li {
        font-size: 0.95rem;
    }
}



/*GALERY*/
.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 40px;
}

.gallery-category {
    margin-bottom: 50px;
}

    .gallery-category h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #333;
    }

/* Genel Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 sütunlu düzen (Hem PC hem mobil) */
    gap: 15px;
   

}

    .gallery-grid img {
        width: 100%;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
}

.lightbox-nav span {
    position: absolute;
    top: 50%;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 0 15px;
    transform: translateY(-50%);
}

.lightbox-nav .prev {
    left: 10px;
}

.lightbox-nav .next {
    right: 10px;
}
/* Responsive: Tablet */
@media (max-width: 768px) {
    .gallery-title {
        text-align: center;
        font-size: 1.5rem;
        color: #0d6efd;
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 4 sütunlu düzen (Tablet ve Mobil) */
    }

    .gallery-category h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #333;
    }
}

/* Responsive: Mobil */
@media (max-width: 480px) {
    .gallery-title {
        text-align: center;
        font-size: 1rem;
        color: #0d6efd;
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 4 sütunlu düzen (Mobil) */
    }

    .gallery-category h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #333;
    }
}





/*ana sayfada slider resim görsel geçişleri..*/
.slider-container {
    width: 60%;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
    .slider-container {
        width: 80%;
    }
}

/* Responsive: Mobil */
@media (max-width: 480px) {
    .slider-container {
        width: 90%;
    }
}

/*BASARİ HİKAYELERİ ALANI*/
.success-hero {
    text-align: center;
    background: #57c2fd;
    padding: 2rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
}

    .success-hero h1 {
        color: azure
    }

    .success-hero h4 {
        color: azure
    }

    .success-hero h3 {
        color: azure
    }

    .success-hero p {
        color: azure
    }

.success-filters .form-select,
.success-filters .form-control {
    min-width: 150px;
}

.success-grid .testi-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform .2s, box-shadow .2s;
}

    .success-grid .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    }

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.submit-story {
    background: #fefefe;
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

@media(max-width:767px) {
    .success-filters {
        flex-direction: column;
        gap: .5rem;
    }

    .success-hero {
        margin-bottom: 1.5rem;
        margin-top: 2.5rem;
        max-width: 100%;
    }
}


/*KARİYER ALANI*/
.career-section {
    padding: 60px 20px;
    background: #f9fcff;
}

.career-container {
    max-width: 1100px;
    margin: 0 auto;
}

.career-header {
    text-align: center;
    margin-bottom: 40px;
}

.career-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b3757;
}

.career-subtitle {
    container font-size: 17px;
    color: #555;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.career-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.career-text {
    flex: 1 1 450px;
}

    .career-text h3 {
        margin-top: 0;
        color: #0b3757;
    }

.career-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .career-list li {
        margin-bottom: 12px;
        font-size: 16px;
    }

.career-subhead {
    margin-top: 30px;
}

.career-contact {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.career-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.career-call {
    background: #0077cc;
    color: #fff;
}

.career-whatsapp {
    background: #25D366;
    color: #fff;
}

.career-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.career-image {
    flex: 1 1 450px;
    text-align: center;
}

    .career-image img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    }

@media (max-width: 768px) {
    .career-title {
        font-size: 26px;
    }

    .career-subtitle {
        font-size: 15px;
    }

    .career-content {
        flex-direction: column;
    }
}


/* Hakkımızda Alanı */
.about-section {
    position: relative;
    background: linear-gradient(to bottom, #fe8ca3, #ffe4eb);
    overflow: hidden;
}

    .about-section .container {
        position: relative;
        z-index: 1;
        max-width:90%;
        min-width:90%;
    }

    .about-section h2 {
        font-size: 2.2em;
        font-weight: bold;
        color: #fff;
        margin-bottom: 1.2rem;
    }

    .about-section p {
        color: #fff !important;
        font-size: 1.05em;
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .about-section .img-fluid {
        max-height: 500px;
        width: 100%;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

/* 🔧 SADE DOKUNUŞ: Metin – görsel denge */
@media (min-width: 992px) {
    .about-section .col-lg-4 {
        padding-left: 25px;
        padding-right: 25px;
    }


}
/* Responsive */
@media (max-width: 768px) {
    .about-section .container {
        position: relative;
        z-index: 1;
        max-width: 100%;
        min-width: 100%;
    }
}


/*BLOG YENİ DETAY*/
/* Genel yapı */
.blog-hero,
.blog-content1 {
    width: 80%;
    margin: 0 auto;
}

.blog-hero {
    background: linear-gradient(135deg, #e6f2ff, #f9fbff);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
}

    .blog-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: #0f172a;
    }

    .blog-hero p {
        color: #555;
        font-size: 1rem;
        max-width: 700px;
        margin: 0 auto;
    }

/* İçerik alanı */
.blog-content1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Kartlar */
.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

    .card h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #0f6cff;
    }

    .card p {
        color: #444;
        font-size: 0.95rem;
        line-height: 1.6;
    }

/* Liste öğeleri */
.list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

    .list-item .icon {
        font-size: 1.3rem;
        line-height: 1.2;
    }

/* Öneriler */
.tips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tip {
    flex: 1 1 30%;
    background: linear-gradient(135deg, #0f6cff, #06b6d4);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero,
    .blog-content1 {
        width: 100%;
    }

        .blog-hero h1 {
            font-size: 1.4rem;
        }

    .tips {
        flex-direction: column;
    }
}
/*OKULUMUZ HAKKINDA SAYFASI*/
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/umd/img/umudumolhome.jpg') center/cover no-repeat;
    height: 70vh; /* Varsayılan (orta ekranlar için) */
    color: #fff;
}

.oklmz {
    font-size: 45px;
    color: white;
}
/* Büyük ekranlarda (PC - desktop) biraz daha kısa */
@media (min-width: 992px) {
    .about-hero {
        height: 55vh;
    }
}

/* Tabletlerde */
@media (max-width: 991px) and (min-width: 576px) {
    .about-hero {
        height: 40vh;
    }

    .oklmz {
        font-size: 36px;
    }
}

/* Küçük ekranlarda (mobil) daha da kısa */
@media (max-width: 575px) {
    .about-hero {
        height: 30vh;
    }

    .oklmz {
        font-size: 32px;
    }
}


.timeline-item {
    background: #f8f9fa;
    border-left: 5px solid #4f6b88;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.card {
    transition: transform 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
    }

.team-member img {
    border-radius: 50%;
    max-width: 150px;
}

.gallery img {
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

    .gallery img:hover {
        transform: scale(1.05);
    }

.cta {
    background: #4f6b88;
    color: #fff;
    max-width: 80%;
    margin: auto;
    margin-bottom: 40px;
    border-radius: 10px;
}


.school-history h4 {
    color: #4f6b88; /* Başlık rengi */
    border-left: 4px solid #4f6b88;
    padding-left: 10px;
}

.school-history p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.history-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}


/*TÜM Resimlere logo basma, marka tescili*/
.watermark-container {
    position: relative;
    display: inline-block;
}

    .watermark-container img {
        display: block;
        width: 100%;
        height: auto;
    }

/* Watermark yazısı */
.watermark-text {
    position: absolute;
    bottom: 15px; /* Dilersen konumu değiştirebilirsin */
    right: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5); /* Şeffaf beyaz */
    font-weight: bold;
    pointer-events: none; /* Tıklamayı engellemez */
    user-select: none; /* Seçilemez */
    font-family: cooper;
}

/*İNSTAGRAM*/
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PC: 4 sütun */
    gap: 16px;
    max-width: 80%;
    margin: auto;
}

.instagram-item {
    width: 100%;
    box-sizing: border-box;
}

.instagram-media {
    width: 100% !important;
    max-width: 100% !important; /* Taşmayı engelle */
    min-width: 0 !important; /* Küçük ekranlarda sıkışmayı engelle */
    margin: 0 !important;
}

/* Tablet ve Mobil */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun mobil */
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun mobil */
        max-width: 100%;
    }
}


/*İNSTAGRAM ALANI EN SONNNN*/


/* Slider Wrapper Alanı */
.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 90%;
    margin: auto;
    background: linear-gradient(to right, #f58529, #f77737, #d63063, #8134af); /* Instagram renk geçişi */
    padding: 20px 10px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    /* Slider İçeriği */
    .slider-wrapper .slider-item {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }


.gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 20px;
    max-width: 100%;
}

    .gallery::-webkit-scrollbar {
        display: none;
    }

    .gallery img {
        width: 200px;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
        flex-shrink: 0;
        margin: 5px;
        border: 3px solid #E4405F;
    }

/* Genel buton */
button.nav {
    background: #0d6efd;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

    button.nav:hover {
        background: rgb(23, 21, 170);
    }

    /* Sol ok */
    button.nav.left::before {
        content: "";
        display: inline-block;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 12px solid white; /* beyaz ok */
    }

    /* Sağ ok */
    button.nav.right::before {
        content: "";
        display: inline-block;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 12px solid white;
    }

    button.nav:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

/* Instagram üst başlık ve buton */
.instagram-follow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    text-align: center;
}

    .instagram-follow h3 {
        font-size: 22px;
        color: #333;
        font-weight: bold;
    }

.insta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Instagram gradyan */
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

    .insta-btn:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

.insta-icon {
    flex-shrink: 0;
}



/* Tablet ve Mobil */
@media (max-width: 768px) {

    button.nav {
        display: none;
    }

    .slider-wrapper {
        max-width: 100%;

    }

    .gallery img {
        width: 150px;
        height: 250px;
    }
}

@media (max-width: 480px) {

    button.nav {
        display: none;
    }

    .slider-wrapper {
        max-width: 100%;
    }

    .gallery img {
        width: 100px;
        height: 180px;
    }
}





/*Eğitmenler detay sayfası için nEw*/


.trainer-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #F5F5F5;
}

    .trainer-detail .trainer-card {
        background: #D8EEFF;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        overflow: hidden;
        padding: 30px;
    }

    .trainer-detail img {
        width: 100%;
        max-width: 420px;
        height: 500px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        display: block;
        margin-bottom: 20px;
    }

    .trainer-detail h2 {
        font-size: 30px;
        margin-bottom: 10px;
        color: #2c3e50;
    }

    .trainer-detail p.role {
        font-size: 22px;
        color: #777;
        margin-bottom: 15px;
    }

    /* Başlık altına divider çizgi */
    .trainer-detail h4 {
        position: relative;
        margin-top: 25px;
        margin-bottom: 18px;
        padding-bottom: 6px;
        font-size: 20px;
        font-weight: 600;
        color: #1e90ff;
    }

        /* Divider çizgi efekti */
        .trainer-detail h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            margin: 0 auto;
            width: 100%; /* Çizgi uzunluğu */
            height: 1px;
            background: linear-gradient(90deg, #1e90ff, #6fb1fc);
            border-radius: 2px;
        }

    /* Hover efekti (isteğe bağlı animasyon) */
    /*   .trainer-detail h4:hover::after {
            width: 100px;
            transition: width 0.3s ease;
        }*/

    /* Liste stilleri */
    .trainer-detail ul {
        padding-left: 20px;
        list-style-type: disc;
        color: #444;
        text-align: left;
    }

        .trainer-detail ul li {
            padding: 3px 0;
            border-bottom: 1px solid #eee;
            font-size: 18px;
            text-align: left;
        }


@media (max-width: 768px) {
    .trainer-detail {
        padding: 10px;
    }

        .trainer-detail .trainer-card {
            padding: 15px;
            border-radius: 10px;
        }

        .trainer-detail img {
            width: 100%; /* Tam genişlik */
            height: auto; /* Oran koruyarak yükseklik ayarı */
            max-width: 100%; /* Kısıtlamayı kaldır */
            border-radius: 10px;
            box-shadow: none;
        }

        .trainer-detail h2 {
            font-size: 27px;
            text-align: center;
        }

        .trainer-detail p.role {
            font-size: 17px;
            text-align: center;
        }

        .trainer-detail ul {
            padding-left: 15px;
        }

            .trainer-detail ul li {
                font-size: 17px;
            }

        /* Resim ve yazılar dikey hizalansın */
        .trainer-detail .row {
            flex-direction: column;
            align-items: center;
        }

        .trainer-detail .col-md-5,
        .trainer-detail .col-md-7 {
            width: 100%;
        }
}


.page-header {
    padding: 60px 0; /* mobilde daha kısa */
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0; /* mobilde daha kısa */
        height: 90px;
    }

        .page-header h1 {
            font-size: 26px; /* başlığı da biraz küçültelim */
        }

        .page-header p {
            font-size: 17px;
        }
}


/*.egtmn{
    font-size:20px;
}

@media (max-width: 768px) {
    .egtmn {
        font-size: 14px;
    }
}*/
/*KURUCU ADANUR İCİN*/
/* Genel Ayar */

/* DK - DİL VE KONUŞMA DETAY SAYFASI STİLLERİ */

/* 1. Kapsayıcı (Container) */
.dk-container {
    width: 95%; /* Mobil cihazlar için daha fazla alan */
    max-width: 1000px;
    margin: 20px auto;
    padding: 0;
}

/* 2. Ana Detay Kutusu */
.dk-detail-box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Çok hafif gölge */
    border: 1px solid #eceff1; /* Çok açık gri çerçeve */
}

/* 3. Başlık Stilleri */
.dk-title {
    color: #1a73e8; /* Kurumsal Mavi */
    margin-bottom: 20px;
    font-size: 1.9em;
    text-align: center;
    font-weight: 700;
}

.dk-subtitle {
    color: #424242;
    border-bottom: 2px solid #e0f7fa; /* Çok soft alt çizgi */
    padding-bottom: 8px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 600;
}

/* 4. İçerik ve Paragraf */
.dk-intro-text, .dk-info-box p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* 5. Liste Stilleri */
.dk-list {
    list-style-type: none; /* Varsayılan işareti kaldır */
    padding-left: 0;
    margin-bottom: 25px;
}

    .dk-list li {
        background: #f7f9fc; /* Hafif arka plan rengi */
        border-left: 4px solid #4fc3f7; /* Vurgulayıcı sol çizgi */
        padding: 10px 15px;
        margin-bottom: 8px;
        border-radius: 4px;
        font-size: 1em;
        color: #333;
    }

/* 6. Görsel ve Ortalaması */
.dk-image-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.dk-lesson-image {
    width: 100%;
    max-width: 550px; /* Maksimum genişlik */
    height: auto;
    border-radius: 8px;
    display: block; /* Ortalamak için */
    margin: 0 auto; /* Ortalanmış */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 7. Bilgi Kutusu */
.dk-info-box {
    background-color: #e3f2fd; /* Çok açık mavi arka plan */
    border: 1px solid #90caf9;
    padding: 15px;
    border-radius: 6px;
    margin-top: 30px;
}

.dk-info-title {
    color: #1565c0;
    font-size: 1.2em;
    margin-bottom: 8px;
}

/* 8. İletişim Butonu (Estetik ve belirgin) */
.dk-contact-btn {
    display: block;
    width: 90%;
    max-width: 320px;
    padding: 15px 10px;
    background: linear-gradient(135deg, #1a73e8, #4285f4); /* Mavi gradient */
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.25em;
    font-weight: bold;
    margin: 30px auto 10px auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
}

    .dk-contact-btn:hover {
        background: linear-gradient(135deg, #4285f4, #1a73e8);
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(26, 115, 232, 0.4);
    }

/* Ayrıcı Çizgi */
.dk-divider {
    border-top: 1px dashed #cfd8dc;
    margin: 25px 0;
}

/* Tablet ve Masaüstü Uyumu */
@media (min-width: 768px) {
    .dk-container {
        width: 90%;
    }
 

}
/* Tablet ve Masaüstü Uyumu */
@media (max-width: 768px) {
    .dk-title {
        font-size: 1.4em;
    }
}


/* Eğitmenler Sayfası */
.trainers-section {
    background-color: #f5f5f5;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

.trainer-card {
    background-color: #a8e6a1;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    position: relative;
}

    .trainer-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

.trainer-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10%;
    width: 90%;
    margin: 0 auto;
    height: 200px;
    border: 8px solid #f2b900; /* Altın sarısı kalın border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    transition: transform 0.3s ease, border 0.3s ease;
}

.trainer-card:hover .trainer-img-container {
    transform: scale(1.1);
    border-color: #ff5733; /* Hover durumunda renk değişimi */
  
}

.trainer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 10%;
}

.trainer-name {
    font-size: 1.25rem;
    margin-top: 15px;
    color: #333;
}

.trainer-specialty {
    font-size: 1rem;
    color: #777;
    margin-top: 5px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .trainer-img-container {
        width: 90%;
        height: 250px;
    }

    .trainer-name {
        font-size: 1.125rem;
    }

    .trainer-specialty {
        font-size: 0.875rem;
    }
}


/*ADANUR YAZISI NAVBARDAKİ.*/
.navbar-brand {
    font-family: "Aristo";
}





/* === GENEL KURUCU SAYFA TASARIMI ADANUR İÇN === */
.prdx-founder-wrapper {
    max-width: 100%;
    margin:auto;
    padding: 80px 0;
    background: #c2c5c9;
    font-family: "Inter", sans-serif;
}

.prdx-founder-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* === ÜST ALAN (FOTO + BİLGİ) === */
.prdx-founder-top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.prdx-founder-photo-wrap {
    background: linear-gradient(135deg, #2e8e5a, #9affd2);
    padding: 8px;
    border-radius: 32px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.prdx-founder-photo {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    transition: 0.3s ease;
}

    .prdx-founder-photo:hover {
        transform: scale(1.03);
    }

/* Metin */
.prdx-founder-text {
    flex: 1;
}

.prdx-founder-name {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.prdx-founder-role {
    margin-top: 5px;
    font-size: 20px;
    color: #4e6f59;
    font-weight: 500;
}

/* === HAKKIMDA ALANI === */
.prdx-founder-about-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.prdx-founder-about p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 17px;
}

/* === SAYAÇLAR === */
.prdx-founder-stats {
    margin: 60px 0;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.prdx-founder-stat-box {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

    .prdx-founder-stat-box h4 {
        font-size: 32px;
        font-weight: 800;
        margin: 0;
    }

    .prdx-founder-stat-box p {
        margin-top: 5px;
        color: #4e6f59;
    }

/* === BUTONLAR === */
.prdx-founder-contact {
    display: flex;
    gap: 7px;
    justify-content: center;
}

.prdx-btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Ana renk */
.prdx-btn-main {
    background: #1d7a4b;
    color: white;
}

    .prdx-btn-main:hover {
        background: #135b37;
    }

/* WhatsApp */
.prdx-btn-whatsapp {
    background: #25d366;
    color: white;
}

    .prdx-btn-whatsapp:hover {
        background: #1da851;
    }

/* Light */
.prdx-btn-light {
    background: #e4e4e4;
    color: #333;
}

    .prdx-btn-light:hover {
        background: #cfcfcf;
    }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .prdx-founder-wrapper {
        max-width: 100%;
    
    }
    .prdx-founder-top {
        flex-direction: column;
        text-align: center;
    }

    .prdx-founder-photo {
        width: 220px;
        height: 220px;
    }

    .prdx-founder-stats {
        flex-direction: column;
    }
}







.mk-slider-wrap {
    width: 50%;
    margin: auto;
    padding: 10px 5px;
    position: relative; /* Butonları burada konumlandırmak için gerekli */
   /* border:double;
    border-radius:10px;*/
    margin-top:17px;
}


.mk-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
}

    .mk-slider::-webkit-scrollbar {
        height: 6px;
    }

    .mk-slider::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

.mk-card {
    min-width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    flex-shrink: 0;
    /* Kart boyutunun sabit olmasını sağlıyoruz */
    max-width: 150px;
    max-height: 150px;
}

.mk-card-img {
    height: 50%;
    background-size: cover;
    background-position: center;
}

.mk-card-text {
    height: 50%;
    padding: 15px 5px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    white-space: normal; /* Metnin alt satıra geçmesini sağlar */
    word-wrap: break-word; /* Uzun kelimeler satır başına taşmasın */
    font-size: calc(10px + 0.2vw); /* Font boyutunun ekran genişliğine göre dinamik küçülmesi */
}

/* Kartlar link olarak tanımlandığı için, kartlara tıklanabilirlik ekliyoruz */
.mk-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Butonlar için stil */
.mk-btn-left, .mk-btn-right {
    position: absolute;
    bottom: -50px; /* Alt kısma taşındı */
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px; /* Daha büyük buton */
    height: 50px; /* Daha büyük buton */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Sol buton */
.mk-btn-left {
    left: 40%; /* Solda konumlandırma */
}

/* Sağ buton */
.mk-btn-right {
    right: 40%; /* Sağda konumlandırma */
}

    /* Buton hover efekti */
    .mk-btn-left:hover, .mk-btn-right:hover {
        background: rgba(0, 0, 0, 0.8); /* Hoverda daha koyu arka plan */
        transform: scale(1.1); /* Butona tıklandığında büyüme efekti */
    }

    /* Buton iconları biraz büyütülecek */
    .mk-btn-left svg, .mk-btn-right svg {
        width: 18px;
        height: 18px;
        fill: #fff;
    }


/* === RESPONSIVE === */
@media (max-width: 768px) {
    .mk-slider-wrap {
        width: 100%;
    }

    .mk-btn-left, .mk-btn-right {
        display: none;
    }
}












/* =====================================================
   ÖZEL EĞİTİM – EĞİTİM DETAY SAYFASI (DÜZELTİLMİŞ)
===================================================== */

.oe-detail-page {
    font-family: 'Segoe UI', sans-serif;
    background: #f6f9f7;
    color: #2c3e2f;
}

/* ================= HERO ================= */

.oe-hero {
    position: relative;
    height: 360px;
    background: url("https://picsum.photos/1200/600") center/cover no-repeat;
}
/*Hakkımızda sayfası en üst alanı icin.*/
.oe-hero-about {
    position: relative;
    height: 360px;
    background: url("/Adanur2/img/adnhome1.png") center/cover no-repeat;
}
.oe-hero-otizm {
    position: relative;
    height: 360px;
    background: url("/Adanur2/img/adnhome1.png") center/cover no-repeat;
}
.oe-hero-ergo {
    position: relative;
    height: 360px;
    background: url("/Adanur2/img/adnhome1.png") center/cover no-repeat;
}
.oe-hero-fizyo {
    position: relative;
    height: 360px;
    background: url("/Adanur2/img/adnhome1.png") center/cover no-repeat;
}
.oe-hero-dil {
    position: relative;
    height: 360px;
    background: url("/Adanur2/img/adnokul1.png") center/cover no-repeat;
}
.oe-hero-zihinsel {
    position: relative;
    height: 360px;
    background: url("/Adanur2/img/adnhome1.png") center/cover no-repeat;
}
.oe-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 90, 60, 0.55);
}

.oe-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    color: #fff;
}

.oe-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.oe-hero-subtitle {
    font-size: 18px;
    max-width: 520px;
    line-height: 1.6;
}

/* ================= CONTENT ================= */

.oe-content {
    max-width: 1200px;
    margin: auto;
    padding: 70px 5%;
}

/* ================= MAKALE TİPİ GÖRSEL + METİN ================= */

.oe-section.oe-flex {
    display: block;
}

/* FLOAT GÖRSEL */
.oe-section .oe-image-box {
    float: left;
    width: 420px;
    max-width: 100%;
    margin: 0 40px 25px 0;
}

    .oe-section .oe-image-box img {
        width: 100%;
        height: auto;
        border-radius: 22px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

/* METİN */
.oe-text-box h2 {
    font-size: 30px;
    margin: 25px 0 16px;
    color: #2f7b57;
}

.oe-text-box p {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
    color: #3f5346;
}

/*  FLOAT TEMİZLEME (KRİTİK KISIM) */
.oe-section::after {
    content: "";
    display: block;
    clear: both;
}

/* ================= INFO GRID ================= */

.oe-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 90px 0 70px;
}

.oe-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: transform .3s;
}

    .oe-info-card:hover {
        transform: translateY(-6px);
    }

    .oe-info-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #2f7b57;
    }

    .oe-info-card p {
        font-size: 15px;
        line-height: 1.7;
        color: #4b5f53;
    }

/* ================= QUOTE ================= */

.oe-quote {
    background: linear-gradient(135deg, #2f7b57, #3fae7f);
    padding: 50px 40px;
    border-radius: 22px;
    text-align: center;
    color: #fff;
}

    .oe-quote p {
        font-size: 20px;
        font-style: italic;
        max-width: 700px;
        margin: auto;
        line-height: 1.6;
    }

/* ================= MOBILE ================= */

@media (max-width: 900px) {


    .oe-hero {
       
        height: 200px;
    
    }
    .oe-hero-about {
        
        height: 200px;
     
    }
    .oe-hero-otizm {
        height: 200px;
    }
    .oe-hero-ergo {
        height: 200px;
    }
    .oe-hero-fizyo {
        height: 200px;
    }
    .oe-hero-dil {
        height: 150px;
    }
    .oe-hero-zihinsel {
        height: 200px;
    }
    .oe-hero-title {
        font-size: 32px;
    }

    .oe-section .oe-image-box {
        float: none;
        width: 100%;
        margin: 0 0 25px 0;
    }

    .oe-text-box h2 {
        font-size: 26px;
    }
}




/*eğitmen kadro adanur a*/
:root {
    --ed-main: #3a7afe;
    --ed-accent: #ffb703;
    --ed-dark: #1f2937;
    --ed-soft: #f5f7fb;
}

.ed-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    font-family: "Segoe UI",system-ui,sans-serif;
    color: var(--ed-dark);
}

/* HERO */
.ed-hero {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

    .ed-hero::after {
        content: "";
        position: absolute;
        right: -120px;
        top: -120px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle,var(--ed-main),transparent 70%);
        opacity: .15;
    }

.ed-photo img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    padding: 10px;
}

.ed-badge {
    position: absolute;
    bottom: -14px;
    left: 20px;
    background: var(--ed-accent);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.ed-info h1 {
    font-size: 42px;
   
    margin: 0 0 10px;
}

.ed-title {
    font-size: 18px;
    opacity: .8;
    margin-bottom: 20px;
}

.ed-desc {
    line-height: 1.7;
    margin-bottom: 30px;
}

.ed-actions {
    display: flex;
    gap: 16px;
}

.ed-btn {
    padding: 14px 20px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.ed-btn-primary {
    background: var(--ed-main);
    color: #fff;
}

    .ed-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(58,122,254,.4);
    }

.ed-btn-soft {
    background: var(--ed-soft);
}

/* STATS */
.ed-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin: 50px 0;
}

.ed-stat {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
    transition: .3s;
}

    .ed-stat:hover {
        transform: translateY(-6px);
    }

    .ed-stat strong {
        display: block;
        font-size: 34px;
        color: var(--ed-main);
    }

/* TIMELINE */
.ed-timeline h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.ed-line {
    position: relative;
    padding-left: 40px;
}

    .ed-line::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(var(--ed-main),transparent);
    }

.ed-dot {
    width: 22px;
    height: 22px;
    background: var(--ed-main);
    border-radius: 50%;
    position: absolute;
    left: 1px;
}

.ed-item {
    margin-bottom: 40px;
}

@media(max-width:900px) {
    .ed-hero {
        grid-template-columns: 1fr;
    }

    .ed-stats {
        grid-template-columns: 1fr;
    }
}










/* =========================
   ABOUT SECTION – NX DESIGN
   ========================= */

.nx-about {
    padding: 120px 6%;
    background: #f8fafc;
}

.nx-about-inner {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* -------------------------
   TEXT AREA
------------------------- */

.nx-about-tag {
    font-size: 13px;
    letter-spacing: 2px;
    color: #64748b;
    text-transform: uppercase;
}

.nx-about-text h2 {
    font-size: 44px;
    line-height: 1.2;
    margin: 16px 0 24px;
    color: #0f172a;
}

    .nx-about-text h2 strong {
        color: #2563eb;
    }

.nx-about-text p {
    max-width: 460px;
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

/* -------------------------
   IMAGE AREA
------------------------- */

.nx-about-media {
    position: relative;
    display: grid;
    place-items: center;
}

.nx-img {
    width: 62%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 32px 60px rgba(0,0,0,0.18);
    transition: transform .6s ease, box-shadow .6s ease;
}

    .nx-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* CROSS OVERLAP */
.nx-img-a {
    transform: translate(-30px, -20px) rotate(-4deg);
    z-index: 2;
}

.nx-img-b {
    transform: translate(30px, 20px) rotate(3deg);
    z-index: 1;
}

/* HOVER – MICRO MOTION */
.nx-about-media:hover .nx-img-a {
    transform: translate(-24px, -16px) rotate(-2deg) scale(1.03);
}

.nx-about-media:hover .nx-img-b {
    transform: translate(24px, 16px) rotate(2deg) scale(0.99);
}

/* -------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 992px) {

    .nx-about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nx-about-text h2 {
        font-size: 36px;
    }

    .nx-about-media {
        margin-top: 40px;
    }

    .nx-img {
        width: 78%;
    }

    .nx-img-a {
        transform: translate(-20px, -14px) rotate(-3deg);
    }

    .nx-img-b {
        transform: translate(20px, 14px) rotate(3deg);
    }
}

@media (max-width: 480px) {

    .nx-about {
        padding: 90px 6%;
    }

    .nx-about-text h2 {
        font-size: 32px;
    }

    .nx-img {
        width: 88%;
    }

    .nx-img-a {
        transform: translate(-14px, -10px) rotate(-2deg);
    }

    .nx-img-b {
        transform: translate(14px, 10px) rotate(2deg);
    }
}










/* Sayfa arka planı */
.trainer-detail-wrapper {
    /* background-color: #f5f7fb;*/
    padding-top: 10px;
    padding-bottom: 60px;
}

/* Kart */
.trainer-carde {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 80%;
}
    .trainer-carde h2,
    .trainer-carde h5,
    .trainer-carde p,
    .trainer-carde .badge,
    .trainer-carde div {
        text-align: left;
    }
    .trainer-carde img {
        border-radius:10px;
    }


/* Mobil */
@media (max-width: 768px) {
    .trainer-carde {
        max-width: 96%;
        padding: 24px;
    }
}








.about_details {
    background: linear-gradient(135deg, #f7f9fc, #eef2f7);
    padding: 40px 30px;
    margin-top: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

    .about_details p {
        font-size: 16px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 18px;
    }

    .about_details h4 {
        margin-top: 35px;
        margin-bottom: 15px;
        font-size: 22px;
        font-weight: 700;
        color: #2c3e50;
        position: relative;
        padding-left: 14px;
    }

        .about_details h4::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 60%;
            background: #4f8cff; /* vurgu rengi */
            border-radius: 4px;
        }

    /* İlk paragrafı biraz öne çıkar */
    .about_details > p:first-of-type {
        font-size: 17px;
        font-weight: 500;
        color: #333;
    }

/* Responsive ayarlar */
@media (max-width: 768px) {
    .about_details {
        padding: 35px 25px;
    }

        .about_details h4 {
            font-size: 20px;
        }

        .about_details p {
            font-size: 15px;
        }
}

@media (max-width: 480px) {
    .about_details {
        padding: 30px 20px;
        border-radius: 12px;
    }
}
