﻿@font-face {
    font-family: 'Garland'; /* Çakışma olmaması için isim verdik */
    src: url('fonts/Garland.otf') format('opentype'), /* Dosya yolunu kendine göre ayarla */
         url('fonts/Garland.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Sayfa yüklenirken yazı kaybolmasın diye */
}

:root {
--aba-purple: #5a3d7c;
--aba-text-gray: #555555;
--aba-font-main: "Comfortaa", sans-serif;
--primary-color: #007bff;
--secondary-color: #6c757d;
--dark-color: #212529;
--light-color: #f8f9fa;
}


body {
font-family: var(--aba-font-main);
overflow-x: hidden;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Hover Efektleri */
.transition {
transition: all 0.3s ease-in-out;
}

.hover-top:hover {
transform: translateY(-10px);
box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Slider Ayarları */
.main-slider .slide-item {
position: relative;
display: flex;
align-items: center;
}

.main-slider .slide-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4); /* Resim üzerine hafif karartma */
}

.main-slider .container {
position: relative;
z-index: 2;
}

/* İkon Kutuları */
.icon-box {
width: 80px;
height: 80px;
line-height: 80px;
background: #e7f1ff;
border-radius: 50%;
margin: 0 auto;
}
.aba-header {
	background:#fff;
    border-bottom: 1px solid #eee;
	 box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 10px 0;
            position: fixed;
	        width:100%;
            top: 0;
            z-index: 1050;
	    transition: all 0.3s ease;
}

        .aba-container { padding: 0 6%; }
        .aba-logo { max-height: 70px; width: auto; }

        /* Navigasyon Linkleri */
        .aba-nav-list .nav-item { position: relative; padding: 0 10px; }


@media (min-width: 1025px) {
.aba-header {
    /* Görseldeki gibi: %40 beyaz başlar, tam logodan sonra hafif griye döner */
    background: linear-gradient(65deg, 
        #ffffff 0%, 
        #ffffff 30%, 
        #f8f9fa 30%, 
        #f8f9fa 100%
    ) !important;
   
}
}

        /* Dikey Çizgiler (Separator) */
@media (min-width: 1680px) {
	.aba-slider-area .offset-lg-1{
		margin-left:0 !important;
	}
.aba-container { padding: 0 12% !important }
}
        @media (min-width: 992px) {
			
			.aba-about-section .aba-container { padding: 0 5% !important }
			
            .aba-nav-list .nav-item:not(:last-child):not(:nth-child(6))::after {
                content: "";
                position: absolute;
                right: 0;
                top: 25%;
                height: 50%;
                width: 1px;
                background-color: #e0e0e0;
            }
        }

        /* Link ve Hover Efekti */
        .aba-nav-list .nav-link {
            color: var(--aba-text-gray);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 10px 5px;
            border-bottom: 3px solid transparent; /* Varsayılan görünmez çizgi */
        }

        /* HOVER ve ACTIVE Durumu */
        .aba-nav-list .nav-link:hover, 
        .aba-nav-list .nav-link.active {
            color: var(--aba-purple) !important;
        }

        /* Dropdown Ayarları */
        .dropdown-menu { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 8px; }
        .dropdown-item:hover { background-color: #f8f4ff; color: var(--aba-purple); }

        /* Sağ Grup */
        .aba-icons-group { display: flex; align-items: center; gap: 20px; margin-left: 20px; }
        .aba-search-btn {
            background-color: var(--aba-purple); color: white; width: 40px; height: 40px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer;
        }
        .aba-lang-selector { color: var(--aba-purple); font-weight: 700; text-decoration: none; }

        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu { display: block; margin-top: 0; }
        }

.hover-opacity-100:hover {
    opacity: 1 !important;
}

    .faq-section { min-height: 70vh; }
    .accordion-button:focus { box-shadow: none; }
    .accordion-button:not(.collapsed) {
        background-color: #f8faff;
        color: #0d6efd;
    }
    .category-divider h3 {
        transition: transform 0.2s ease;
    }
    .bg-primary-subtle {
        background-color: #e7f1ff !important;
    }
.lg-outer.lg-visible {
    background: #0d0a0a;
}
/* --- MODERN MOBİL OVERLAY MENU --- */
@media (max-width: 991.98px) {
    /* Menü Konteynırı */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%; /* Kapalıyken solda gizli */
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        display: block !important;
        padding: 100px 40px;
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        left: 0;
    }

    /* Linklerin Animasyonu */
    .aba-nav-list .nav-item {
        opacity: 0;
        transform: translateY(30px);
        transition: 0.4s all ease;
        width: 100%;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Linklerin Sırayla Gelmesi (Stagger Delay) */
    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.3s; }

    .aba-nav-list .nav-link {
        font-size: 22px;
        font-weight: 700;
        padding: 15px 0 !important;
        border-bottom: 1px solid #eee !important;
        color: var(--aba-purple) !important;
    }

    /* Hamburger Animasyonu */
    .navbar-toggler {
        border: none !important;
        z-index: 1100;
        position: relative;
    }
    .navbar-toggler:focus { box-shadow: none; }
    
    .navbar-toggler-icon { background-image: none !important; position: relative; width: 25px; height: 2px; background: var(--aba-purple); transition: 0.3s; }
    .navbar-toggler-icon::before, .navbar-toggler-icon::after {
        content: ''; position: absolute; width: 25px; height: 2px; background: var(--aba-purple); transition: 0.3s; left: 0;
    }
    .navbar-toggler-icon::before { top: -8px; }
    .navbar-toggler-icon::after { top: 8px; }

    /* Açıldığında X olması */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon { background: transparent; }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before { transform: rotate(45deg); top: 0; }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after { transform: rotate(-45deg); top: 0; }

    /* Alt Menü Ayarı */
    .dropdown-menu {
        background: var(--aba-light-purple);
        border-radius: 12px;
        margin-top: 10px;
        padding-left: 20px;
    }
}
/* Slider Konteynırı */
.aba-slider-area {
    height:100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.main-slick-slider, 
.slide-item {
    height: 100vh !important;
    position: relative;
}



.slide-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* Görselin kesilmeden tam yayılması için */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Karartma katmanı */
.slide-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

/* --- DOTS (RAKAMLAR) SABİT YAPISI --- */
.main-slick-slider .slick-dots {
    position: absolute;
    left: 0;
    top: 56%;
    transform: translateY(-50%);
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100px; /* Alanı sabitleyelim */
}

.main-slick-slider .slick-dots li {
    margin: 20px 0;
    display: flex;
    align-items: center;
    height: 30px; /* Yüksekliği sabitlemek kaymayı önler */
}

.slider-num {
    color: #fff;
    font-size: 1.2rem; /* Rakam boyutu artık hep aynı */
    font-weight: 600;
    opacity: 0.3; /* Pasifken soluk */
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding-left: 55px; /* Çizgi için ayrılan sabit boşluk */
}

/* Aktif Durumda Sadece Renk ve Çizgi Değişimi */
.slick-active .slider-num {
    opacity: 1;
    color: #fff; /* Veya var(--aba-purple) */
}

.slider-num::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    opacity: 0; /* Pasifken çizgi görünmez */
}

.slick-active .slider-num::before {
    opacity: 1; /* Sadece aktifken çizgi çıkar */
}

/* --- DETAYLI GÖR BUTONU (Görseldeki Gibi) --- */
/* BUTON ANA YAPI */
.slider-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 8px 8px 0px; /* Sağ tarafı daireye göre daralttık */
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
}

