body {
    background-image: url("/frontend/images/home/bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: repeat-y;
}
/* 1. ANA HALİ (En Tepe) */
.navbar {
    background: transparent !important;
    padding-top: 20px;
    padding-bottom: 20px;
    /* Geçiş efektlerini ana class'a tanımlıyoruz ki yukarı çıkarken de çalışsın */
    transition: all 0.4s ease-in-out;
}

.navbar .navbar-brand img {
    max-height: 80px;
    max-width: 200px;
    transition: all 0.4s ease-in-out;
}

.navbar .nav-link {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.4s ease-in-out;
}

/* 2. SCROLL HALİ (Aşağı İndiğinde) */
.navbar.nav-scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 10px; /* Hafif daralma efekti */
    padding-bottom: 10px;
}

.navbar.nav-scrolled .nav-link {
    color: #333 !important; /* Yazılar koyulaşır */
}

.navbar.nav-scrolled .navbar-brand img {
    max-width: 150px;
    max-height: 60px; /* Logo biraz küçülür */
}

/* Navbar-brand yazısı varsa onun için */
.navbar.nav-scrolled .navbar-brand {
    color: #333 !important;
}
.navbar .info-button.btn.btn-primary {
    background-color: #001937 !important;
    border-radius: 50px !important;
}
/* Home page slider */
.btn-slider {
    background: linear-gradient(135deg, #545fcb 0%, #202870 100%) !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
}
/* Slider Genel Kapsayıcısı */
.home-page-slider {
    position: relative;
    overflow: hidden;
}

.slider-content-wrapper {
    height: 500px; /* Slider'ın sabit yüksekliği (isteğe göre ayarla) */
}
.slider-text-content {
    text-align: end;
}
/* Masaüstü Ayarları */
@media (min-width: 769px) {
    .slider-text-col {
        padding-left: 5%; /* Metinlerin soldan boşluğu */
    }

    .slider-text-content h2 {
        font-weight: 1000;
        font-size: 36px;
        color: #0b1e33; /* Tasarımdaki koyu lacivert */
        margin-bottom: 20px;
        letter-spacing: 6px;
        line-height: 42px;
    }

    .slider-text-content p {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
    }

    /* Sağdaki PNG Görsel */
    .slider-png-image {
        max-height: 90%; /* Görselin yüksekliğini sınırla */
        object-fit: contain;
        transform: translateX(10%); /* Görseli biraz daha sağa yaslamak için */
    }
}

/* Mobil Ayarları (Sadece PNG Görsel Görünecek) */
@media (max-width: 768px) {
    .slider-content-wrapper {
        height: auto; /* Mobilde yükseklik görsele göre ayarlansın */
        padding: 50px 0;
    }

    .slider-image-col {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .slider-png-image {
        max-height: 300px; /* Mobilde görselin çok büyümesini engelle */
        width: auto;
    }
}

/* Sekiz Akademi Section */
.sekiz-akademi-section {
    background-color: #fdf2a7; /* Görseldeki sarı tonu */
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #001937; /* Lacivert tonu */
}

/* Sol alttaki logo arka planı */
.sekiz-akademi-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background-image: url("/frontend/images/home/logobanner.png");
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1; /* Logoyu hafif göstermek için */
    z-index: 10;
}

.main-title {
    letter-spacing: -1px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.more-link {
    text-decoration: none;
    color: #001937;
    font-weight: bold;
    letter-spacing: 5px;
    border-bottom: 2px solid #001937;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.more-link:hover {
    opacity: 0.7;
}

.question-mark {
    font-size: 550px;
    font-weight: 1000;
    color: #001937;
    line-height: 1;
    display: inline-block;
}

/* Mobilde soru işaretini küçült veya gizle */
@media (max-width: 991px) {
    .question-mark {
        font-size: 8rem;
    }
}
.artistik-button-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    height: 60px;
    margin: 20px auto;
    border: 2px solid #0b1e33; /* Genel çerçeve */
    overflow: visible; /* Sonsuzluk taşabilsin diye */
}

.btn-split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Sol Taraf */
.btn-left {
    background-color: #fdfbc7; /* Tasarımdaki açık sarı */
    color: #0b1e33;
    padding-right: 30px;
}

/* Sağ Taraf */
.btn-right {
    background-color: #0b1e33; /* Tasarımdaki lacivert */
    color: #fff;
    padding-left: 30px;
}

/* Sonsuzluk İkonu Konumlandırma */
.infinity-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 60px;
    height: 30px;
    background: #0b1e33; /* Arka planı lacivert yapıyoruz */
    border: 3px solid #fdfbc7; /* Etrafına sarı çerçeve */
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none; /* Butonlara basmaya engel olmasın */
}