/* YAZI KISMI */
.btn-text {
    margin-right: 15px;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* İKONUN OLDUĞU DAİRE */
.icon-circle {
    width: 40px;
    height: 40px;
	    border: 1px solid rgba(255, 255, 255);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Zıplama efekti */
}

.icon-circle i {
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease;
}

/* --- HOVER DURUMU --- */

.slider-btn:hover {
    transform: translateY(-3px);
}

/* Dairenin Mor Olması ve Büyümesi */
.slider-btn:hover .icon-circle {
    background: var(--aba-purple); /* Aba Otizm Moru */
    transform: scale(1.1) rotate(360deg); /* Hem büyür hem döner */
    box-shadow: 0 0 15px rgba(90, 61, 124, 0.6);
}

/* Ok işaretinin hareketi */
.slider-btn:hover .icon-circle i {
    transform: translateX(2px);
    color: #fff;
}

/* MOBİLDE UFAK DOKUNUŞ */
@media (max-width: 768px) {
	.g-5, .gy-5 {
    --bs-gutter-x: 0rem !important;
}
	.aba-expert-breadcrumb{
		gap: 7px !important;
	}
	.aba-expert-breadcrumb li:not(:last-child)::after {
    margin-left: 5px !important;
}
	 .aba-nav-list .nav-link:hover, 
        .aba-nav-list .nav-link.active {
            color: #f6a13d !important;
        }
    .slider-btn { padding: 15px 6px 6px 0px; }
    .icon-circle { width: 35px; height: 35px; }
}

/* --- MOBİL DOTS (Yanyana ve Çizgisiz) --- */
@media (max-width: 991px) {
    .main-slick-slider .slick-dots {
        left: 0;
        right: 0;
        bottom: 30px;
        top: auto;
        width: 100%;
        flex-direction: row !important;
        justify-content: center;
        transform: none;
    }
    
    .main-slick-slider .slick-dots li {
        margin: 0 10px;
    }
    
    .slider-num {
        padding-left: 0 !important; /* Mobilde boşluğu kaldır */
        font-size: 14px;
    }
    
    .slider-num::before {
        display: none !important; /* Mobilde çizgiyi gizle */
    }
}

/* Metin Alanları */
.fixed-slogan {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.slide-title {
    font-size: 2.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.slide-text{
	color: #fff;
	opacity:0.7;
	font-size:14px;
}

@media (max-width: 991px) {
	.fixed-slogan {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
	}
    .slide-title { font-size: 1.5rem; }
    .main-slick-slider .slick-dots { left: 20px;display: flex;
    justify-content: flex-start; }
	.aba-slider-area,
    .main-slick-slider,
    .slide-item {
        height: calc(100vh - 70px) !important;
    }
	
}

/* --- SLIDER İÇERİK ANİMASYONLARI --- */

/* Başlangıç Durumu (Gizli ve Aşağıda) */
.fixed-slogan, 
.slide-title, 
.slide-text, 
.btn-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Aktif Slayt Durumu (Görünür ve Yerinde) */
.slick-current .fixed-slogan,
.slick-current .slide-title,
.slick-current .slide-text,
.slick-current .btn-wrapper {
    opacity: 1;
    transform: translateY(0);
}

/* SIRALI GELİŞ (Delay Ayarları) */

/* 1. Slogan gelsin */
.slick-current .fixed-slogan {
    transition-delay: 0.3s;
}

/* 2. Ana Başlık gelsin */
.slick-current .slide-title {
    transition-delay: 0.5s;
}

/* 3. Alt Açıklama gelsin */
.slick-current .slide-text {
    transition-delay: 0.7s;
}

/* 4. Buton en son gelsin */
.slick-current .btn-wrapper {
    transition-delay: 0.9s;
}

/* Görselin kendisi için hafif bir büyüme efekti (Opsiyonel) */
.slide-bg {
    transition: transform 6s linear;
    transform: scale(1);
}

.slick-current .slide-bg {
    transform: scale(1.1); /* Slayt boyunca görsel çok hafif büyür */
}


@media (max-width: 991px) {
    /* Görselin taşıyıcısını ayarla */
    .slide-item {
        overflow: hidden !important;
        position: relative;
    }

    .slide-bg {
        /* Görseli ekrandan daha geniş yapıyoruz ki kayacak yer kalsın */
        width: 200% !important; 
        height: 100%;
        left: 0px!important;
        background-size: cover !important;
        /* Diğer transition'ları iptal et */
        transition: none !important; 
        image-rendering: -webkit-optimize-contrast;
        backface-visibility: hidden;
        transform: translateZ(0);
       
        will-change: transform;
      
    }

    /* Sadece aktif olan slaytta animasyonu başlat */
    .slick-current .slide-bg {
        animation: mobilPanEfekti 6s linear infinite alternate;
    }
}

/* Soldan sağa kayma animasyonu */
@keyframes mobilPanEfekti {
    0% {
        transform: translateX(0%);
    }
    100% {
        /* Görselin %150 genişlikte olduğunu düşünürsek, -33% civarı sağa çeker */
        transform: translateX(-50%); 
    }
}


/* PROGRAMLAR GRID TASARIMI */
.aba-programs-grid-area {
    margin-top: -80px; /* Slider'ın üzerine binmesi için (Screenshot_1'deki gibi) */
    position: relative;
    z-index: 10;
    padding-bottom: 0px;
}

.programs-wrapper {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

/* Sol Başlık Alanı */
.program-main-content {
    padding: 60px;
}

.program-main-content .sub-title {
	font-family: 'Garland', sans-serif !important;
    color: var(--aba-purple);
    font-size: 37px;
    font-weight: 500;
    display: block;
    margin-bottom: 0px;
	line-height: normal;
}

.program-main-content .main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
}

.program-main-content .description {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #eee;
    border-radius: 50px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* Sağ Grid Kartlar */
.program-cards-grid {
    border-left: 1px solid #f0f0f0;
}

.prog-card {
    position: relative;
    height: 250px;
    display: block;
    text-decoration: none !important;
    padding: 40px;
    border-bottom: 2px solid #f0f0f0;
    border-right: 2px solid #f0f0f0;
    overflow: hidden;
    background: #fff;
    transition: 0.4s;
}

.prog-card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 1;
}

.prog-card-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(90, 61, 124, 0.85); /* Tasarımdaki mor overlay */
}

/* Kart İçeriği */
.prog-card-inner {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.prog-icon img {
    width: 50px;
    transition: 0.4s;
}

.prog-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--aba-purple);
    margin-bottom: 15px;
    transition: 0.4s;
}

.detail-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f6a13d; /* Tasarımdaki turuncu tonu */
    font-size: 0.9rem;
    font-weight: 600;
}

.arrow-circle {
    width: 30px;
    height:30px;
    background: #f6a13d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    transition: 0.4s;
}

/* --- HOVER EFEKTLERİ (BİREBİR) --- */
.prog-card:hover .prog-card-bg {
    opacity: 1;
}

.prog-card:hover .prog-text h4,
.prog-card:hover .detail-link {
    color: #fff;
}

.prog-card:hover .arrow-circle {
    background: #f6a13d;
    color: #fff;
    transform: rotate(360deg);
}

.prog-card:hover .prog-icon {
    filter: brightness(0) invert(1); /* İkonu beyaza çevirir */
}

/* Responsive */
@media (max-width: 991px) {
	.prog-card {
  
    border-top: 2px solid #f0f0f0;
		height: 210px !important;
	}
	.prog-text h4 {
    font-size: 1.1rem !important;
	}
	.detail-link{
		font-size: 0.8rem !important;
	}
.prog-text{
	column-gap: 5px !important;
	}
	.prog-card{
		padding:0 !important;
	}
	.prog-icon {
	
}
	.prog-icon img {
    width: 40px !important; 
}
	.aba-programs-grid-area .container-fluid.aba-container{
	margin: 0;
    padding: 0 !important;
		
	}
	.aba-programs-grid-area .programs-wrapper{
		border-radius:0 !important;
	}
    .aba-programs-grid-area { margin-top: 0; }
    .program-cards-grid { border-left: none; }
    .program-main-content { padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%; }
}

/* ICON + TITLE YAN YANA */
.prog-text {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 10px;
}

/* ikon sabit solda */
.prog-icon {
}

/* başlık ikonun sağında */
.prog-text h4 {
    flex: 1;
    margin-bottom: 8px;
}

/* DETAY HER ZAMAN ALTA DÜŞSÜN */
.detail-link {
	margin-top:20px;
    margin-left: 10px; /* ikon hizasına gelsin */
}
.view-all-btn:hover{
	background: var(--aba-purple);
    color: #fff;
}