.infinity-divider svg {
    width: 35px;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

/* Hover Efektleri */
.btn-left:hover {
    background-color: #fff;
    padding-left: 10px;
}

.btn-right:hover {
    background-color: #162e4a;
    padding-right: 10px;
}

/* SSS */

/* FAQ Genel Arkaplan */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Soru Satırı */
.faq-item {
    background: #fff3b0;
    /* Görseldeki sarı/krem tonu */
    border-radius: 50px;
    /* Tam oval yapı */
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 40px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: #001d3d;
    cursor: pointer;
    outline: none !important;
}

/* Artı/Eksi İkonu */
.faq-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    background: #001d3d;
    color: #fff3b0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Cevap Alanı */
.faq-answer {
    padding: 0 40px 25px 40px;
    color: #001d3d;
    font-size: 1rem;
    line-height: 1.6;
    background: #fff3b0;
}

/* Açık Olduğundaki Stil Değişimleri */
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    /* Artıyı çarpıya çevirir */
    background: #d4a017;
}

.faq-item:has(.show) {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobil Ayarı */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 25px 20px 25px;
    }
}
.my-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}
@media (max-width: 1399px) {
    .my-10 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
}
@media (max-width: 1099px) {
    .my-10 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
}
@media (max-width: 991px) {
    .my-10 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important;
    }
}
@media (max-width: 767px) {
    .my-10 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}
/*featured products*/
/* Section ve Container */
.container-slider {
    padding: 0 150px;
}
.feature-slider-container {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 80px; /* Oval yapı */
    padding: 80px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Sol Görsel Alanı */
.feature-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}
.circle-bg {
    width: 350px;
    height: 350px;
    background: #f0f0f0; /* Açık gri yuvarlak */
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-png {
    position: absolute;
    max-width: 85%;
    max-height: 85%;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.feature-png.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Sağ İçerik Alanı */
.feature-content-wrapper {
    flex: 1.5;
    padding-left: 60px;
}
.feature-text-block {
    display: none;
    animation: fadeInRight 0.6s ease;
}
.feature-text-block.active {
    display: block;
}
.feature-title {
    font-weight: 800;
    font-size: 2.8rem;
    color: #0b1e33;
    margin-bottom: 20px;
}
.feature-description {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Daha Fazla Butonu */
.btn-more {
    font-weight: 700;
    color: #0b1e33;
    text-decoration: none;
    border-bottom: 2px solid #0b1e33;
    padding-bottom: 5px;
    transition: 0.3s;
}
.btn-more:hover {
    color: #6c757d;
    border-color: #6c757d;
}

/* Progress Bar */
.feature-progress-nav {
    width: 280px;
    position: relative;
}
.feature-progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: #6c757d;
    transition: all 0.6s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: -12px;
}
.step-dot {
    width: 18px;
    height: 18px;
    background: #e0e0e0;
    border: 4px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}
.step-dot.active {
    background: #6c757d;
    transform: scale(1.3);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobil */
@media (max-width: 991px) {
    .feature-slider-container {
        flex-direction: column;
        padding: 40px;
        border-radius: 40px;
        text-align: center;
    }
    .feature-content-wrapper {
        padding-left: 0;
        mt: 40px;
    }
    .circle-bg {
        width: 250px;
        height: 250px;
    }
    .feature-progress-nav {
        margin: 40px auto 0;
    }
}

/*featured blogs*/

/* Arkaplan ve Genel Font */
.blog-grid-section {
    background-color: #01325a !important;
    /* Koyu Lacivert */
    min-height: 750px;
    position: relative;
}

/* Arkaplandaki Kitap İkonu */
.blog-grid-section::before {
    content: ""; /* İkon kodunu sildik, boş bıraktık */
    position: absolute;
    left: 0;
    bottom: 0;

    /* Görsel Ayarları */
    width: 400px; /* Görselin genişliği (eski 20rem'e denk bir değer) */
    height: 70%; /* Görselin yüksekliği */
    background-image: url("/frontend/materials/blogbg.png"); /* Yolun doğruluğundan emin ol */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;

    pointer-events: none;
    z-index: 0; /* İçeriğin altında kalması için */
}

.section-main-title {
    color: #fff3b0 !important;
    letter-spacing: 5px;
    font-size: 85px;
    font-weight: 1000;
}

/* Kartın Ana Yapısı */
.blog-cards {
    position: relative;
    float: right;
    max-width: 1400px;
}

.blog-card {
    width: 400px;
    height: 500px;
    background: #fff3b0;
    border-radius: 70px 15px 15px 70px;
    padding: 30px 20px;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px);
}

/* Kart Üst Başlık */
.card-top-header {
    text-align: center;
    margin-bottom: 20px;
    min-height: 50px;
}

.blog-mini-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #01325a;
    margin: 0;
    text-align: end;
}

/* Kart Resim Alanı */
.blog-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Görseldeki gibi hafif içe gömük efekt için opsiyonel: */
    border: 5px solid #01325a;
}

/* Beyaz İçerik Alanı */
.blog-body-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    /* Metin kutusu az yuvarlak */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #01325a;
    line-height: 1.5;
    text-align: end;
    margin-bottom: 20px;
}

/* Footer ve Buton */

.footer-area {
    background-color: #fff;
    color: #01325a;
}
.footer-logo {
    display: flex;
    justify-content: center;
}
/* Sol Taraf */
.footer-logo img {
    max-height: 80px;
    width: auto;
    text-align: center;
    align-self: center;
}

.company-name {
    color: #777;
    font-size: 14px;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    gap: 15px;
    max-width: 350px;
    position: relative;
    align-items: baseline;
    background: #d3d3d3;
    border-radius: 10px 10px 0 0;
    justify-content: right;
    float: right;
}

.footer-socials a {
    color: #000;
    font-size: 40px;
    opacity: 0.6;
    transition: 0.3s;
}

.footer-socials a:hover {
    opacity: 1;
    color: #0d6efd;
}

/* Sağ Taraf: Menülerin Yan Yana Dizilimi */
.footer-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    /* Sağ tarafa yasla */
    gap: 60px;
    /* Menü kolonları arası boşluk */
}

/* Menü Başlıkları ve Linkleri */
.footer-menu-container ul li a {
    color: #01325a;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
}

.footer-menu-container ul li a:hover {
    color: #0d6efd;
}

/* Alt Banner */
.footer-banner-wrap img {
    max-width: 200px;
    object-fit: cover;
}

.copyright-text p {
    font-size: 12px;
    color: #444;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .footer-area {
        text-align: center;
    }

    .footer-menu-container ul {
        justify-content: center;
        margin-top: 40px;
        gap: 30px;
    }

    .footer-socials {
        justify-content: center;
    }
}

.footer-socials-title {
    font-size: 32px;
    font-weight: 1000;
    color: #000000;
    line-height: 0.8;
}

.footer-socials-title span {
    font-size: 42px;
    font-weight: 1000;
    color: #000000;
}

.some-icons {
}
.blog-footer {
    text-align: end;
    padding-top: 15px;
}

.btn-hemen-oku {
    color: #01325a;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: letter-spacing 0.3s ease;
}

.btn-hemen-oku:hover {
    letter-spacing: 2px;
    color: #f39c12;
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .blog-card {
        border-radius: 30px;
    }

    .section-main-title {
        font-size: 3rem;
        text-align: center !important;
    }
}
/* pages */
.banner-pages {
    margin: 10% auto;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    padding: 8% 8%;
}
.banner-text {
    max-width: 46%;
}
.banner-text h1 {
    font-size: 62px;
    font-weight: 1000;
}
.banner-text p {
    font-size: 24px;
    font-weight: 300;
}
.banner-icon {
    position: absolute;
    right: 10%;
}
.header-about {
    position: relative;
    width: 100%;
    margin: 40px 0;
}
#aboutSection .row {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-self: center;
}
#aboutSection .row .col-md-6.text {
    display: flex;
    justify-content: center;
    align-self: center;
    flex-direction: column;
}

.about-header-inner {
    position: relative;
    background: #0b2a4a; /* lacivert */
    height: 0.65em; /* FONT ile senkron */
    display: flex;
    align-items: center;
    font-size: clamp(2rem, 5vw, 4rem);
}