/* --- BİZİ YAKINDAN TANIYIN SECTION --- */
.aba-about-section {
    padding-top: 100px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
	    padding-bottom: 50px;

}

/* Sol İçerik Kutusu */
.about-content-card {
    background: #fff;
    padding: 60px 50px;
    border-radius: 40px;
    position: relative;
    /* Görselin üzerine binen o özel beyaz alan */
    margin-right: -100px; 
    z-index: 5;
}

/* Noktalı Desen */
.dotted-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 210px;
    height: 170px;
    background-image: radial-gradient(#d1d1d1 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    z-index: -1;
    opacity: 0.6;
}

/* Başlık Yapısı */
.about-title-box {
    margin-bottom: 35px;
}

.title-line {
    width: 45px;
    height: 2px;
    background-color: #5a3d7c; /* Mor çizgi */
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.about-content-card .main-title {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    vertical-align: middle;
	margin:0;
}

.about-content-card .sub-tag {
    display: block;
    color: #5a3d7c;
	font-family: 'Garland', sans-serif !important;
	line-height: normal;
    font-size: 37px;
    font-weight: 500;
    margin-top: 0px;
    margin-left: 65px; /* Çizgi ve boşluk hizası */
	
}

/* İçerik Yazısı */
.about-text {
    font-size: 14px;
    color: #777 !important;
    margin-bottom: 20px;
	opacity:0.6;
}

/* Kurumsal Butonu */
.btn-kurumsal {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none !important;
    color: #777;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-kurumsal span {
	opacity:0.6;
}
.btn-icon {
    width: 30px;
    height: 30px;
    background-color: #5a3d7c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: 0.4s;
}

.btn-kurumsal:hover { color: #5a3d7c; }
.btn-kurumsal:hover span {
	opacity:1;
}
.btn-kurumsal:hover .btn-icon { transform: rotate(360deg); background-color: #f2a93b; }

/* Sağ Görsel Alanı */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.about-image-wrapper:hover .about-main-img {
    transform: scale(1.05);
}
@media (max-width: 768px) {
	.desc-area{
		text-align:center;
	}
.team-header{
	display: flex!important;
    flex-direction: column;
    align-content: center;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap;
	}
	.team-header .title-area{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
	}
}

/* MOBİL UYUMLULUK */
@media (max-width: 991px) {
	
    .about-content-card {
        margin-right: 0;
        padding: 40px 30px;
        margin-bottom: -50px; /* Görselle birleşme efekti mobil için */
        text-align: center;
		border-radius:0px !important;
    }
	.about-content-card .sub-tag{
		margin-left:0px !important;
	}
    .about-image-wrapper {
        height: 350px;
    }
    .title-line { display: none; }
    .sub-tag { margin-left: 0; }
}


/* --- TEAM SECTION ANA STİL --- */
.aba-team-section {
    position:relative;
    background-color: #5a3d7c; /* Tasarımdaki Koyu Mor */
    padding: 100px 0 50px 0;
    overflow: hidden;
}

/* Arka plandaki devasa hayalet yazı */
.bg-text-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Tam merkeze çivile */
    font-family: 'Garland', sans-serif !important; /* Arkadaşının attığı font */
    font-size: 40vw !important; /* Ekran genişliğinin %40'ı kadar devasa */
    color: rgba(255, 255, 255, 0.05) !important; /* Sadece %5 görünürlük (hayalet etkisi) */
    white-space: nowrap;
    z-index: 0; /* İçeriğin arkasında, arka planın önünde */
    pointer-events: none; /* Mouse ile seçilemesin, tıklanmasın */
    user-select: none;
}

/* İçeriklerin hayalet yazının üstünde kalması için */
.aba-team-section .container-fluid {
    position: relative;
    z-index: 1;
}

.team-header .sub-title { font-size: 15px; font-weight: 500; }
.team-header .main-title { font-size: 32px; font-weight: 800; }
.view-team-all { color: #fff; text-decoration: none; font-size: 15px; opacity: 0.8; transition: 0.3s; display:block;margin-top:-40px}
.view-team-all:hover { opacity: 1; color: #f2a93b; }

/* KARTLAR VE OVERLAY */
.team-slide-item { padding: 20px; outline: none; transition: 0.5s; }
.team-img-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid rgba(255,255,255,0.1);
}
.team-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

/* Yanlardaki kartlar için mor filtre */
.overlay-purple {
    position: absolute; inset: 0;
    background: rgba(90, 61, 124, 0.7); /* Tasarımdaki gibi yanları karartır */
    transition: 0.5s;
}

/* CENTER KART (AKTİF OLAN) */
.slick-center .team-img-box {
    border: 2px solid rgba(255,255,255,0.5);
    transform: scale(1.05);
}
.slick-center .overlay-purple { opacity: 0; } /* Merkezdeki kartın rengi açılır */

/* YAZI BİLGİLERİ */
.team-info { opacity: 0; transition: 0.4s; transform: translateY(20px); }
.slick-center .team-info { opacity: 1; transform: translateY(0); }
.member-name { color: #fff; font-weight: 700; font-size: 20px;margin-bottom:0px }
.member-position { color: rgba(255,255,255,0.6); font-size: 14px; }

/* SLIDER KONTROLLERİ (ALT ORTA) */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.prev-team, .next-team {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.3s;
}
.prev-team:hover, .next-team:hover { background: #fff; color: #5a3d7c; }

.btn-all-center {
    padding: 10px 30px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.btn-all-center:hover { background: rgba(255,255,255,1); color: #5a3d7c; }

/* Navigasyon Konumlandırma */
.team-nav-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.slider-controls-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Tümünü Gör Butonu (Şeffaf mor sınır) */
.btn-all-center {
    padding: 10px 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none !important;
    font-size: 14px;
    background: transparent;
    transition: 0.3s;
}

.btn-all-center:hover {
    background: #fff;
    border-color: #fff;
}

/* Ok Butonları Grubu */
.nav-arrows {
    display: flex;
    gap: 10px;
}

.prev-team, .next-team {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
	background:transparent;
}

/* Tasarımdaki Beyaz Dolu Aktif Buton (Sağ ok) */

.prev-team:hover,.next-team:hover  {
    background: #fff;
}

/* Slider Center Mode Efektleri */
.aba-team-slick .slick-list {
    overflow: visible; /* Kenarlardan taşan kartların görünmesi için */
}

.team-slide-item {
    opacity: 0.8;
    transition: 0.5s ease;
    transform: scale(0.9);
}

.team-slide-item.slick-center {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
}

.slick-center .overlay-purple {
    opacity: 0;
}

.slick-center .member-name {
    color: #fff;
    font-weight: 700;
}

.slick-center .member-text {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}
.desc-area.text-white-50 p{
	font-size:14px;
}
/* EĞİTMENLER BÖLÜMÜ ÖZEL BUTON STİLİ */
.btn-kurumsal-white {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s ease;
    padding: 6px 6px 6px 25px; /* Sol tarafa daha fazla boşluk */
    border-radius: 50px;
	height:70px;
}

.btn-icon-circle {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- HOVER DURUMU --- */
.btn-kurumsal-white:hover {
    color: #fff;
    border-color: #fff;
}

.btn-kurumsal-white:hover .btn-icon-circle {
    background-color: #fff; /* Yuvarlak beyaz olur */
    color: #5a3d7c;         /* İkon mor olur */
    transform: rotate(360deg); /* İkon kendi etrafında döner */
}


.aba-blog-section { background-color: #f7f9fc; }

/* Sol Taraf Buton */
.btn-blog-all {
    background-color: #5a3d7c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}
.btn-blog-all:hover { background-color: #4a2d6c; transform: translateY(-2px); }
.aba-blog-section{
	padding-top:80px;
	padding-bottom: 50px;
}
/* Kart Tasarımı */
.blog-slide-item { padding: 15px; }
.blog-card {
    background: #f7f9fc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: -2px 2px 16px 0px rgb(0 0 0 / 5%);
    border: 1px solid #eee;
    transition: 0.3s;
}
.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--aba-purple); /* Çerçeve Aba Otizm Moru olur */
}

/* Kart Hover Olunca Butonun Morarması */
.blog-card:hover .purple-btn {
    background-color: var(--aba-purple); /* Buton net mor olur */
    transform: scale(1.1); /* Hafifçe büyür */
}
.blog-img-wrapper { height: 270px; overflow: hidden; }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.blog-title { font-size: 15px; font-weight: 700; color: #222; max-width: 80%; display: -webkit-box;
    -webkit-line-clamp: 3; /* Maksimum 3 satır */
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* Satır yüksekliği (Hizalama için önemli) */
    line-height: 1.4;
    height: calc(1.4em * 3); /* 3 satırlık alanı her zaman korur, kartlar eşit boyda kalır */}

/* İkonlu Butonlar */
.action-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none;
    transition: 0.3s;
}
.purple-btn { background-color: #f6a13d; }
.orange-btn { background-color: #f2a93b; } /* Tasarımdaki diğer kartlarda turuncu olabilir */

.action-btn-outline {
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    display: flex; align-items: center; justify-content: center;
    color: var(--aba-purple); text-decoration: none;
    background: #f8f9fa;
}

/* Slick Dots Tasarımı (Dots yan yana butonun yanında) */
#blog-dots .slick-dots { position: relative; display: flex; list-style: none; padding: 0; margin: 0; }
#blog-dots .slick-dots li { margin: 0 4px; }
#blog-dots .slick-dots li button {
    font-size: 0; width: 8px; height: 8px; border-radius: 50%;
    border: none; background: #dcdde1; transition: 0.3s;
}
#blog-dots .slick-dots li.slick-active button {
    background: var(--aba-purple); width: 12px; height: 12px; border: 2px solid #fff; outline: 1px solid #5a3d7c;
}
.aba-blog-section .sub-title {
    color: var(--aba-purple);
    font-family: 'Garland', sans-serif !important;
	line-height: normal;
    font-size: 37px;
    font-weight: 500;
    display: block;
    margin-bottom: 0px;
}
.aba-blog-section .main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}
/* Sadece Blog Noktaları - Çakışma Önleyici */
#blog-dots .blog-custom-dots {
    display: flex !important;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px; /* Noktalar arası mesafe */
}

#blog-dots .blog-custom-dots li {
    display: inline-block;
    cursor: pointer;
}

#blog-dots .blog-custom-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #dcdde1; /* Pasif renk */
    transition: all 0.3s ease;
}

/* Tasarımdaki Aktif Nokta (İçi boş, kenarı mor halkalı) */
#blog-dots .blog-custom-dots li.slick-active button {
    background: var(--aba-purple);
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    outline: 1.5px solid var(--aba-purple); /* Dışındaki ince halka */
    transform: scale(1.1);
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--aba-purple);
	color:#fff;
}

/* Başlık Alanı Stilleri */
.gallery-header .sub-tag { color: var(--aba-purple);font-family: 'Garland', sans-serif !important;line-height: normal;font-size: 37px;font-weight: 500;display: block;margin-bottom: 0px; }
.view-all-gallery {
    text-decoration: none !important;
    color: var(--aba-purple);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}
.view-all-gallery i { font-size: 20px; vertical-align: middle; color: #5a3d7c; }
.view-all-gallery:hover { opacity: 0.8; }

/* Ana Beyaz Panel Yapısı */
.gallery-main-card {
    background: #fff;
    border-radius: 40px; /* Tasarımdaki kavisli köşeler */
}

/* Görsel Kutuları */
.gallery-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #eef0f5; /* Tasarımdaki ince çerçeve rengi */
    transition: all 0.4s ease;
}

.img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Efekti */
.gallery-box:hover {
    border-color: #5a3d7c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(90, 61, 124, 0.1);
}

.gallery-box:hover img {
    transform: scale(1.1);
}

/* Overlay Görünümü */
.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(90, 61, 124, 0.6); /* Koyu mor şeffaf */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-box:hover .img-overlay {
    opacity: 1;
}
.gallery-header .main-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--aba-purple);
    margin-bottom: 0px;
}
.gallery-header .desc-area p{
	color: var(--aba-purple);
}
.btn-kurumsal.btn-galero{
	color: var(--aba-purple) !important;
	opacity:1 !important;

    font-size: 14px;
   
    height: 40px;
}
@media (max-width: 767px) {
	.prog-icon i{
		    width: 30px !important;
    font-size: 25px !important;
	}
.btnile{
	text-align:center!important;
	}
	.aba-form-btn {
  
    width: 100%;
}
	.aba-about-section{
		padding-top: 60px !important;
		padding-bottom: 0px !important;
	}
	.aba-team-section {
    padding: 60px 0 50px 0 !important;
}
	.aba-blog-section {
    padding-top: 60px !important;
    padding-bottom: 20px !important;
}
.gallery-header{
	flex-direction: column;
    align-content: center;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap;
}
	.gallery-header .sub-tag{
		text-align: center !important;
	}
	.gallery-main-card .img-wrapper{
		    height: 150px;
	}
	.gallery-main-card{
		padding:0;
	}
	}
	