.about-header-inner span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    font-size: 65px;
    font-weight: 700;
    color: #fff;

    background: #0b2a4a;
    padding: 0 20px;
    line-height: 1;
}
.about-header-inner span {
    background: var(--bg-color);
}
/* 1. Kapsayıcı ve Izgara Ayarları */
.targets-area .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px; /* Dış boşluğu dengelemek için */
    margin-left: -5px;
}

.targets-area .col-12.col-md-6 {
    padding: 10px; /* İki kolon yan yana gelince toplam 10px boşluk oluşur */
    display: flex; /* İçerideki target-item'ın tam boy olması için */
}

/* 2. Ana Kart Yapısı (Maskeleme Burası) */
.target-item {
    background-color: #fff2ac; /* İstediğin sarı tonu */
    position: relative; /* İçindeki öğeleri konumlandırmak için referans */
    width: 100%;
    min-height: 200px; /* İçeriğe göre yükseklik (gerekirse artırabilirsin) */
    overflow: hidden; /* MASKLEME: Dışarı taşan görselleri keser */
    border-radius: 0; /* Eğer oval istersen px verebilirsin */
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 3. Görsel Maskeleme ve Sol Alt Hizalama */
.target-bg-img {
    position: absolute;
    left: 30px;
    bottom: 20px;
    width: auto;
    max-width: 60%;
    height: auto;
    max-height: 70%;
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
}

/* 4. Yazı Alanı */
.target-text {
    text-align: end;
    position: relative;
    z-index: 2;
    padding: 21px;
    height: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    max-width: 70%;
    left: 30%;
}

/* 5. Tipografi (Başlık ve Paragraf) */
.target-text h3 {
    font-size: 18px;
    font-weight: 1000; /* İstediğin ultra kalınlık */
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1; /* Yazının altından-üstünden taşmaması için */
    margin-top: 0;
    display: block; /* Arka planı komple kaplaması için block */
}

.target-text p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 400;
}

/* Responsive Düzenleme: Mobilde resimler yazıyı çok ezmesin */
@media (max-width: 768px) {
    .target-bg-img {
        max-width: 40%;
        opacity: 0.5; /* Mobilde okunurluk için hafif şeffaflık */
    }
}

/*cta*/
.cta-subpage {
    position: relative;

    overflow: hidden;
}
.real-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f3f3f3;
    z-index: 0;
}
.cta-subpage .middle {
    display: flex;
    flex-direction: column;
}
.cta-subpage .middle .button-area {
    display: flex;
    justify-content: center;
    align-items: end;
}
.cta-subpage .middle .logo-cta {
    position: relative;
    top: 25px;
}
.wp-cta button,
.form-cta button {
    border-radius: 20px 20px 0 0;
    background-color: #d3d3d3;
    border: none !important;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    letter-spacing: 2px;
}

.wp-cta i,
.form-cta i {
    font-size: 20px !important;
}
.wp-cta {
    text-align: end;
    z-index: 1;
}
.wp-cta button {
    padding: 5px 20px;
    color: #fff;
}
.form-cta {
    text-align: start;
    z-index: 1;
}
.form-cta button {
    padding: 5px 20px;
    color: #303f9f;
}
.wp-cta p,
.form-cta p {
    font-weight: 1000;
    font-size: 20px;
    margin-bottom: 10px;
}
.cta-container i.bi.bi-puzzle-fill,
.cta-container i.bi.bi-whatsapp {
    font-size: 20px !important;
}

/*işletişim sayfası*/
.contact-section {
    background-color: var(--white);
    color: var(--navy);
}
/*cta2*/
.cta-banner-section {
    background-color: #e9e9e9; /* Görseldeki açık gri arka plan */
    width: 100%;
    margin-top: 1%;
}

.cta-container {
    max-width: 1299px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}
.cta-container i.bi.bi-puzzle-fill,
.cta-container i.bi.bi-whatsapp {
    font-size: 35px !important;
}

.cta-characters {
    flex-shrink: 0;
}

.cta-characters img {
    height: 180px;
    display: block;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin: 20px auto;
    letter-spacing: 1px;
}

/* Buton Grupları */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    align-items: center;
    text-align: center;
    padding: 0 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    width: 350px;
    border: 3px solid transparent;
    display: flex;
    justify-content: space-evenly;
}
.btn-cta span {
    text-align: center;
}
.cta-icon {
    font-size: 1.8rem;
    margin-right: 15px;
}

/* Beyaz Buton (WhatsApp) */
.btn-white {
    background-color: #e5e5e5;
    color: #1a1a1a;
    border-color: #2b1f4d; /* Lacivert çerçeve */
}

.btn-white:hover {
    background-color: #ffffff;
}

/* Koyu Buton (Başvuru) */
.btn-dark {
    background-color: #2b1f4d; /* Lacivert arka plan */
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #3d2d6d;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-characters img {
        height: 150px;
    }
}
/**/
/* Sol Taraf: Görsel ve Avatar Alanı */
.contact-hero-card {
    background-color: var(--yellow);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.avatar-wrapper {
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--navy);
    position: relative;
    z-index: 2;
}

.avatar-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

/* Sağ Taraf: İletişim Bilgileri */
.contact-list-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--navy);
}

.contact-list-item:hover {
    transform: translateX(10px);
    background: var(--yellow);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
}

.contact-list-item h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-list-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Alt Kartlar */
.info-box-simple {
    border: 2px solid var(--yellow);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

.info-box-simple i {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-box-simple:hover {
    background-color: var(--yellow);
}

.btn-wp {
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* hizmetlerimiz */
/* Ana Kart Ayarları */
.product-card-custom {
    background-color: #ffffff;
    border-radius: 70px; /* Görseldeki yüksek yuvarlatma */
    overflow: hidden; /* İçeriklerin köşelerden taşmaması için */
    border: 1px solid #e9e9e9; /* Hafif kenarlık */
}

/* Sol Taraftaki Gri Alan */
.product-avatar-zone {
    background-color: #d9d9d9; /* Görseldeki açık gri tonu */
    display: flex;
    align-items: center; /* Dikeyde ortalama */
    justify-content: center; /* Yatayda ortalama */
    padding: 20px;
}

.product-avatar-img {
    max-width: 100%;
    height: auto;
    padding: 10%;
    object-fit: contain;
}

/* Sağ Taraftaki İçerik Alanı */
.product-content-zone {
    padding: 30px; /* İç boşluk */
    position: relative;
}

.product-title {
    color: #333333;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.product-desc {
    color: #000;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Sağ Alt Buton Stili */
.btn-detayli-incele {
    display: inline-block;
    background-color: #2d4091; /* Görseldeki lacivert/mavi tonu */
    color: #fff2ac;
    padding: 10px 30px;
    border-radius: 20px 0 0 0; /* Sadece sağ alt köşeyi kartla uyumlu yuvarlar */
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease;

    /* Butonu sağ alta tam sabitlemek için (paddingsiz kartın kenarına yapışsın diye) */
    position: absolute;
    right: 0;
    bottom: 0;
}

.btn-detayli-incele:hover {
    background-color: #1a2761; /* Hover rengi */
    color: #ffffff;
}

/* Responsive Düzenleme: Mobilde kart dikey akışa geçer */
@media (max-width: 576px) {
    .product-avatar-zone {
        height: 180px;
    }
    .product-content-zone {
        padding: 20px;
        padding-bottom: 60px; /* Buton için yer aç */
    }
    .btn-detayli-incele {
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        text-align: center;
        border-radius: 0; /* Mobilde tam genişlik */
    }
}

/*blog*/

/* Arkaplan ve Genel Font */
.blog-grid-section {
    background-color: #01325a !important; /* Koyu Lacivert */
    min-height: 750px;
    position: relative;
}

.section-main-title {
    color: #fff3b0 !important;
    letter-spacing: 5px;
    font-size: 85px;
    font-weight: 1000;
}

/* Kartın Ana Yapısı */
.blog-cards {
    position: relative;
    float: right;
    max-width: 1400px;
}
.blog-card {
    width: 400px;
    height: 500px;
    background: #fff3b0;
    border-radius: 70px 15px 15px 70px;
    padding: 30px 20px;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px);
}

/* Kart Üst Başlık */
.card-top-header {
    text-align: center;
    margin-bottom: 20px;
    min-height: 50px;
}

.blog-mini-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #01325a;
    margin: 0;
    text-align: end;
}

/* Kart Resim Alanı */
.blog-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Görseldeki gibi hafif içe gömük efekt için opsiyonel: */
    border: 5px solid #01325a;
}

/* Beyaz İçerik Alanı */
.blog-body-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px; /* Metin kutusu az yuvarlak */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #01325a;
    line-height: 1.5;
    text-align: end;
    margin-bottom: 20px;
}