.aba-home-gallery{
	padding-top:60px;
}


/* Tasarımın Özel CSS'i */
    .aba-newsletter-events { background-color: #fff; }
    .bg-aba-purple { background-color: #5a3d7c;border:none; }
    .bg-aba-dark { background-color: #1a1a1a; }
    .bg-light-gray { background-color: #f1f3f7; }
    .color-purple { color: #5a3d7c; }
    .rounded-overflow {  }
    
    .custom-input { border-radius: 50px; padding: 15px 25px; border: 1px solid #eee; background: #fafafa; }
    .custom-input:focus { border-color: #5a3d7c; box-shadow: none; }
    
    .social-icons a { 
        width: 38px; height: 38px; background: #f0f0f0; color: #5a3d7c; 
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        transition: 0.3s; text-decoration: none; 
    }
    .social-icons a:hover { background: #5a3d7c; color: #fff; transform: translateY(-3px); }

    .calendar-table th { color: #aaa; font-weight: 600; padding-bottom: 10px; }
    .calendar-table td { padding: 8px 0; color: #444; position: relative; }
    .active-day { 
        background-color: #5a3d7c; color: #fff !important; 
        border-radius: 50%; font-weight: 700; width: 35px; height: 35px;
        display: inline-flex; align-items: center; justify-content: center;
    }

    .arrow-right-decor {
        position: absolute; right: -15px; top: 50%; transform: translateY(-50%);
        width: 0; height: 0; border-top: 15px solid transparent; border-bottom: 15px solid transparent;
        border-left: 15px solid #5a3d7c; z-index: 5;
    }
    .line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.aba-newsletter-events{
	padding-top:80px;
	padding-bottom:80px;
}
.day-number { cursor: pointer; transition: 0.2s; position: relative; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.day-number.has-event { background: #5a3d7c; color: white !important; font-weight: bold; }
.day-number:hover { background: #eee; color: #333; }
.day-number.has-event:hover { background: #452d61; color: white; }
.event-dots { display: flex; justify-content: center; gap: 2px; margin-top: 2px; height: 4px; }
.dot { width: 4px; height: 4px; background: #5a3d7c; border-radius: 50%; }

.past-day {
    background: #5a3d7c !important;
    color: white !important;
    opacity: 0.35; /* Siliklik oranı */
    transition: opacity 0.3s;
}

.past-day:hover {
    opacity: 1; /* Üzerine gelince netleşsin */
}

/* Geçmiş Etkinlik Günü */
.past-event-day {
    background: #5a3d7c !important;
    color: white !important;
    opacity: 0.3 !important; /* Silik görünüm */
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Gelecek Etkinlik Günü */
.active-day {
    background: #5a3d7c !important;
    color: white !important;
    opacity: 1 !important; /* Canlı görünüm */
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
}
.aba-newsletter-events .ebulten{
position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}
 @media (min-width: 992px) {	
	 .aba-newsletter-events .ebulten{
		 position: relative;
    padding-right: 160px;
    padding-top: 60px;
	 }
}
#ebultenBtn:hover{
	background-color:#5a3d7c;
	color:#fff;
}
/* Arka planı tasarımdaki gibi 2 renge bölüyoruz */
.footer-area {
	background: linear-gradient(to right, #f8f8f8 62.6%, #5a3d7c 37.4%);
    padding-top: 1rem;
}

/* Menü ve Link Düzenlemeleri */
/* Normal halde ikon gizli ve yazı gri */
.footer-nav li i {
    display: none;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease; /* Yumuşak geçiş için */
    font-size: 10px;
    color: #5a3d7c;
    margin-right: 0;
}

.footer-nav li a {
    color: #5a3d7c;
    text-decoration: none;
    transition: all 0.03s linear;
    font-size: 14px;
    line-height: 2.2!important;
	cursor:pointer;
}

/* Üzerine gelince (Hover) veya Aktifken */
.footer-nav li:hover a, 
.footer-nav li.active a {
    color: #5a3d7c !important; /* Yazı mor olur */
    font-weight: 500;
}

.footer-nav li:hover i, 
.footer-nav li.active i {
	display:inline-block;
    width: 10px; /* İkonun alanı açılır */
    opacity: 1;  /* İkon görünür olur */
   /* Yazıyla arasına boşluk gelir */
	    transition: all 0.3s ease; /* Yumuşak geçiş için */

}

/* Sağ Mor Blok Stili */
.contact-purple-side {
    color: #fff !important;
    min-height: 100%;
}
.contact-box p { font-size: 14px; margin-bottom: 20px; display: flex; gap: 15px; }
.contact-box p strong { font-weight: 900; color: #fff; min-width: 20px; }
.contact-box a { color: #fff; text-decoration: none; opacity: 0.9; }

/* Alt Kısım (Beyaz Alan İçindeki Copyright) */
.footer-bottom-links a { transition: 0.3s; }
.footer-bottom-links a:hover { color: #5a3d7c !important; }

/* Responsive Düzenleme */
@media (max-width: 991px) {
    .footer-area { background:  #f8f8f8; }
  
}

.footer-nav .fotblogo {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Açıklamayı sadece 1 satır yapalım */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Alt barın genel esnekliği */
.footer-bottom-flex {
    display: flex;
    flex-wrap: nowrap; /* Büyük ekranlarda yan yana kalmaya zorlar */
    align-items: center;
    justify-content: space-between;
}

/* Metinlerin sıkışmasını önlemek için */
.copyright-text {
    font-size: 13px !important;
    white-space: nowrap; /* Yazıyı tek satıra zorlar */
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    white-space: nowrap; /* Linklerin kırılmasını engeller */
}

.footer-bottom-links a {
    font-size: 13px !important;
}

/* Tablet ve Mobil için güvenli geçiş */
@media (max-width: 991px) {
    .footer-bottom-flex {
        flex-wrap: wrap; /* Mobilde mecbur alta geçecek */
        text-align: center;
        justify-content: center;
    }
    .footer-bottom-flex > div {
        flex: 0 0 100%; /* Mobilde her parça tam satır olur */
        margin-bottom: 15px;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .copyright-text {
        white-space: normal; /* Mobilde sığmazsa kırılsın */
    }
}

.btn-top-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #5a3d7c; /* ABA Moru */
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none; /* Sayfa başında gizli */
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-top-up:hover {
    background-color: #4a3266;
    transform: translateY(-5px); /* Üstüne gelince hafif zıplama */
}

/* Mobilde sağdaki mor blokla çakışmaması için biraz yukarı alabiliriz */
@media (max-width: 991px) {
    .btn-top-up {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}
.acwlogo:hover{
	transform:scale(1.1);
		    transition: all 0.3s ease; /* Yumuşak geçiş için */
opacity:1;
	
}
@media (max-width: 767px) {
    .acwlogo {
        height: 50px !important; /* Mobilde biraz daha kibar durması için */
    }
}

/* Arka planı aşırı şık ve derin yapmak için */
.modal-backdrop.show { opacity: 0.96; background-color: #000; backdrop-filter: blur(10px); }
.bg-dark-transparent { background: transparent; border: none; }

.custom-search-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-size: 2.5rem;
    padding: 10px 0;
    font-weight: 300;
}

.custom-search-input:focus { box-shadow: none; border-bottom-color: #5a3d7c !important; }

.search-input-group { position: relative; display: flex; align-items: center; }

.search-submit-btn {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.search-submit-btn:hover { color: #ffc107; transform: translateX(5px); }

/* Placeholder rengini beyaz ve hafif şeffaf yapar */
.custom-search-input::placeholder {
    color: #ffffff !important;
    opacity: 0.8 !important; /* Tam netlik için 1 yapabilirsin */
}

/* Farklı tarayıcılar için (Safari, Firefox) */
.custom-search-input::-webkit-input-placeholder { color: #ffffff !important; }
.custom-search-input::-moz-placeholder { color: #ffffff !important; }
.custom-search-input:-ms-input-placeholder { color: #ffffff !important; }

/* Yazı yazarken rengin beyaz kalması için */
.custom-search-input {
    color: #ffffff !important;
}
.icerik{
	padding-top: 160px !important;
    padding-bottom: 80px !important;
}

/* Başlığı 2 Satırla Sınırla ve ... Koy */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5rem;
}

/* Özel Aba Buton Tasarımı */
.btn-aba-search {
    border: 2px solid #5a3d7c; /* Kurumsal Mor */
    color: #5a3d7c;
    font-weight: 600;
    width: 100%; /* Butonu genişletir */
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Üzerine Gelince (Hover) */
.btn-aba-search:hover {
    background-color: #5a3d7c !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 61, 124, 0.3);
}

/* Kartın geneline hafif bir hover efekti */
.aba-search-card {
    transition: transform 0.3s ease;
}
.aba-search-card:hover {
    transform: translateY(-5px);
}

.bg-purple {
    background-color: #5a3d7c !important;
}
.icerik-alt{
	margin-top: 120px;
    margin-bottom: 40px;
}
.main_icerik {
    padding-top: 3rem!important;
    padding-bottom: 5rem!important;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #5a3d7c !important;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffffa6;
}
/* Alt Sayfa Başlığı Tasarımı */
.aba-expert-header {
    background: linear-gradient(135deg, #5a3d7c 0%, #3d2856 100%) !important;
    padding: 70px 0 100px 0 !important;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.aba-expert-header-content { position: relative; z-index: 2; }

.aba-expert-main-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
}

.aba-expert-sub-title {
    color: rgba(255,255,255,0.7) !important;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.aba-expert-breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 15px;
}

.aba-expert-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: 0.3s; }
.aba-expert-breadcrumb a:hover { color: #fff; }
.aba-expert-breadcrumb .active { color: #fff; }
.aba-expert-breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 15px; color: rgba(255,255,255,0.3); }

.aba-header-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0); /* Asimetrik kesim */
	z-index:4;
}

/* Uzman Kartları */
.aba-expert-main-wrapper { background: #fff; margin-top: -30px; position: relative;}

.aba-expert-card {
    background: #ffffff;
    border-radius: 30px !important;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f0f0f0 !important;
}

.aba-expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(90, 61, 124, 0.15) !important;
    border-color: #5a3d7c33 !important;
}

.aba-expert-img-container {
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.aba-expert-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.aba-expert-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(90, 61, 124, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.aba-expert-card:hover .aba-expert-overlay { opacity: 1; }
.aba-expert-card:hover .aba-expert-img { transform: scale(1.1); }

.aba-expert-view-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #5a3d7c;
    font-size: 20px;
    transition: 0.3s;
}

.aba-expert-view-btn:hover { transform: rotate(90deg); background: #5a3d7c; color: #fff; }

.aba-expert-body { padding: 20px 10px 10px 10px; text-align: center; }

.aba-expert-name { font-weight: 800 !important; color: #333 !important; font-size: 1.2rem !important; margin-bottom: 5px !important; }

.aba-expert-rank {
    font-size: 0.85rem !important;
    color: #5a3d7c !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Glassmorphism */
.aba-modal-glass {
    border-radius: 40px !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.aba-modal-img { width: 100%; height: 100%; min-height: 400px; background-size: cover; background-position: center; }

.aba-modal-close {
    position: absolute;
    right: 25px; top: 25px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none;
    background: #f8f9fa;
    z-index: 10;
    font-size: 24px;
}

.aba-modal-tag { background: rgba(90, 61, 124, 0.1); color: #5a3d7c; padding: 5px 15px; border-radius: 50px; font-weight: 700; font-size: 12px; margin-bottom: 15px; }

.aba-modal-title { font-weight: 800; color: #222; margin-top: 10px; }

.aba-modal-divider { width: 50px; height: 5px; background: #5a3d7c; margin: 20px 0; border-radius: 10px; }

.aba-modal-text { font-size: 1rem; line-height: 1.8; color: #666; max-height: 300px; overflow-y: auto; }

/* FAQ Wrapper Ayarları */
.aba-faq-wrapper {
    background-color: #fcfaff !important;
    position: relative;
    z-index: 5;
    margin-top: -50px; /* Header şeklinin üzerine bindir */
}

/* Kategori Başlığı Tasarımı */
.aba-faq-category-node {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.aba-faq-cat-title {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #5a3d7c !important;
    background: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(90, 61, 124, 0.08);
    display: inline-block;
}

.aba-faq-cat-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #5a3d7c33, transparent);
}

/* Akordeon Özelleştirme */
.aba-faq-item .accordion-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(90, 61, 124, 0.05) !important;
}

.aba-faq-button {
    background-color: #fff !important;
    color: #333 !important;
    padding: 20px 25px !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: none !important;
    gap: 15px;
    display: flex;
    align-items: center;
}

.aba-faq-button:not(.collapsed) {
    color: #5a3d7c !important;
    background-color: #fff !important;
}

/* Soru Yanındaki İkon Kutusu */
.aba-faq-icon-box {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: rgba(90, 61, 124, 0.05);
    color: #5a3d7c;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
}

.aba-faq-button:not(.collapsed) .aba-faq-icon-box {
    background: #5a3d7c;
    color: #fff;
    transform: rotate(360deg);
}

/* Cevap Alanı */
.aba-faq-answer {
    background: #fff !important;
    border-top: 1px solid #f8f9fa !important;
    padding: 25px 30px !important;
}

.aba-faq-answer-inner {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Hover Efekti */
.aba-faq-item:hover .accordion-item {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(90, 61, 124, 0.1) !important;
}

/* Responsive */
@media (max-width: 768px) {
	.container-fluid.aba-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden; /* Dışarı taşan içeriği keser */
    }
		.footer-area .f_mobilp,.aba-newsletter-events .f_mobilp {padding:20px;}
.footer-area .container-fluid.aba-container,.aba-newsletter-events .container-fluid.aba-container {padding:0px !important;}

    .aba-faq-cat-title { font-size: 1.1rem !important; }
    .aba-faq-button { padding: 15px !important; }
	.aba-expert-main-title{font-size: 1.8rem !important;  }
}

.aba-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(90 61 124 / 45%) 0%, rgba(61, 40, 86, 0.7) 100%);
    z-index: 2;
}

	.aba-header-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Görselin sabit kalmasını sağlar (Parallax etkisi) */
    z-index: 1;	
}

/* --- ABA ABOUT ULTRA ISOLATED DESIGN --- */

/* Görsel Alanı */
.aba-about-ultra-img-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #eee;
    height: 480px;
    border: 1px solid rgba(0,0,0,0.05);
}

.aba-about-ultra-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.aba-about-ultra-block:hover .aba-about-ultra-img {
    transform: scale(1.05);
}

.aba-about-ultra-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #5a3d7c;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Metin Alanı */
.aba-about-ultra-tag {
    color: #5a3d7c;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.aba-about-ultra-heading {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #1a1a1a;
    line-height: 1.1;
}

.aba-about-ultra-line {
    width: 60px;
    height: 6px;
    background: #5a3d7c;
    margin: 25px 0;
    border-radius: 10px;
}

.aba-about-ultra-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    /* text-align: justify; */
}

/* Stat Kartları (En Alt) */
.aba-about-ultra-stats {
    background: #5a3d7c;
    padding-top: 50px;
    padding-bottom: 100px;
}

.aba-about-ultra-stat-card {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.col-md-3:last-child .aba-about-ultra-stat-card {
    border-right: none;
}

.aba-about-ultra-stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.aba-about-ultra-stat-label {
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

/* Mobil Düzenleme */
@media (max-width: 991px) {
	.contact-purple-side {
    background-color: #5a3d7c;
}
    .aba-about-ultra-img-frame { height: 300px; }
    .aba-about-ultra-heading { font-size: 2rem !important; }
    .aba-about-ultra-stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* --- ABA BLOCKQUOTE ZIGZAG SYSTEM --- */

.aba-blockquote-zigzag {
    position: relative;
}

/* Genel Quote Kutusu */
.aba-custom-quote {
    position: relative;
    padding: 30px 40px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    margin-bottom: 0;
    border: 1px solid rgba(90, 61, 124, 0.1);
}

.aba-custom-quote:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 40px rgba(90, 61, 124, 0.1);
}

.aba-custom-quote p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
    font-style: italic; /* Alıntı havası katmak için */
}

/* İkon Ayarı */
.quote-icon {
    font-size: 1.5rem;
    color: #5a3d7c;
    opacity: 0.2;
    margin-bottom: 15px;
    display: block;
}

/* Sol Tarafa Yaslı (Default) */
.aba-quote-left {
    border-left: 6px solid #5a3d7c;
    text-align: left;
}

/* Sağ Tarafa Yaslı */
.aba-quote-right {
    border-right: 6px solid #5a3d7c;
    text-align: right;
    background: #fdfbff; /* Hafif farklı renk tonu */
}

/* Banner Üzerindeki Yazı */
.aba-ultra-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .aba-custom-quote {
        text-align: left !important;
        border-right: none !important;
        border-left: 6px solid #5a3d7c !important;
        padding: 20px;
    }
    .aba-quote-right .quote-icon {
        float: none;
    }
}

/* --- ABA PROGRAM ULTRA STYLE --- */



/* Kart Ana Yapısı */
.aba-prog-ultra-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aba-prog-ultra-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(90, 61, 124, 0.12);
    border-color: rgba(90, 61, 124, 0.1);
}

/* Resim Alanı */
.aba-prog-ultra-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.aba-prog-ultra-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.aba-prog-ultra-card:hover .aba-prog-ultra-img {
    transform: scale(1.1);
}

/* Badge (Etiket) */
.aba-prog-ultra-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #5a3d7c;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

/* Kart Gövdesi */
.aba-prog-ultra-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.aba-prog-ultra-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.aba-prog-ultra-desc {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Buton Stili */
.aba-prog-ultra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #5a3d7c;
    color: #5a3d7c;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.aba-prog-ultra-btn:hover {
    background: #5a3d7c;
    color: #fff;
}

.aba-prog-ultra-btn i {
    transition: transform 0.3s ease;
}

.aba-prog-ultra-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .aba-prog-ultra-img-wrap { height: 200px; }
    .aba-prog-ultra-title { font-size: 1.25rem; }
}

/* --- ABA PROGRAM DETAIL UNIQUE STYLE --- */

/* Görsel Çerçevesi */
.aba-prog-detail-image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.aba-prog-detail-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.aba-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: #5a3d7c;
}

/* Tipografi */
.aba-rich-text {
    font-size: 1.15rem;
    color: #555;
}

.aba-tag {
    font-weight: 800;
    letter-spacing: 2px;
    color: #5a3d7c;
    font-size: 0.9rem;
}

.aba-line {
    display: inline-block;
    width: 40px;
    height: 4px;
    background: #5a3d7c;
    vertical-align: middle;
    margin-right: 10px;
}

/* Sidebar Tasarımı */
.aba-sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
}

.aba-sidebar-title {
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #eee;
}

/* Sidebar Liste Linkleri */
.aba-sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #666;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.aba-link-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5a3d7c;
    margin-right: 15px;
    opacity: 0.3;
}

.aba-sidebar-link i {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.aba-sidebar-link:hover {
    color: #5a3d7c;
    padding-left: 10px;
}

.aba-sidebar-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Sidebar İletişim Kartı */
.aba-sidebar-contact {
    position: relative;
    background: #5a3d7c;
    color: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    overflow: hidden;
}

.aba-contact-inner {
    position: relative;
    z-index: 2;
}

.contact-icon {
    font-size: 3rem;
    opacity: 0.3;
}

.aba-btn-light-outline {
    display: block;
    text-align: center;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
}

.aba-btn-light-outline:hover {
    background: #fff;
    color: #5a3d7c;
}

/* Arka Plan Şekli */
.aba-contact-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* Mobil Ayarı */
@media (max-width: 991px) {
    .aba-prog-sidebar { margin-top: 40px; }
}

/* --- ABA BLOG ULTRA CARD STYLE --- */

.aba-blog-ultra-wrapper {
    background-color: #f8f9fc;
}

.aba-blog-ultra-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.aba-blog-ultra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(90, 61, 124, 0.1) !important;
}

/* Resim ve Tarih Alanı */
.aba-blog-ultra-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.aba-blog-ultra-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.aba-blog-ultra-card:hover .aba-blog-ultra-img {
    transform: scale(1.1) rotate(1deg);
}

.aba-blog-ultra-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-width: 60px;
    z-index: 2;
}

.aba-blog-ultra-date .day {
    font-size: 1.4rem;
    font-weight: 800;
    color: #5a3d7c;
    line-height: 1;
}

.aba-blog-ultra-date .month {
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gövde Alanı */
.aba-blog-ultra-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.aba-blog-ultra-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: #5a3d7c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.aba-blog-ultra-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
}

.aba-blog-ultra-title a {
    color: #2d2d2d;
    text-decoration: none;
    transition: color 0.3s;
}

.aba-blog-ultra-title a:hover {
    color: #5a3d7c;
}

.aba-blog-ultra-excerpt {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Okuma Linki */
.aba-blog-ultra-link {
    display: inline-flex;
    align-items: center;
    color: #5a3d7c;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.aba-blog-ultra-link svg {
    transition: transform 0.3s ease;
}

.aba-blog-ultra-link:hover {
    color: #3e2b55;
}

.aba-blog-ultra-link:hover svg {
    transform: translateX(8px);
}

/* Mobil */
@media (max-width: 768px) {
    .aba-blog-ultra-img-wrap { height: 200px; }
    .aba-blog-ultra-title { font-size: 1.2rem; }
}
/* --- ABA BLOG PREMIUM SINGLE COLUMN --- */

.aba-blog-premium-quote {
    position: relative;
    padding: 0px;
    border-radius: 0 25px 25px 0;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.02);
}



.aba-quote-icon {
    font-size: 1.2rem;
    color: #5a3d7c;
    opacity: 0.2;
    margin-bottom: 10px;
	display:none;
}

.aba-blog-premium-quote p {
    font-size: 1.25rem; /* Biraz daha büyük, okunması kolay */
    line-height: 1.9;
    color: #444;
    font-weight: 400;
}

/* Paylaşım Butonları Aynı Kalabilir */
.aba-share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

/* Mobil */
@media (max-width: 768px) {
    .aba-blog-premium-quote {
        padding: 0px;
    }
    .aba-blog-premium-quote p {
        font-size: 1.1rem;
    }
}
/* Sağ Taraf Tasarımı */
.aba-q-right {
    border-right: 8px solid #5a3d7c;
    border-bottom-right-radius: 0;
    text-align: right;
    background: #f9f6ff;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.03);
}

/* Paylaşım Butonları */
.aba-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
}

.share-btn.fb { background: #3b5998; }
.share-btn.tw { background: #1da1f2; }
.share-btn.wa { background: #25d366; }

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
}

/* Mobil Ayarlar */
@media (max-width: 991px) {
    .aba-blog-quote {
        max-width: 100%;
        padding: 25px;
        text-align: left !important;
        border-right: none !important;
        border-left: 8px solid #5a3d7c !important;
        border-bottom-right-radius: 25px;
        border-bottom-left-radius: 0;
    }
}
/* --- ABA CONTACT ULTRA UNIQUE --- */

.aba-contact-ultra-wrapper { background-color: #fdfbff; }

/* Bilgi Kartları */
.aba-info-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    border: 1px solid rgba(90, 61, 124, 0.05);
}

.aba-info-card:hover { transform: scale(1.03); border-color: #5a3d7c; }

.aba-info-icon {
    width: 60px;
    height: 60px;
    color: #5a3d7c;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.aba-info-text h6 { font-weight: 800; color: #333; margin-bottom: 5px; }
.aba-info-text p { color: #666; margin: 0; font-size: 0.9rem; }

/* Sosyal Medya */
.aba-contact-social { background: #5a3d7c; color: #fff; }
.social-circle {
    width: 40px; height: 40px; background: rgba(255,255,255,0.1);
    color: #fff; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; text-decoration: none; transition: 0.3s;
}
.social-circle:hover { background: #fff; color: #5a3d7c; transform: translateY(-3px); }

/* Form Tasarımı (Floating Labels) */
.aba-contact-form-card { background: #fff; padding: 50px; border-radius: 40px; }

.aba-input-group { position: relative; margin-bottom: 10px; }
.aba-input-group input, .aba-input-group textarea {
    width: 100%; padding: 15px; border: 2px solid #eee; background: #f9f9f9;
    border-radius: 15px; outline: none; transition: 0.3s; font-weight: 500;
}
.aba-input-group label {
    position: absolute; left: 15px; top: 15px; color: #999;
    transition: 0.3s; pointer-events: none;
}
.aba-input-group input:focus, .aba-input-group textarea:focus { border-color: #5a3d7c; background: #fff; }
.aba-input-group input:focus ~ label, .aba-input-group input:not(:placeholder-shown) ~ label,
.aba-input-group textarea:focus ~ label, .aba-input-group textarea:not(:placeholder-shown) ~ label {
    top: -12px; left: 10px; font-size: 0.8rem; background: #5a3d7c; color: #fff; padding: 2px 10px; border-radius: 5px;
}

/* Form Butonu */
.aba-form-btn {
    background: #5a3d7c; color: #fff; border: none; padding: 15px 40px;
    border-radius: 50px; font-weight: 700; transition: 0.3s;
}
.aba-form-btn:hover { background: #3e2b55; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(90,61,124,0.3); }

/* Alert */
.aba-success-alert {
    background: #e8f5e9; border-left: 5px solid #2e7d32; padding: 20px;
    border-radius: 15px; display: flex; align-items: center;
}
.aba-success-alert .icon { font-size: 2rem; color: #2e7d32; margin-right: 20px; }

/* Harita */
.aba-map-frame { height: 450px; border-radius: 30px; overflow: hidden; }

@media (max-width: 991px) { .aba-contact-form-card { padding: 0px !important;background:transparent !important;box-shadow:none !important; } }

/* --- ABA PAGE ULTRA DESIGN --- */

.aba-page-ultra-wrapper {
    background-color: #fff;
    position: relative;
}

/* Ana Görsel Tasarımı */
.aba-page-main-visual {
    position: relative;
    padding: 10px;
}

.aba-visual-inner {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
}

.aba-visual-inner img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.aba-visual-inner:hover img {
    transform: scale(1.05);
}

.aba-visual-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    pointer-events: none;
}

/* Tipografi ve Paragraf Blokları */


.aba-page-paragraph-block {
    position: relative;
    display: flex;
    align-items: flex-start;
}


.aba-page-paragraph-block p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #444;
    text-align: justify;
}
/* --- ABA EVENT ULTRA DESIGN --- */

.aba-events-ultra-wrapper { background-color: #f8f9fc; }

.aba-event-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
}

.aba-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(90, 61, 124, 0.15) !important;
}

/* Kart Görsel Alanı */
.aba-event-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.aba-event-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.aba-event-card:hover .aba-event-img { transform: scale(1.1); }

.aba-event-date-badge {
    position: absolute; top: 20px; left: 20px;
    background: #5a3d7c; color: #fff;
    padding: 10px 15px; border-radius: 18px;
    text-align: center; z-index: 2;
    box-shadow: 0 8px 15px rgba(90, 61, 124, 0.3);
}

.aba-event-date-badge .day { display: block; font-size: 1.4rem; font-weight: 800; line-height: 1; }
.aba-event-date-badge .month { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }

/* Overlay Efekti */
.aba-event-overlay {
    position: absolute; inset: 0;
    background: rgba(90, 61, 124, 0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}

.aba-event-card:hover .aba-event-overlay { opacity: 1; }

.aba-event-btn-zoom {
    width: 50px; height: 50px; background: #fff; color: #5a3d7c;
    border-radius: 50%; border: none; font-size: 1.2rem;
    transform: scale(0.5); transition: 0.4s;
}

.aba-event-card:hover .aba-event-btn-zoom { transform: scale(1); }

/* Kart Gövdesi */
.aba-event-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.aba-event-title { font-size: 1.3rem; font-weight: 800; color: #2d2d2d; margin-bottom: 15px; }
.aba-event-text { color: #6c757d; font-size: 0.95rem; line-height: 1.6; flex-grow: 1; }

.aba-event-link {
    background: none; border: none; color: #5a3d7c; font-weight: 800;
    padding: 0; text-align: left; transition: 0.3s;
}

.aba-event-link:hover { color: #3e2b55; letter-spacing: 0.5px; }

/* MODAL TASARIMI */
.aba-modal-event .modal-content { box-shadow: 0 0 100px rgba(0,0,0,0.2); }
.aba-modal-side-img {
    height: 100%; min-height: 300px;
    background-size: cover; background-position: center;
}

.aba-badge-purple { background: rgba(90, 61, 124, 0.1); color: #5a3d7c; padding: 8px 15px; border-radius: 10px; }
.aba-modal-event-info { display: flex; gap: 20px; color: #5a3d7c; font-weight: 700; }
.aba-event-full-text { font-size: 1.1rem; line-height: 1.8; color: #555; }

.aba-btn-close-modal {
    background: #f8f9fc; color: #5a3d7c; font-weight: 700;
    border-radius: 50px; padding: 12px; transition: 0.3s;
}
.aba-btn-close-modal:hover { background: #5a3d7c; color: #fff; }

@media (max-width: 991px) {
    .aba-modal-side-img { height: 250px; }
}

/* Küçük Mor Buton */
.aba-btn-purple-sm {
    background: #5a3d7c;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
}

.aba-btn-purple-sm:hover {
    background: #3e2b55;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 61, 124, 0.2);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
	.aba-blog-section .blog-left-content,.newsletter-wrapper{
	display: flex!important;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-align: center;
		width:100%;
	}
    .aba-page-paragraph-block { padding-left: 20px; }
    .aba-page-paragraph-block p { font-size: 1.1rem; text-align: left; }
    .aba-visual-inner { border-radius: 20px; }
}
/* --- ABA SEARCH ULTRA --- */


.aba-search-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
    border: 1px solid rgba(90, 61, 124, 0.05);
}

.aba-search-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(90, 61, 124, 0.1) !important;
}

.aba-search-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.aba-search-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; transition: 0.6s;
}

.aba-search-card:hover .aba-search-img-wrap img { transform: scale(1.1); }

/* Tür Rozetleri */
.aba-search-type-badge {
    position: absolute; bottom: 15px; left: 15px;
    padding: 6px 15px; border-radius: 50px; font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.aba-badge-blog { background: #5a3d7c; color: #fff; }
.aba-badge-program { background: #ff9800; color: #fff; }

.aba-search-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }

.aba-search-title {
    font-size: 1.15rem; font-weight: 800; color: #333;
    line-height: 1.5; margin-bottom: 20px; flex-grow: 1;
}

.aba-search-link {
    text-decoration: none; color: #5a3d7c; font-weight: 700;
    display: flex; align-items: center; gap: 10px; transition: 0.3s;
}

.aba-search-link:hover { gap: 15px; color: #3e2b55; }

/* Boş Durum Tasarımı */
.aba-search-empty {
    max-width: 600px; margin: 0 auto;
    background: #fff; border-radius: 40px; border: 2px dashed #eee;
}

.empty-icon-wrap {
    font-size: 4rem; color: #5a3d7c; opacity: 0.2;
}

.aba-btn-purple {
    background: #5a3d7c; color: #fff; padding: 12px 35px;
    border-radius: 50px; text-decoration: none; font-weight: 700;
    display: inline-block; transition: 0.3s;
}
.aba-btn-purple:hover { background: #3e2b55; color: #fff; transform: scale(1.05); }
.aba-blog-rich-content p,.aba-blog-rich-content span,.aba-blog-rich-content h2,.aba-blog-rich-content h3,.aba-blog-rich-content ul,.aba-blog-rich-content blockquote{
	font-family: var(--aba-font-main) !important;
}
/* Aktif Menü Elemanı */
.aba-nav-list .nav-link.active {
    color: #5a3d7c; /* ABA Moru */
    font-weight: 700;
    position: relative;
}
.aba-nav-list .nav-link:hover{
    
    border-bottom: 3px solid var(--aba-purple);
}
/* Altına şık bir çizgi (Opsiyonel) */
.aba-nav-list .nav-link.active::after
/* Hover durumunda da renk değişsin */
.aba-nav-list .nav-link:hover {
    color: #5a3d7c !important;
}

.cookie-banner {
    position: fixed;
    bottom: -500px; /* Başlangıçta gizli */
    left: 20px;
    right: 20px;
    background: #ffffff;
    padding: 20px;
    z-index: 99999;
    border-radius: 15px;
    border-left: 5px solid #5a3d7c;
    transition: all 0.5s ease-in-out;
}
.cookie-banner.show {
    bottom: 20px;
}
.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.cookie-icon { font-size: 30px; color: #5a3d7c; }
.cookie-text p { margin: 0; font-size: 14px; color: #333; line-height: 1.5; }
.cookie-link { color: #5a3d7c; text-decoration: underline; font-weight: 600; }
.cookie-btn-accept {
    background: #5a3d7c;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}
.cookie-btn-accept:hover { background: #4a2d6c; }

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-banner { left: 10px; right: 10px; padding: 15px; }
}

@media (max-width: 991px) {
    /* 1. Arka plan resmini görünür yapıyoruz */
    .prog-card .prog-card-bg {
        opacity: 1 !important;
    }

    /* 2. Yazıları beyaz yapıyoruz */
    .prog-card .prog-text h4,
    .prog-card .detail-link {
        color: #fff !important;
    }

    /* 3. İkonları beyaza çeviriyoruz */
    .prog-card .prog-icon {
        filter: brightness(0) invert(1) !important;
    }

    /* 4. Yuvarlak oku beyaz yapıp içindeki oku turuncu yapıyoruz */
  
}
@media (device-width: 1024px) {
.copyright-text, .footer-bottom-links a{
	font-size:10px !important;
}
	.aba-nav-list .nav-link{
		font-size:13px !important;
	}
	.program-main-content .main-title{
		font-size: 1.7rem;
	}
	
}

/* Mor Temalı KVKK Checkbox Tasarımı */
.kvkk-container-abaotizm {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    user-select: none;
}

.kvkk-checkbox-abaotizm {
    width: 20px;
    height: 20px;
    accent-color: #5a3d7c; /* Aba Otizm Mor Rengi */
    cursor: pointer;
    margin-top: 3px;
    flex-shrink: 0;
}

.kvkk-text-abaotizm {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.kvkk-text-abaotizm a {
    color: #5a3d7c;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.kvkk-text-abaotizm a:hover {
    color: #2c3e50;
}

.place-details-compact-container .info-button-container{

display: none !important;
}