/* Footer ve Buton */
.blog-footer {
    text-align: end;
    padding-top: 15px;
}

.btn-hemen-oku {
    color: #01325a;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: letter-spacing 0.3s ease;
}

.btn-hemen-oku:hover {
    letter-spacing: 2px;
    color: #f39c12;
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .blog-card {
        border-radius: 30px;
    }
    .section-main-title {
        font-size: 3rem;
        text-align: center !important;
    }
}

.blog .banner-pages {
    margin: 8% auto;
}
.blog .banner-icon {
    max-height: 400px;
}
.blog .blog-card {
    width: 250px;
    height: 400px;
    background: #fff3b0;
    border-radius: 70px 15px 15px 70px;
    padding: 30px 20px;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: none;
}
.blog .blog-body-content {
    padding: 10px;
}
/*service detail*/
.service-detail {
    width: 100%;
}
.service-detail .title-area {
    justify-content: center;
    max-width: 1499px;
    margin: auto;
    padding: 5% 0 0% 0;
}
.service-detail .title-area img {
    max-height: 550px;
}
.service-detail .title-area .text-zone {
    padding: 20px;
}
.service-detail .title-area .text-zone h1 {
    font-weight: 500;
    text-transform: uppercase;
    color: #01325a;
    margin: 0;
    text-align: start;
    max-width: 80%;
}
.service-detail .title-area .text-zone .service-description {
    max-width: 80%;
    background: #cdcdcd;
    padding: 2% 5% 2% 5%;
    border-radius: 60px;
    font-weight: 500;
    color: #01325a;
    line-height: 1.5;
    text-align: start;
    margin-bottom: 20px;
}

/*kazanım*/
.program-gains h2 {
    color: #dbab59;
}
.program-gains ul {
    background-color: #fff2ac;
    padding: 3% 5%;
    border-radius: 20px;
    max-width: 70%;
    letter-spacing: 1.2px;
}
.program-gains ul li {
    font-size: 18px;
    margin: 1rem;
}
/*süreç*/
.process-flow-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    color: #1a4da1;
    margin-bottom: 40px;
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

.process-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden; /* Resmin taşmasını engeller */
    position: relative;
    min-height: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 90, 0.4);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card.highlight {
    border: 2px solid #1a4da1;
}

/* Arka Plan Görseli Maskeleme */
.card-bg-mask {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 80px;
    height: 80px;
    z-index: 1;
    opacity: 0.2; /* Yazıların okunması için soft görünüm */
}

.card-bg-mask img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: #1a4da1;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #444;
}

.output {
    margin-top: auto;
    font-style: italic;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.duration {
    display: block;
    text-align: center;
    font-weight: 800;
    margin-top: 15px;
    color: #333;
    font-size: 14px;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
/* program cards */

/* 1. KISIM: Program Kartları */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    padding: 40px;
}

.program-card {
    background: white;
    border-radius: 40px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-left {
    background: var(--card-bg);
    width: 140px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.card-left img {
    width: 90%;
    height: auto;
}

.card-right {
    padding: 25px;
    flex: 1;
    position: relative;
}

.card-right h3 {
    font-size: 1.2rem;
    color: #444;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.card-right p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.btn-detail {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--btn-blue);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    border-top-left-radius: 20px;
}

/* 2. KISIM: Program Detay Alanı */
.program-details {
    background: #616998;
    padding: 35px 20px 90px 20px;
    margin-bottom: 6px;
    text-align: center;
    color: white;
}

.main-title {
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 50px;
    position: relative;
    font-weight: 1000;
}

.details-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.detail-col {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border-radius: 40px;
    padding: 30px;
    color: #333;
    text-align: left;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.detail-col h4 {
    text-align: center;
    font-weight: 800;
    margin-bottom: 20px;
}

.detail-col ul {
    list-style: none;
    padding: 0;
}
.detail-col ul li,
.detail-col p {
    font-size: 14px;
}
.detail-col ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.detail-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
}

/* Sütun Renkleri */
.green {
    background: #bef8ae;
}
.green-text {
    color: #bef8ae;
}
.red {
    background: #ec6262;
    color: white;
}
.red-text {
    color: #ec6262;
}
.gray {
    background: #eae9f3;
}
.gray-text {
    color: #eae9f3;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
    .details-wrapper {
        flex-direction: column;
        align-items: center;
    }
}
.box {
    display: flex;
    flex-direction: column;
}
.box h4 {
    font-weight: 1000;
}
/* Program Başlık Alanı */
.program-details {
    position: relative;
    padding-top: 80px; /* Üstten oklar için net boşluk */
}

.main-title {
    position: relative;
    display: inline-block;
    margin-bottom: 70px;
    z-index: 10;
}

/* PROGRAM yazısının altındaki minik çıkış noktası */

/* Tüm kutuların (box) ortak ok yapısı */
.box {
    position: relative;
}

/* Dik çizgiler */
.box::before {
    top: -30%;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 35px;
    background: white;
}

/* Ok uçları (Üçgenler) */
.box::after {
    content: "";
    position: absolute;
    top: -7%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid white;
}

/* SOL KUTU: Çizgiyi sağa doğru büküp PROGRAM yazısına bağlar */
.details-wrapper .box:first-child::before {
    height: 23%;
    width: 69%;
    border-top: 15px solid white;
    border-left: 15px solid white;
    border-radius: 20px 0 0 0;
    background: transparent;
    left: 48%;
    transform: none;
}

/* SAĞ KUTU: Çizgiyi sola doğru büküp PROGRAM yazısına bağlar */
.details-wrapper .box:last-child::before {
    height: 23%;
    width: 69%;
    border-top: 15px solid white;
    border-right: 15px solid white;
    border-radius: 0 20px 0 0;
    background: transparent;
    right: 48%;
    left: auto;
    transform: none;
}

/* ORTA KUTU: Sadece dik iner */
.details-wrapper .box:nth-child(2)::before {
    height: 15%;
    top: -20%;
}

/* Mobilde okları iptal et */
@media (max-width: 992px) {
    .main-title::after,
    .box::before,
    .box::after {
        display: none !important;
    }
}
.service-detail .cta-subpage {
    bottom: 100px;
}
/*benefits */
/* Benefits Banner (Lacivert Kısım) */
.benefits-frame {
    max-width: 1399px;
    margin: 0 auto;
}
.benefits-title {
    text-align: center;
    color: #21274e;
    margin-bottom: 30px;
    margin-left: 15%;
    font-weight: 700;
}

.benefits-box {
    background: #1a233a; /* Lacivert arka plan */
    border-radius: 30px;
    position: relative;
    padding: 40px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* İçeriği sağa yaslar */
}

.benefits-bg-icon {
    position: absolute;
    left: 20px;
    bottom: -10px;
    width: 330px; /* Grafik boyutu */
    z-index: 1;
}

.benefits-bg-icon img {
    width: 100%;
    height: auto;
}

.benefits-content {
    position: relative;
    z-index: 2;
    width: 70%;
    text-align: right;
    color: #fff;
}

.benefits-content ul {
    list-style: none;
    padding: 0;
}

.benefits-content ul li {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #fff2ac;
    padding-left: 15%;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .mentor-card-item {
        width: 100%;
    }
    .benefits-box {
        justify-content: center;
        text-align: center;
    }
    .benefits-content {
        width: 100%;
        text-align: center;
    }
    .benefits-bg-icon {
        opacity: 0.2;
        width: 150px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* paket*/
.approach-summary-section {
    margin-top: 2%;
    padding: 60px 20px;
    background: #fff;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Sol Uyarı Kutusu */
.wrong-notion-box {
    display: flex;
    flex-direction: column;
    min-width: 250px;
}

.wrong-notion-box .label {
    font-weight: 800;
    font-size: 2rem;
    color: #000;
}

.wrong-notion-box .value {
    font-weight: 800;
    font-size: 2rem;
    color: #ff0202; /* Görseldeki kırmızı vurgu */
    margin-top: 5px;
}

.approach-main-title {
    font-weight: 200; /* Görseldeki gibi ince/light font */
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.step-box img {
    width: 50px; /* İkon boyutu */
    height: 50px;
    object-fit: contain;
}

.step-box span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.step-separator {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 25px; /* İkonlarla hizalamak için */
}

.approach-sub-text {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
    margin: 0 auto;
    text-align: center;
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .approach-container {
        flex-direction: column;
        text-align: center;
    }
    .steps-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    .wrong-notion-box {
        margin-bottom: 20px;
    }
}

.service-buttons-area {
    display: flex;
    flex-direction: row;
    background: #fff;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.service-button {
    background: #121840;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    width: 300px;
    height: 50px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}

.service-button:hover {
    background: #f39c12;
    color: #000;
}
