* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #008b90;
    --main2-color: #f44336;
    --main3-color: #fec981;
    --parag-color: #092439;
    --white-color: #fff;
    --black-color: #000;
    --test-primary-color: #008b90;
    /* Ana renk */
    --test-secondary-color: #fec981;
    /* Üçüncü renk */
    --test-accent-color: #f44336;
    /* İkinci renk */
    --test-text-color: #092439;
    /* Paragraf rengi */
    --test-light-color: #fff;
    /* Beyaz */
    --test-dark-color: #000;
    /* Siyah */
    --test-border-color: #e0e0e0;
    --test-background-light: #f8f9fa;
}

body {
    font-family: "SUSE";
}

a {
    text-decoration: none;
}

p {
    color: var(--parag-color);
}

section {
    overflow: hidden;
}

.round-container {
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    /* overflow: hidden; */
}

@media (max-width: 1199px) {
    .round-container {
        border-radius: 0;
    }
}

.round-container2 {
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    /*  overflow: hidden; */
}

@media (max-width: 1199px) {
    .round-container2 {
        border-radius: 0;
    }
}

/* Header */
header {
    position: absolute;
    z-index: 7;
    width: 100%;
}

.fixed {
    position: fixed;
    top: 0;
}

.fixed .top-bar {
    display: none;
    background-color: var(--main-color);
}

.fixed .main-menu {
    background-color: #fef9f3;
    padding: 25px 0;
}

.top-bar {
    background-color: #008b90c9;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.top-menu-item {
    color: var(--white-color);
    font-size: 15px;
    position: relative;
    font-weight: bold;
    padding: 0 1rem;
    transition: all ease-in-out 0.4s;
}

.top-menu-item:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 74px;
    height: 5px;
    background-color: var(--main3-color);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

.top-menu-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.top-menu-item i {
    font-size: 17px;
    margin-right: 5px;
}

.top-left-content {
    display: inline-flex;
    justify-content: end;
    align-items: center;
}

.top-rigth-content {
    display: inline-flex;
    justify-content: end;
    align-items: center;
}

.btn-top-bar {
    background-color: var(--main2-color);
    padding: 0.4rem 2rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: bold;
    margin-left: 17px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.btn-top-bar:hover {
    background-color: darken(var(--main2-color), 10%);
    transform: translateY(-2px);
}

.heartbeat-effect {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

.btn-top-bar i {
    font-size: large;
    margin-right: 4px;
}

.mobile-menu-container {
    display: none;
}

.main-menu {
    padding: 15px 0;
    position: sticky;
    top: 0px;
    z-index: 999;
}

.main-menu {
    display: flex;
    align-items: center;
    padding-top: 1rem;
}

.logo {
    width: 150px;
}

.main-menu {
    padding: 15px 0;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-top: 1rem;
    padding: 0;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    text-decoration: none;
    color: #3a4040;
    font-size: 19px;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.mobile-menu-toggle {
    display: none;
}

.page .fixed .main-menu {
    background-color: var(--main-color);
    padding: 25px 0;
}

.page .logo {
    filter: brightness(0) invert(1);
}

.page .menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.menu ul li:hover a {
    color: #007b7f;
}

.menu ul li img:not(.flag-icon) {
    display: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.menu ul .dropdown:hover img {
    left: -32px;
}
.menu ul li:hover img:not(.flag-icon) {
    display: block !important;
    opacity: 1;
    transform: translateX(0);
    position: absolute;
    right: 45px;
    width: 28px;
}

.menu ul li:hover a {
    color: #007b7f;
}

.dropdown-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, auto));
    gap: 1px;
    width: auto;
    max-width: 1000px;
    position: absolute;
    top: 141%;
    left: -185px;
    background: #fff;
    padding: 22px 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
        visibility 0.3s;
}

.multi {
    left: -285px;
}

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

#preloader .loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#preloader .loader-logo {
    max-width: 460px;
    height: auto;
    width: 130px;
    display: block;
}

#preloader .loader-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #e4f3f5;
    /* dış halka */
    border-top-color: #0f7c8a;
    /* SOBE turkuaza yakın bir ton */
    animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

.dropdown-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu>div {
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.dropdown-menu div strong {
    color: #000;
    margin-bottom: 15px;
}

.dropdown-menu a {
    text-decoration: none;
    color: #555;
    font-size: 16px !important;
    margin-bottom: 15px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.dropdown-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--main2-color);
    transition: width 0.3s ease-in-out;
}

.dropdown-menu a:hover {
    color: var(--main2-color);
}

.dropdown-menu a:hover::after {
    width: 70%;
}

.break {
    display: block !important;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
}

.hero-slider .slider-bg {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.hero-slider .swiper-slide>.container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-slider .slide-content {
    max-width: 620px;
    padding: 0 15px !important;
}

.slider .swiper-slide {
    display: none !important;
}

.slider .swiper-slide:first-child {
    display: block !important;
}

.slider.swiper-initialized .swiper-slide {
    display: block !important;
}

@media (max-width: 991.98px) {
    .hero-slider .swiper-slide>.container {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-slider .slide-content {
        max-width: 100% !important;
        position: relative;
        top: 25px;
    }

}

.slide-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: "SUSE";
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.slider-btn {
    padding: 1rem 2rem;
    background-color: var(--main3-color);
    max-width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 17px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.slider-btn a {
    color: var(--white-color);
}

.slider-btn:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.slider-social {
    z-index: 6;
    position: absolute;
    bottom: 0;
    right: 15%;
}

.slider-social ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}

.slider-social ul li {
    list-style: none;
    background-color: var(--main2-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.slider-social ul li a {
    color: white;
    font-size: 15px;
}

.icon-box-area {
    padding: 7rem 2rem 0rem 2rem;
    position: relative;
}

.icon-box-area h2 {
    text-align: center;
    font-size: 19px;
    padding-top: 1rem;
}

.icon-box-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    background-color: #a4dedc;
    left: 71px;
    top: 0;
    height: 70px;
    border-radius: 50%;
    width: 70px;
    z-index: -1;
}

.icon-box-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-content h2 {
    color: var(--black-color);
}

.icon-box-content img {
    width: 60px;
    display: flex;
    margin-left: 30px;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.icon-box-content a:hover img {
    transform: translate(-36px, -2px);
}

.icon-box-content2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: stretch;
}

.icon-box-content2 h2 {
    color: var(--black-color);
}

.icon-box-content2 img {
    width: 60px;
    display: flex;
    margin-left: 30px;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.icon-box-content2 a:hover img {
    transform: translate(-36px, -2px);
}

.icon-box-content2 .icon-bg2 {
    position: absolute;

    left: 0;
    top: 0;
    height: 70px;
    border-radius: 50%;
    width: 70px;
    z-index: -1;
}

.what-we-do {
    padding: 7rem 2rem;
    position: relative;
}

.what-we-do-head {
    padding-top: 3rem;
    text-align: center;
    position: relative;
}

.what-we-do-head h3 {
    font-size: 2.5rem;
    color: var(--main-color);
    text-transform: uppercase;
    font-family: "SUSE";
    font-weight: 600;
}

.what-we-do-head h3::after {
    content: "";
    position: absolute;
    left: 48%;
    top: 0;
    transform: translate(4px, 88px);
    width: 74px;
    z-index: -1;
    height: 7px;
    background-color: var(--main3-color);
}

.what-we-do-head p {
    padding-top: 12px;
    text-align: center;
    font-size: 17px;
    opacity: 0.7;
}

.shape {
    content: "";
    position: absolute;
    right: 0;
}

.left-shape {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(1px, 10px);
}


.autism-info-area .left-shape {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(12px, 90px);
}

.autism-info-area .left-shape img {
    width: 120px;
}

.autism-info-area .right-shape {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-35px, 604px);
}

.autism-info-area .right-shape img {
    width: 120px;
}

.what-we-do-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    padding-top: 2rem;
}

.what-we-do-box {
    display: block;
    transition: 0.3s ease-in-out;
}

.what-we-do-box:hover img {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.what-we-do-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0%);
}

.what-we-do-box-img {
    position: relative;
}

.what-we-do-box-img img {
    width: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.what-we-do-box-img i {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(-2px, 11px);
    color: var(--white-color);
    font-size: 30px;
}

.what-we-do-box h3 {
    font-size: 19px;
    font-family: "SUSE";
    font-weight: normal;
    text-transform: uppercase;
    margin-top: 15px;
    text-align: center;
}

/* Ana Swiper Stili */
.main-swiper {
    width: 100%;
    height: 500px;
    /* İhtiyaca göre ayarlayın */
}

/* Thumbs Swiper Stili */
.thumbs-swiper {
    width: 100%;
    height: 100px;
    /* Küçük slaytların yüksekliği */
    margin-top: 20px;
}

.thumbs-swiper .swiper-slide {
    opacity: 0.4;
    /* Aktif olmayan slaytların opaklığı */
    transition: opacity 0.3s;
}

.thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    /* Aktif slaytın opaklığı */
}

.swiper-container {
    overflow: hidden;
}

.video-area {
    position: relative;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

.video-content {
    position: relative;
    z-index: 2;
    /*max-width: 1200px; */
    height: 55vh;
    background-size: cover;
    margin: 0 auto;
    background: url(../img/video-bg.png);
    padding: 130px;
    border-radius: 8px;
}

.video-content span {
    font-size: 22px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.video-content h4 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.play-icon img {
    width: 84px;
    height: fit-content;
}

.play-icon {
    font-size: 60px;
    color: red;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.play-icon:hover {
    transform: scale(1.1);
    color: #ff4d4d;
}

.custom-thumb-slider {
    overflow: hidden;
    opacity: 1.2;
}

.custom-thumb-slider .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
    box-shadow: 0 5px 15px rgb(0 0 0 / 64%);
}

.video-thumb img {
    width: 100%;
    height: 20vh;
    object-fit: cover;
}

.product-area {
    padding: 7rem 2rem;
    background-color: #f4f4f4;
}

.product-head h3 {
    font-size: 2.5rem;
    color: var(--main-color);
    text-transform: uppercase;
    font-family: "SUSE";
    font-weight: 600;
}

.product-head p {
    font-size: 19px;
}

.product-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 2rem;
}

.product-1 .product-2 .product-3 .product-4 {
    height: 30vh;

}

.product-1 {
    background-color: var(--white-color);
    clip-path: polygon(55px 0, 100% 0, 100% 100%, 0 100%, 0 55px);
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    padding: 2rem 4rem;
    filter: drop-shadow(0px 5px 10px #c7c7c7);
}

.product-2 {
    background-color: var(--white-color);
    clip-path: polygon(0 0, calc(100% - 55px) 0, 100% 55px, 100% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    margin-top: 0px;

    padding: 2rem 4rem;
    filter: drop-shadow(0px 5px 10px #c7c7c7);
}

.product-3 {
    background-color: var(--white-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 55px 100%, 0 calc(100% - 55px));
    display: flex;
    flex-direction: column;
    margin-top: 5px;

    padding: 2rem 4rem;
    filter: drop-shadow(0px 5px 10px #c7c7c7);
}

.product-4 {
    background-color: var(--white-color);
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 55px),
            calc(100% - 55px) 100%,
            0 100%);
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    padding: 2rem 4rem;
    filter: drop-shadow(0px 5px 10px #c7c7c7);
}

.product-img img {
    width: 4.2vw;
}

.product-icon img {
    width: 40px !important;
}

.product-icon h5 {
    font-family: "SUSE";
    color: var(--black-color);
}

.product-img {
    text-align: center;
}

.product-btn {
    margin-top: 1.5rem;
}

.product-btn a {
    margin-top: 2rem;
    color: var(--main-color);
    font-size: 17px;
    transition: all ease-in-out 0.3s;
}

.product-btn a:hover {
    text-decoration: underline;
    transition: all ease-in-out 0.3s;
}

.product-btn i {
    font-size: 20px;
    font-weight: bold;
}

.product-icon .icon-bg {
    position: absolute;
    background-color: #a4dedc;
    left: 57px;
    top: 36px;
    height: 30px;
    border-radius: 50%;
    width: 30px;
    z-index: -1;
}

.product-context {
    padding: 10rem 3rem;
}

.product-context span {
    color: #f44336;
    font-size: 18px;
}

.product-context h4 {
    margin: 0.7rem 0;
    font-size: 50px;
    font-family: "SUSE";
}

.product-context p {
    color: #000000;
    opacity: 0.7;
    font-size: 18px;
}

.product-context b {
    color: var(--black-color);
}

.product-btn-left {
    padding: 1rem 2rem;
    background-color: #f44336;
    color: var(--white-color);
    max-width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border: 1px solid black;
    font-size: 17px;
    transition: background-color 0.3 sease-in-out, transform 0.3 sease-in-out;
}

.product-btn-left:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.product-btn-left span {
    color: var(--white-color);
    font-weight: bold;
    font-size: 17px;
}

.product-slider-container {
    overflow: hidden;
    position: relative;
    height: 650px;
}

.product-slider {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.product-slide {
    min-height: 100%;
    width: 100%;
    margin-top: 20px;
}

.scroll-buttons {
    text-align: center;
    margin-top: 20rem;
}

.scroll-buttons button {
    border: none;
    background: none;
    font-size: 30px;
    color: #008080;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.scroll-buttons button:hover {
    color: var(--main2-color);
    transform: scale(1.1);
}

.bagis-scroll-buttons {
    text-align: center;
    margin-top: 37rem;
}

.bagis-scroll-buttons button {
    border: none;
    background: none;
    font-size: 35px;
    color: #008080;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.bagis-scroll-buttons button:hover {
    color: var(--main2-color);
    transform: scale(1.1);
}

.news-area {
    padding: 7rem 2rem;
    position: relative;
}

.news-sol-shape {
    position: absolute;
    left: 0;
    bottom: -10px;
}

.news-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.news-box img {
    width: 100% !important;
    object-fit: cover;
    height: 30vh;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.news-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.new-box-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 15px;
    min-height: 195px;
}

.new-box-content h4 {
    font-size: 16px;
    font-family: "SUSE";
    margin-top: 15px;
    text-align: center;
}

.new-box-content p {

    font-size: 13px;
    font-family: "SUSE";

    text-align: center;
}

.news-swiper .swiper-container {
    width: 100%;
    height: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.news-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-swiper .swiper-pagination {
    bottom: 30px !important;
}

.news-swiper .swiper-pagination-bullet {
    background: #000;
}

.news-swiper .swiper-pagination-bullet-active {
    background: #007bff;
}

.who-we-area {
    position: relative;
    /* .who-we-bg için referans noktası */
    width: 100%;
    overflow: hidden;
}

.who-we-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: url(../img/biz-kimiz-bg.png);
    /* Arka plan resmi */
    background-size: cover;
    /* Resmi kaplamak için */
    background-position: center;
    /* Resmi ortala */
    z-index: 1;
    /* Diğer içeriklerin altında kalması için */
}

.who-image-content {
    position: relative;
    z-index: 2;
    /* Resmi öne çıkar */
    text-align: center;
    /* Resmi ortala */
    margin-top: 20px;
    /* İhtiyaca göre ayarlayın */
}

.who-image-content img {
    max-width: 100%;
    /* Resmin boyutunu sınırla */
    height: auto;
    /* Oranları koru */
}

.who-we-content {
    position: relative;
    z-index: 2;
    padding: 0 45px;
}

.content-who {
    margin-top: 12rem !important;
    gap: 5rem;
}

.who-head {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: start;
    margin: 2rem 0;
}

.who-head h1 {
    color: var(--main-color);
    font-size: 50px;
    text-transform: uppercase;
    font-family: "SUSE";
}

.who-head span img {
    width: 70px;
}

.who-we-content div h3 {
    font-size: 20px;
}

.who-we-content div p {
    max-width: 600px;
}

.who-rigth-shape {
    position: absolute;
    right: 10%;
    bottom: 10%;
    transform: translate(10%, 10%);
    z-index: 1;
}

.who-rigth-shape img {
    width: 120px;
}

.autism-resources-area {
    padding: 5rem 1rem;
    background-color: #f8f4f0;
    position: relative;
}

.autism-resources-box {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    flex-direction: column;
    margin-bottom: 16px;
}

.autism-resources-box-img {
    margin-right: 16px;
    flex-shrink: 0;
    position: relative;
}

.autism-resources-box-img img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    transition: opacity 0.3s ease;
    display: block;
}

.autism-resources-box-img::after {
    content: url("../icon/reminder-hover.png");
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    content: "";
    display: block;
    background-image: url("../icon/reminder-hover.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.autism-resources-box:hover .autism-resources-box-img::after {
    opacity: 1;
}

.autism-resources-box:hover .autism-resources-box-img img {
    opacity: 0;
}

.autism-resources-box-content {
    display: flex;
    padding-left: 2rem;
    flex-direction: column;
    justify-content: center;
}

.autism-resources-box-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.autism-resources-box-content p {
    margin: 0;
    line-height: 1.5;
    color: #555;
}

.autism-resources-boxs-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -6rem;
}

.autism-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem !important;
}

.autism-btn a {
    padding: 1rem 2rem;
    background-color: var(--main3-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 17px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.autism-btn a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.blog-area {
    padding: 7rem 2rem;
}

.blog-head h3 {
    color: var(--main-color);
    font-size: 50px;
    text-transform: uppercase;
    font-family: "SUSE";
}

.blog-head p {
    font-size: 20px;
}

.blogSwiper {
    overflow: visible;
    width: 100%;
    position: relative;
    padding-bottom: 2rem;
}

/* --- Görünüm aynı, transform artık blog-box içinde --- */
.blog-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: scale(0.8);
    will-change: transform;
}

/* Aktif slayt büyüsün */
.blogSwiper .swiper-slide-active .blog-box {
    transform: scale(1.1);
}

/* Alt çizgi efekti */
.blogSwiper .swiper-slide-active .blog-content {
    border-bottom: 10px solid #ffba00;
}

/* --- Tıklama çakışmalarını çözmek için --- */
.blogSwiper .swiper-slide,
.blogSwiper .swiper-slide .blog-box {
    pointer-events: none;
    z-index: 1;
}

.blogSwiper .swiper-slide-active,
.blogSwiper .swiper-slide-active .blog-box {
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

/* Görünüm: opaklık farkı korunur */
.blogSwiper .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.blogSwiper .swiper-slide-active {
    opacity: 1;
    z-index: 3;
}

/* Görseller */
.blogSwiper .swiper-slide img {
    width: 100%;
    height: 33vh;
    object-fit: cover;
    display: block;
}

/* --- Navigasyon butonları --- */
.blog-area .swiper-btns {
    position: absolute;
    left: -30px;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 10;
}

.blog-area .swiper-button-next,
.blog-area .swiper-button-prev {
    position: static;
    width: 40px;
    height: 40px;
    background-color: rgb(0 0 0 / 0%);
    color: #000000;
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.blog-area .swiper-button-next:hover,
.blog-area .swiper-button-prev:hover {
    background-color: #f44336;
    color: white;
    border: none;
}

.blog-area .swiper-button-next::after,
.blog-area .swiper-button-prev::after {
    font-size: 20px;
}

/* --- İçerik --- */
.blog-content {
    color: #000000;
    padding: 20px;
    line-height: 4;
}

.blog-content h3 {
    min-height: 100px;
    font-size: 16px;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.blog-content .read-more {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    background-color: #ffba00;
    padding: 0.8rem 2rem;
    margin: 10rem 0;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.blog-content .read-more:hover {
    background-color: var(--main-color);
}

/* --- Küçük ekran düzenlemesi (masaüstü görünüm aynı kalır) --- */
@media (max-width: 768px) {
    .blog-content {
        line-height: 1.8;
    }

    .blog-content .read-more {
        margin: 1.5rem 0;
    }

    .blog-area {
        padding: 4rem 1rem;
    }

    .blog-area .swiper-btns {
        left: 8px;
        top: auto;
        bottom: 8px;
        transform: none;
        gap: 16px;
        flex-direction: row;
    }
}


.footer-bg {
    background-color: #008b90;
    padding: 4rem 0 2rem 0;
    position: relative;
    background-image: url(../img/footer-bg.svg);
}

.footer-logo {
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid white;
}

.footer-logo img {
    width: 250px;
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}

.footer-menu {
    padding: 1rem 2rem;
    position: relative;
}

.footer-menu .footer-head {
    margin-bottom: 13px;
    font-size: 18px;
    font-family: "SUSE";
    text-transform: uppercase;
    color: var(--white-color);
    border-bottom: 2px solid #ffba00;
}

.footer-menu ul {
    padding: 0;
}

.footer-menu ul li {
    color: var(--white-color);
    list-style: none;
    padding: 4px;
}

.footer-menu li::before {
    content: "";
    background: url(../icon/next.svg) no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 13px;
    position: absolute;
    left: 9px;
    transform: translateY(49%);
}

.footer-menu ul li a {
    color: var(--white-color);
    font-size: 17px;
    font-weight: 500;
}

.footer-contact-head {
    padding: 1rem 0;
    font-size: 25px;
    color: var(--white-color);
}

.footer-form form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-top: 1rem;
}

.footer-form .btn-bagis {
    background-color: var(--main2-color);
    color: white;
    padding: 11px 65px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-form input {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.footer-form button {
    padding: 0.5rem 1rem;
    background-color: #ffba00;
    color: var(--white-color);
    border: none;
    border-radius: 5px;
}

.footer-social h3 {
    font-size: 20px;
    color: var(--white-color);
}

.footer-social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-social ul li {
    list-style: none;
}

.footer-social ul li a {
    color: var(--white-color);
}

.copyright-p {
    text-align: center;
    color: var(--white-color);
}

.design p {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1rem;
}

.page-header {
    position: relative;
}

.page-header .page-bg img {
    width: 100%;
    height: 45vh;
    object-fit: contain;
}

.page-header .page-title {
    position: absolute;
    top: 47%;
    left: 15%;
    max-width: 34%;
    color: #092439;
    font-size: 31px;
    font-family: "SUSE";
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-us {
    padding: 4rem 0;
    position: relative;
}

.about-us .about-bg-shape {
    position: absolute;
    top: 20px;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #f7f7f7;
    z-index: -1;
}

.what-are-we-doing {
    position: absolute;
    top: 20px;
    left: -72px;
    width: 36%;
    height: 100%;
    background-color: #bbdcdd;
    z-index: -1;
}

.about-us .about-head {
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.about-us .about-head h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-us .baskan h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-us .about-head span {
    color: var(--main3-color);
}

.about-us .about-head .about-span {
    font-size: 30px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-us .about-head b {
    font-size: 15px;
    color: var(--main2-color);
}

.about-us .about-text {
    font-size: 17px;
    position: relative;
    border-left: 4px solid #fc6539;
    font-weight: 600;
    padding: 3px 25px;
}

.about-us .about-text-2 {
    font-size: 15px;
    position: relative;
    font-weight: 500;
    padding: 3px 30px;
}

.about-us .vision-mission {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.about-us .vision-mission-card {
    position: relative;
}

.about-us .vision-mission-card-content {
    position: absolute;
    top: 0;
    width: 226px;
    text-align: center;
    transform: translate(35px, 100px);
}

.about-us .vision-mission-card-content h4 {
    color: var(--white-color);
    font-size: 25px;
    font-family: "SUSE";
}

.about-us .vision-mission-card-content p {
    color: var(--white-color);
}

.about-us .vision-mission-card-content i {
    font-size: 30px;
    color: var(--white-color);
}


.mission-vision-area .vision-mission {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.mission-vision-area .vision-mission-card {
    position: relative;
}

.mission-vision-area .vision-mission-card-content {
    position: absolute;
    top: 0;
    width: 226px;
    text-align: center;
    transform: translate(35px, 100px);
}

.mission-vision-area .vision-mission-card-content h4 {
    color: var(--white-color);
    font-size: 25px;
    font-family: "SUSE";
}

.mission-vision-area .vision-mission-card-content p {
    color: var(--white-color);
}

.mission-vision-area .vision-mission-card-content i {
    font-size: 30px;
    color: var(--white-color);
}

.mission-vision-area .vision-mission-card-content h3 {
    color: var(--white-color);
}

.about-us .about-img {
    width: 100%;
    height: 55vh;
    object-fit: cover;
}

.what-we-do {
    position: relative;
}

.what-we-do-left-shape {
    position: absolute;
    top: 50%;
    left: 40px;
    width: 123px;
    height: 100%;
    z-index: -1;
}

.what-we-do-right-top-shape {
    position: absolute;
    top: 10%;
    right: 40px;
    width: 143px;
    height: 100%;
    z-index: -1;
}

.what-we-do-right-bottom-shape {
    position: absolute;
    bottom: -75%;
    right: 40px;
    width: 143px;
    height: 100%;
    z-index: -1;
}

.what-we-do-content .what-we-do-title {
    font-size: 60px;
    font-family: "SUSE";
    color: var(--main-color);
    margin: 4rem 0 1rem 0;
    text-transform: uppercase;
}

.what-we-do-content .what-we-do-p {
    font-size: 20px;
    color: #000000;
    opacity: 0.7;
    margin-bottom: 2rem;
    text-align: center;
}

.what-we-do-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.what-we-do-btn {
    position: relative;
    font-size: 20px;
}

.what-we-do-btn a {
    color: #000000;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.what-we-do-btn a:hover {
    color: var(--white-color);
    background-color: var(--main3-color);
}

.what-we-do-span {
    color: var(--main3-color);
}

.what-we-do-container {
    padding-top: 4rem;
}

.what-we-do-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    background: #eceaea;
    margin-bottom: 20px;
    padding: 2rem 1.2rem;
}

.what-we-do-cardimg {
    width: 100%;
    height: 40vh !important;
    object-fit: cover;
}

.what-we-do-card h3 {
    font-size: 30px;
}

.what-we-do-card p {
    font-size: 19px;
    color: #000000;
    opacity: 0.7;
}

.what-we-do-card span {
    font-size: 28px;
    color: var(--main3-color);
}

.what-we-do-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-we-do-link:hover {
    transform: translateY(-5px);

}

.custom-swiper {
    position: relative;
}

.custom-prev-button,
.custom-next-button {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgb(0 0 0 / 0%);
    color: #000000;
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3 sease;
}

.custom-prev-button:hover,
.custom-next-button:hover {
    background-color: #f44336;
    color: white;
    border: none;
}

.custom-prev-button {
    left: 0;
}

.custom-next-button {
    left: 0;
    top: 50px;
}

.swiper-button {
    position: absolute;
    top: 59%;
    left: 18%;
}

.bagis-card {
    display: flex;
    justify-content: stretch;
    align-items: center;
    gap: 5rem;
    margin-bottom: 25px;
}

.bagis-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.bagis-slider {
    transition: transform 0.5s ease-in-out;
}

.bagis-slide {
    display: block;
    width: 100%;
    min-height: 200px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 10px;
}

.bagis-card-content-head h2 {
    font-size: 3rem;
}

.bagis-card-content-head p {
    font-size: 17px;
    color: #000000;
    opacity: 0.7;
}

.bagis-card-content-head .product-btn-left {
    border: none;
    justify-content: center;
    max-width: 10vw;
    margin-top: 3rem;
    font-weight: 300;
}

.bagis-card-img img {
    height: 40vh;
    object-fit: contain;
}

.bagis-shape .left-shape {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-140px, 110px);
}

.bagis-shape .right-shape {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(200px, 300px);
}

.right-shape img {
    width: 121px;
}

.bagis-shape .left-shape img {
    width: 121px;
}

.bagis-shape .bagis-shape {
    position: relative;
}

.sobe-foundation {
    padding: 4rem 0;
}

.sobe-foundation-text h3 {
    font-size: 2.76rem;
    text-transform: uppercase;
}

.sobe-foundation-text h5 {
    font-size: 1.76rem;
    color: var(--main-color);
    font-family: "SUSE";
}

.sobe-foundation-text p {
    font-size: 17px;
    color: #000000;
    opacity: 0.7;
}

.sobe-foundation-sidebar {
    background: white;
    padding: 35px 40px 40px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 7px 60px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 7px 60px rgba(0, 0, 0, 0.07);
}

.sidebar-head .sidebar-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.sidebar-body ul li:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(29, 35, 31, 0.1);
}

.sidebar-body ul li a {
    transition: transform 0.3s ease-in-out;
    color: var(--black-color);
}

.sidebar-body ul li a:hover {
    color: var(--main-color);
}

.board-of-directors-card {
    display: flex;
    justify-content: center;
    min-height: 450px;
    align-items: center;
    text-align: center;
    flex-flow: column;
    padding: 48px 24px;
    margin-bottom: 1rem;
    background: rgb(246, 245, 243);
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.board-of-directors-card:hover {
    background-color: var(--main-color);
}

.board-of-directors-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.board-of-directors-card h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.board-of-directors-card h5 {
    font-size: 20px;
    color: #000000;
    opacity: 0.7;
}

.board-of-directors-card:hover h3,
.board-of-directors-card:hover h5 {
    color: var(--white-color);
    opacity: inherit;
}

.board-of-directors .new-box-content {
    min-height: 150px;
    padding: 10px !important;
}

.job-application {
    background: linear-gradient(135deg, #ffffff, #f5f7fa);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    position: relative;
    overflow: hidden;
}

.job-application::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--main-color), var(--main3-color));
}

.job-application h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--parag-color);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.job-application h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main3-color), var(--main3-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-column {
    flex: 0 0 50%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .form-column {
        flex: 0 0 100%;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--parag-color);
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-control,
.form-control-file {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-control-file:focus {
    border-color: var(--main-color);
    box-shadow: 0 4px 12px rgba(0, 139, 144, 0.15);
    outline: none;
}

.form-group:focus-within label {
    color: var(--main-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-control-file {
    padding: 12px;
    cursor: pointer;
    background: #f8fafc;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--main-color);
    background: #f5f7ff;
}

.file-upload-wrapper i {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.file-upload-wrapper p {
    color: var(--parag-color);
    margin-bottom: 5px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    padding-left: 10px;
}

.form-check-input {
    margin-right: 12px;
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    font-size: 0.95rem;
    color: var(--parag-color);
    line-height: 1.5;
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: var(--main-color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 139, 144, 0.2);
}

.btn-primary:hover {
    background: var(--main2-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.2);
}

.btn-primary:active {
    transform: translateY(1px);
}

.verification-area {
    background: rgba(254, 201, 129, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid var(--main3-color);
}

.required-field::after {
    content: "*";
    color: var(--main2-color);
    margin-left: 4px;
}

.page-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.content-section {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.8rem;
    color: var(--parag-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--main-color);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.card-title {
    font-size: 1.3rem;
    color: var(--parag-color);
    margin-bottom: 5px;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.card-body {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-gray);
    min-height: 200px;
}

.card-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    background: white;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--main3-color);
    color: white;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
    text-decoration: none;
}

.download-btn i {
    margin-right: 10px;
}

.download-btn:hover {
    background: var(--parag-color);
}

.download-btn svg {
    margin-right: 8px;
}

.format-badge {
    display: inline-block;
    padding: 5px 10px;
    background: var(--light-gray);
    color: var(--parag-color);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
}

.color-item {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.color-preview {
    height: 100px;
}

.color-info {
    padding: 15px;
}

.color-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.color-code {
    font-family: monospace;
    font-size: 0.9rem;
}

.typography-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.font-item {
    margin-bottom: 30px;
}

.font-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.font-example {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.font-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.download-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
    text-decoration: none;
    margin-top: 2rem;
}

.download-all-btn:hover {
    background: var(--parag-color);
}

.download-all-btn svg {
    margin-right: 10px;
}

.corporate-identity h2 {
    margin-bottom: 2.5rem;
    color: #092439;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.corporate-identity h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 4px;
    background: linear-gradient(to right, var(--main3-color), var(--main3-color));
    border-radius: 2px;
}

/* Bölüm Stilleri */
.section-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2.5rem;
    /*border-left: 5px solid #ffba00;*/
}

.section-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-item h3 {
    color: var(--main-color);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}


/* Değerler Bölümü */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 1.5rem;
}

.value-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #ffba00;
}

.value-item:nth-child(2) {
    border-top-color: var(--main-color);
}

.value-item:nth-child(3) {
    border-top-color: #ffcc00;
}

.value-item:nth-child(4) {
    border-top-color: #66cccc;
}

.value-item:hover {
    background-color: #ffffff;
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    color: var(--main-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.value-item h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ffba00;
    border-radius: 1.5px;
}

/* Logo Bölümü */
.logo-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-display {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.logo-display:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo-display img {
    max-width: 250px;
    height: auto;
}

.brand-colors {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.color-palette {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 20px;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.color-item:hover {
    transform: scale(1.05);
}

.color-box {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.color-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.color-code {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555555;
}

/* İndirilebilir Listeler */
.download-list,
.principles-list {
    margin-top: 1.5rem;
    padding-left: 0;
    list-style-type: none;
}

.download-list li,
.principles-list li {
    margin-bottom: 1rem;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.download-list li:hover,
.principles-list li:hover {
    background-color: #f0f7fc;
    transform: translateX(5px);
}

.download-list li::before {
    content: "↓";
    display: inline-block;
    margin-right: 10px;
    color: #ffba00;
    font-weight: bold;
}

.principles-list li {
    counter-increment: principles-counter;
}

.principles-list li::before {
    content: counter(principles-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--main-color);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.85rem;
    font-weight: bold;
}

.download-link {
    color: #ffba00;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.download-link:hover {
    color: var(--main-color);
    text-decoration: none;
}

.history-us {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    background-image: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
}

.about-text,
.about-text-2 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--main-color);
}

.about-text-2 {
    background-color: rgba(3, 169, 244, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Tarihçe Sayfası İçin Özel CSS */
.history-us {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    background-image: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
}

.about-text,
.about-text-2 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--main-color);
}

.about-text-2 {
    background-color: rgba(3, 169, 244, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Timeline Stili */
.timeline-section {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
    border-left: 3px solid var(--main-color);
    z-index: 1;
}

.timeline-section::before {
    content: '';
    position: absolute;
    left: -8px;
    top: -10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--main-color);
    box-shadow: 0 0 0 4px rgba(3, 169, 244, 0.2);
}

.timeline-section::after {
    content: '';
    position: absolute;
    left: -8px;
    bottom: -10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--main-color);
    box-shadow: 0 0 0 4px rgba(3, 169, 244, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 15px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--main-color);
    z-index: 1;
}

.timeline-year {
    position: absolute;
    left: -95px;
    top: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--main-color);
}

.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    /* border-left: 4px solid var(--main-color); */
}

.timeline-content h4 {
    color: #092439;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}

.timeline-content p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.6;
}

/* Kurucular Bölümü */
.founders-area {
    padding: 70px 0;
    position: relative;
    background-color: #f7f7f7;
}

.founders-sol-shape {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.founder-box {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.founder-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.founder-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.founder-box-content {
    padding: 20px;
    background-color: white;
}

.founder-box-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.founder-box-content p {
    color: #666;
    margin-bottom: 0;
}

/* Kilometre Taşları Bölümü */
.milestones-area {
    padding: 70px 0;
    background-color: white;
}

.milestone-box {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.milestone-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.milestone-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.milestone-icon i {
    font-size: 36px;
    color: var(--main3-color);
    position: relative;
    z-index: 2;
}

.milestone-icon .icon-bg {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(3, 169, 244, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.milestone-count {
    font-size: 36px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 10px;
}

.milestone-box h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 0;
}


/* Misyon ve Vizyon Sayfası Stilleri */
.mission-vision-area {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-head {
    margin-bottom: 50px;
}

.about-span {
    color: #008b90;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}

.about-head h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #092439;
}

.about-head h2 span {
    color: #008b90;
}

.mv-main-row {
    margin-bottom: 60px;
}

/* Misyon Kutusu */
.mission-box,
.vision-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #008b90;
}

.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #f44336;
}

.mission-icon,
.vision-icon {
    margin-bottom: 20px;
}

.mission-icon i,
.vision-icon i {
    font-size: 48px;
    color: #008b90;
}

.vision-icon i {
    color: #f44336;
}

.mission-box h3,
.vision-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #092439;
}

.mission-content p,
.vision-content p {
    color: #092439;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Misyon Listesi */
.mission-list {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 30px;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.mission-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mission-list li i {
    color: #008b90;
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

.mission-list li span {
    flex: 1;
}

/* Alıntı Kutusu */
.mission-quote {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin-top: 30px;
}

.mission-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: #008b90;
    opacity: 0.3;
}

.mission-quote blockquote {
    font-style: italic;
    font-size: 17px;
    color: #092439;
    margin-bottom: 10px;
    padding-left: 30px;
}

.quote-author {
    text-align: right;
    font-weight: 600;
    color: #008b90;
    margin-bottom: 0;
}

/* Vizyon Hedefleri */
.vision-goals {
    margin-top: 30px;
}

.vision-goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
}

.vision-goal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.goal-icon {
    min-width: 60px;
    height: 60px;
    background-color: rgba(244, 67, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.goal-icon i {
    font-size: 24px;
    color: #f44336;
}

.goal-content {
    flex: 1;
}

.goal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 8px;
}

.goal-content p {
    margin-bottom: 0;
    color: #092439;
    line-height: 1.7;
}

/* Değerler Bölümü */
.values-area {
    padding: 80px 0;
    background-color: #fff;
}

.values-header {
    margin-bottom: 30px;
}

.values-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 15px;
}

.values-header p {
    color: #092439;
    font-size: 17px;
}

.value-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-icon i {
    font-size: 30px;
    color: #008b90;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #092439;
}

.value-card p {
    color: #092439;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Stratejik Hedefler */
.strategic-goals {
    position: relative;
    padding: 80px 0;
    background-color: #f9f9f9;
}

.strategic-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategic-content {
    padding: 0 0 0 30px;
}

.strategic-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 20px;
}

.strategic-content p {
    color: #092439;
    line-height: 1.8;
    margin-bottom: 30px;
}

.strategic-goals-list {
    margin-top: 30px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.goal-number {
    font-size: 36px;
    font-weight: 800;
    color: #008b90;
    opacity: 0.5;
    margin-right: 20px;
    line-height: 1;
}

.goal-text {
    flex: 1;
}

.goal-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 10px;
}

.goal-text p {
    margin-bottom: 0;
    color: #092439;
    line-height: 1.7;
}

/* CTA Bölümü */
.cta-area {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 139, 144, 0.9), rgba(0, 109, 114, 0.9)), url('../../assets/img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px;
    border-radius: 15px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

.cta-box .row {
    z-index: 2;
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--white-color);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    max-width: 600px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background-color: white;
    color: #008b90;

    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #f44336;
    transition: all 0.4s ease;
    z-index: -1;

}

.btn-cta:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.btn-cta:hover:before {
    width: 100%;
}

.btn-cta i {
    margin-left: 10px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}


.documents-area {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-head {
    margin-bottom: 40px;
}

.section-span {
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}

.section-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--parag-color);
    font-size: 16px;
    line-height: 1.7;
}

/* Belge Kartları */
.documents-list {
    margin-bottom: 40px;
}

.document-card {
    display: flex;
    align-items: center;
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /* border-left: 4px solid var(--main-color); */
}

.document-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.document-icon {
    min-width: 60px;
    height: 60px;
    /* background-color: rgba(0, 139, 144, 0.1); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.document-icon i {
    font-size: 28px;
    color: var(--main-color);
}

.document-info {
    flex: 1;
    padding-right: 20px;
}

.document-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 10px;
}

.document-info p {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.document-size {
    font-size: 12px;
    color: #6c757d;
    display: block;
}

.document-download {
    min-width: 120px;
    text-align: center;
}


/* Bilgilendirme Kutusu */
.document-info-box {
    background-color: #fff3cd;
    /*  border-left: 5px solid var(--main3-color); */
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
}

.info-icon {
    min-width: 40px;
    height: 40px;
    /*  background-color: var(--main3-color); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.info-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 10px;
}

.info-content p {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* Sidebar */
.documents-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-widget {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
    transition: all 0.3s ease;
}

.category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-list li a {
    color: var(--parag-color);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    color: var(--main-color);
    padding-left: 5px;
}

.category-list li.active a {
    color: var(--main-color);
    font-weight: 600;
    padding-left: 5px;
    border-left: 3px solid var(--main-color);
}

.widget-desc {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-sidebar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-sidebar:hover {
    background-color: var(--main2-color);
    color: var(--white-color);
}

.btn-sidebar i {
    margin-right: 10px;
    font-size: 18px;
}

/* İletişim Kartı */
.contact-card {
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: var(--main-color);
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--main2-color);
}


.autism-info-area {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-head {
    margin-bottom: 40px;
}

.section-span {
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}

.section-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--parag-color);
    font-weight: 500;
}

.danismanlik-content h3 {
    color: var(--parag-color);
    font-weight: 500;
}

/* İçerik Blokları */
.content-block {
    margin-bottom: 50px;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--main-color);
    display: inline-block;
}

.content-block p {
    color: var(--parag-color);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Görsel Bölümü */
.autism-image {
    margin: 30px 0;
    position: relative;
}

.image-caption {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* Belirtiler Kutuları */
.symptom-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.symptom-box {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.symptom-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.symptom-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.symptom-icon i {
    font-size: 28px;
    color: var(--main-color);
}

.symptom-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.symptom-box ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.symptom-box ul li {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Tanı Süreci */
.diagnosis-process {
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    min-width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 5px;
}

.step-content p {
    margin-bottom: 0;
    color: var(--parag-color);
    font-size: 15px;
}

/* Nedenler Bölümü */
.causes-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.cause-item {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cause-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cause-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cause-icon i {
    font-size: 28px;
    color: var(--main-color);
}

.cause-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.cause-item p {
    color: var(--parag-color);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Bilgi Kutusu */
.info-box {
    display: flex;
    align-items: flex-start;
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--main3-color);
}

.info-icon {
    min-width: 40px;
    height: 40px;
    /*  background-color: var(--main3-color); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.info-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 10px;
}

.info-content p {
    color: var(--parag-color);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Tedavi Grid */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.treatment-item {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.treatment-icon i {
    font-size: 28px;
    color: var(--main-color);
}

.treatment-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.treatment-item p {
    color: var(--parag-color);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Accordion Stilleri */
.facts-section {
    margin-bottom: 50px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 15px 20px;
    font-weight: 600;
    color: var(--parag-color);
    background-color: var(--white-color);
    border: none;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: rgba(0, 139, 144, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 139, 144, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008b90'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    background-color: var(--white-color);
    color: var(--parag-color);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA Bölümü */
.cta-section {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('assets/img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
}

.cta-content {
    text-align: center;
}

.cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--parag-color);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--main-color);
    color: var(--white-color);
}

.primary-btn:hover {
    background-color: var(--parag-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: rgba(0, 139, 144, 0.1);
    color: var(--main-color);
}

.secondary-btn:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta i {
    margin-right: 10px;
    font-size: 18px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-widget {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
    transition: all 0.3s ease;
}

.category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-list li a {
    color: var(--parag-color);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    color: var(--main-color);
    padding-left: 5px;
}

.category-list li.active a {
    color: var(--main-color);
    font-weight: 600;
    padding-left: 5px;
    border-left: 3px solid var(--main-color);
}

/* Farkındalık Kartı */
.awareness-card {
    text-align: center;
}

.awareness-card img {
    margin-bottom: 20px;
}

.awareness-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.awareness-card p {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.widget-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.widget-link:hover {
    background-color: var(--parag-color);
    color: var(--white-color);
}

/* Kaynaklar Kartı */
.resource-card {
    text-align: center;
}

.resource-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resource-icon i {
    font-size: 28px;
    color: var(--main-color);
}

.resource-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 20px;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.resource-list li:hover {
    background-color: rgba(0, 139, 144, 0.05);
}

.resource-title {
    font-size: 14px;
    color: var(--parag-color);
    font-weight: 500;
}

.resource-download {
    width: 30px;
    height: 30px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.resource-download:hover {
    background-color: var(--main2-color);
    transform: scale(1.1);
}

/* İletişim Kartı */
.contact-card {
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 28px;
    color: var(--main-color);
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--main2-color);
}

.contact-hours {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 0;
}

.education-model-area {
    position: relative;
    padding: 70px 0;
    background-color: var(--light-bg);
}

.section-head {
    margin-bottom: 40px;
}

.section-span {
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

.section-head h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--parag-color);
}

/* Bölüm Başlıkları */
.education-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--main3-color);
    display: inline-block;
}

.education-content p {
    color: var(--parag-color);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* İlkeler Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.principle-item {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.principle-icon i {
    font-size: 24px;
    color: var(--main-color);
}

.principle-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 10px;
}

.principle-item p {
    color: var(--parag-color);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Yapı Öğeleri */
.model-structure {
    margin-bottom: 40px;
}

.structure-item {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.structure-item p {
    font-weight: 500 !important;
}

.structure-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.structure-number {
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-right: 15px;
}

.structure-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 0;
}

.structure-content p {
    color: var(--parag-color);
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.structure-content ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.structure-content ul li {
    color: var(--parag-color);
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 1.6;
}

/* Eğitim Yöntemleri */
.education-methods {
    margin-bottom: 40px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.method-item {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.method-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 10px;
}

.method-item p {
    color: var(--parag-color);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Hedefler */
.education-outcomes {
    margin-bottom: 40px;
}

.outcome-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.outcome-item {
    display: flex;
    align-items: center;
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.outcome-icon {
    min-width: 40px;
    height: 40px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.outcome-icon i {
    font-size: 20px;
    color: var(--main-color);
}

.outcome-content {
    flex: 1;
}

.outcome-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 5px;
}

.outcome-content p {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* İletişim Bölümü */
.contact-section {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.contact-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-section p {
    color: var(--parag-color);
    font-size: 15px;
    margin-bottom: 0;
}

.btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--main2-color);
    color: var(--white-color);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-widget {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
}

.category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-list li a {
    color: var(--parag-color);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    color: var(--main-color);
    padding-left: 5px;
}

.category-list li.active a {
    color: var(--main-color);
    font-weight: 600;
    padding-left: 5px;
    border-left: 3px solid var(--main-color);
}

/* Bilgi Kartı */
.info-card {
    text-align: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    /* background-color: rgba(0, 139, 144, 0.1); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 24px;
    color: var(--main-color);
}

.info-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-day {
    font-weight: 500;
    color: var(--parag-color);
    font-size: 13px;
}

.info-time {
    font-size: 13px;
    color: var(--main-color);
    font-weight: 600;
}

.document-icon {
    width: 50px;
    height: 50px;
    /* background-color: rgba(0, 139, 144, 0.1); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.document-icon i {
    font-size: 24px;
    color: var(--main-color);
}

.document-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 10px;
}

.document-card p {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: var(--main3-color);
    color: var(--white-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-link:hover {
    background-color: var(--main2-color);
    color: var(--white-color);
}

.download-link i {
    margin-right: 8px;
    font-size: 16px;
}

/* İletişim Kartı */
.contact-card {
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--main-color);
}

.contact-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--parag-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--parag-color);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: block;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--main2-color);
}

.contact-link-email {
    color: var(--parag-color);
    text-decoration: none;
    font-size: 15px;
    display: block;
    transition: all 0.3s ease;
}

.contact-link-email:hover {
    color: var(--main-color);
}


.application-form-area {
    padding: 70px 0;
    background-color: #f8f9fa;
    background-image: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

/* Başlık Stilleri */
.application-form-area .section-head {
    margin-bottom: 35px;
}

.application-form-area .section-span {
    color: #008b90;
    font-weight: 500;
    margin-bottom: 12px;
    display: inline-block;
}

.application-form-area .section-span b {
    color: #008b90;
}

.application-form-area .section-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: #092439;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.application-form-area .section-head h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #008b90, #f44336);
    border-radius: 3px;
}

.application-form-area .intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #092439;
}

/* Form Konteyneri */
.application-form-area .form-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 35px;
    border-top: 5px solid #008b90;
    position: relative;
}

/* Form Bölümleri */
.application-form-area .form-section {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e9ecef;
}

.application-form-area .form-section:last-child {
    margin-bottom: 25px;
    padding-bottom: 0;
    border-bottom: none;
}

.application-form-area .form-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 25px;
    position: relative;
    padding-left: 18px;
}

.application-form-area .form-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 22px;
    background-color: #008b90;
    border-radius: 3px;
}

/* Form Grupları */
.application-form-area .form-group {
    margin-bottom: 25px;
    position: relative;
}

.application-form-area .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: #092439;
    transition: all 0.3s ease;
}

.application-form-area .form-group:focus-within label {
    color: #008b90;
}

.application-form-area .required {
    color: #f44336;
    font-weight: bold;
    margin-left: 3px;
}

.application-form-area .form-control {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    color: #092439;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.application-form-area .form-control:focus {
    border-color: #008b90;
    box-shadow: 0 0 0 4px rgba(0, 139, 144, 0.1);
    outline: none;
    background-color: #fff;
}

.application-form-area .form-control::placeholder {
    color: #adb5bd;
    opacity: 0.7;
}

.application-form-area textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.application-form-area select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23092439' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Checkbox Grupları */
.application-form-area .checkbox-group {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.application-form-area .form-check {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
}

.application-form-area .form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.application-form-area .form-check-label {
    font-weight: normal;
    color: #092439;
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 4px 0;
    transition: all 0.2s ease;
}

.application-form-area .form-check-label:before {
    content: '';
    position: absolute;
    left: -28px;
    top: 6px;
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background-color: #fcfcfc;
    transition: all 0.2s ease;
}

.application-form-area .form-check-input:checked+.form-check-label:before {
    border-color: #008b90;
    background-color: #008b90;
}

.application-form-area .form-check-input:checked+.form-check-label:after {
    content: '';
    position: absolute;
    left: -24px;
    top: 9px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.application-form-area .form-check-input:focus+.form-check-label:before {
    box-shadow: 0 0 0 3px rgba(0, 139, 144, 0.2);
}

.application-form-area .form-check:hover .form-check-label:before {
    border-color: #008b90;
}

/* Dosya Yükleme */
.application-form-area .file-upload {
    border: 2px dashed #e9ecef;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
    position: relative;
}

.application-form-area .file-upload:hover {
    border-color: #008b90;
    background-color: rgba(0, 139, 144, 0.03);
}

.application-form-area .file-info {
    margin-top: 15px;
    font-size: 14px;
    color: #6c757d;
}

/* Form Aksiyonları */
.application-form-area .form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.application-form-area .btn-submit,
.application-form-area .btn-reset {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.application-form-area .btn-submit {
    background-color: #008b90;
    color: #fff;
    flex: 2;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 139, 144, 0.2);
}

.application-form-area .btn-submit:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.application-form-area .btn-submit:hover {
    background-color: #007a7f;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 139, 144, 0.3);
}

.application-form-area .btn-submit:hover:before {
    width: 100%;
}

.application-form-area .btn-reset {
    background-color: #f8f9fa;
    color: #092439;
    border: 2px solid #e9ecef;
    flex: 1;
}

.application-form-area .btn-reset:hover {
    background-color: #e9ecef;
    border-color: #dce0e5;
}

/* Sidebar Öğeleri */
.application-form-area .sidebar {
    position: sticky;
    top: 30px;
}

.application-form-area .sidebar-widget {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #008b90;
    transition: all 0.3s ease;
}

.application-form-area .sidebar-widget:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.application-form-area .widget-title {
    font-size: 19px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.application-form-area .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 3px;
    background-color: #008b90;
    border-radius: 3px;
}

.application-form-area .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.application-form-area .category-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #e9ecef;
    padding-bottom: 10px;
    transition: all 0.3s ease;
}

.application-form-area .category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.application-form-area .category-list li a {
    color: #092439;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.application-form-area .category-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e9ecef;
    transition: all 0.3s ease;
}

.application-form-area .category-list li a:hover {
    color: #008b90;
    padding-left: 20px;
}

.application-form-area .category-list li a:hover::before {
    background-color: #008b90;
    width: 8px;
    height: 8px;
}

.application-form-area .category-list li.active a {
    color: #008b90;
    font-weight: 600;
    padding-left: 20px;
}

.application-form-area .category-list li.active a::before {
    background-color: #008b90;
    width: 8px;
    height: 8px;
}

/* Bilgi Kartı */
.application-form-area .info-card {
    text-align: center;
}

.application-form-area .info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
}

.application-form-area .info-icon:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed #008b90;
    opacity: 0.3;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.application-form-area .info-icon i {
    font-size: 28px;
    color: #008b90;
}

.application-form-area .info-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.application-form-area .info-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    right: 30%;
    height: 2px;
    background-color: #008b90;
    opacity: 0.3;
}

.application-form-area .info-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.application-form-area .info-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e9ecef;
    transition: transform 0.3s ease;
}

.application-form-area .info-steps li:hover {
    transform: translateX(5px);
}

.application-form-area .info-steps li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.application-form-area .step-number {
    min-width: 28px;
    height: 28px;
    background-color: #008b90;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 12px;
    box-shadow: 0 2px 5px rgba(0, 139, 144, 0.3);
}

.application-form-area .step-text {
    flex: 1;
    font-size: 15px;
    color: #092439;
    line-height: 1.5;
}

/* İletişim Kartı */
.application-form-area .contact-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.application-form-area .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 139, 144, 0.1), rgba(0, 139, 144, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0, 139, 144, 0.1);
    transition: all 0.3s ease;
}

.application-form-area .contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 139, 144, 0.2);
}

.application-form-area .contact-icon i {
    font-size: 24px;
    color: #008b90;
}

.application-form-area .contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 12px;
}

.application-form-area .contact-card p {
    color: #092439;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.application-form-area .contact-link {
    color: #008b90;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 0;
}

.application-form-area .contact-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    right: 30%;
    height: 2px;
    background-color: #008b90;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.application-form-area .contact-link:hover {
    color: #f44336;
}

.application-form-area .contact-link:hover::before {
    transform: scaleX(1);
}

.application-form-area .contact-link-email {
    color: #092439;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.application-form-area .contact-link-email:hover {
    color: #008b90;
}

/* SSS Kartı */
.application-form-area .faq-card {
    text-align: left;
    position: relative;
}

.application-form-area .faq-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.application-form-area .faq-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #008b90;
}

.application-form-area .faq-item {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #e9ecef;
    transition: all 0.3s ease;
}

.application-form-area .faq-item:hover {
    transform: translateX(5px);
}

.application-form-area .faq-item:last-of-type {
    margin-bottom: 15px;
}

.application-form-area .faq-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.application-form-area .faq-item h5::before {
    content: '?';
    position: absolute;
    left: 0;
    top: -3px;
    font-size: 18px;
    color: #008b90;
    font-weight: 700;
}

.application-form-area .faq-item p {
    font-size: 14px;
    color: #092439;
    margin-bottom: 0;
    line-height: 1.6;
    padding-left: 20px;
}

.application-form-area .faq-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #008b90;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 8px rgba(0, 139, 144, 0.2);
}

.application-form-area .faq-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.application-form-area .faq-link:hover {
    background-color: #007a7f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 139, 144, 0.3);
}

.application-form-area .faq-link:hover:before {
    width: 100%;
}


/* Eğitim Merkezi İçerik Bölümü */
.education-centers-content-area {
    padding: 50px 0 80px;
}

.education-centers-content {
    padding: 0 30px;
    margin-bottom: 30px;
}

.education-centers-content .section-span {
    font-size: 20px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: black;
}

.education-centers-content .section-head h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 20px;
}

/* Bölüm Başlıkları */
.section-head {
    margin-bottom: 40px;
}

.section-span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-span b {
    color: #4e86d4;
    margin-right: 5px;
}

.section-head h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* İçerik Blokları */
.content-block {
    margin-bottom: 50px;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.content-block p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

/* Eğitim Merkezi Listesi */
.education-centers-list {
    margin-top: 30px;
}

.education-center-item {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    border-radius: 8px;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.education-center-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.item-img {
    flex: 0 0 100%;
    max-width: 100%;
    height: 200px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .item-img {
        flex: 0 0 30%;

        height: auto;
    }
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px;
}

@media (min-width: 768px) {
    .item-content {
        flex: 0 0 55%;
        max-width: 85%;
    }
}

.item-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.item-meta {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}

.item-meta span {
    margin-right: 20px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.item-meta span i {
    margin-right: 5px;
    color: #4e86d4;
}

.item-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.feature-tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #e8f0fe;
    color: #4e86d4;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.item-action {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px 20px;
    text-align: right;
    border-top: 1px solid #eee;
}

@media (min-width: 768px) {
    .item-action {
        flex: 0 0 15%;
        max-width: 15%;
        border-top: none;
        border-left: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.btn-item-action {
    display: inline-block;
    padding: 8px 15px;
    background-color: #4e86d4;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-item-action:hover {
    background-color: #3972c0;
    color: #fff;
}

/* Hizmetler Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Tablo Stilleri */
.education-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #eee;
}

.education-table th,
.education-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #eee;
}

.education-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.education-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.education-table tr:hover {
    background-color: #f0f7ff;
}

.table-note {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

/* Süreç Adımları */
.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 24px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: #eee;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4e86d4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 20px;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Galeri Stilleri */
.gallery-container {
    margin-top: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Form Stilleri */
.application-form {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #4e86d4;
    box-shadow: 0 0 0 0.2rem rgba(78, 134, 212, 0.25);
}

.form-check-input:checked {
    background-color: #4e86d4;
    border-color: #4e86d4;
}

.submit-container {
    text-align: center;
    margin-top: 20px;
}

.btn-submit {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4e86d4;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3972c0;
}

/* İletişim Bilgileri */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 576px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95rem;
}

.contact-details li i {
    margin-right: 8px;
    color: var(--main-color);
}

/* Yan Menü */
.education-centers-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    display: block;
    color: #555;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.category-list li a:hover {
    color: #4e86d4;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Yaklaşan Etkinlikler */
.upcoming-events {
    margin-top: 20px;
}

.event-item {
    display: flex;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.event-date {
    width: 70px;
    background-color: #4e86d4;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.85rem;
    text-transform: uppercase;
}

.event-content {
    flex: 1;
    padding: 15px;
}

.event-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.event-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.event-link {
    font-size: 0.85rem;
    color: #4e86d4;
    text-decoration: none;
}

.event-link:hover {
    text-decoration: underline;
}

/* Hızlı Başvuru Formu */
.quick-contact-form {
    margin-top: 20px;
}

.btn-quick-submit {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #4e86d4;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-quick-submit:hover {
    background-color: #3972c0;
}

/* Sıkça Sorulan Sorular */
.faq-accordion {
    margin-top: 20px;
}

.accordion-button {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    padding: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: #e8f0fe;
    color: #4e86d4;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button::after {
    background-size: 16px;
}

.accordion-body {
    font-size: 0.9rem;
    color: #666;
    padding: 15px;
}

/* İletişim Kartı */
.contact-card {
    text-align: center;
    padding: 20px;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f0fe;
    color: #4e86d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 2rem;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-phone {
    font-size: 1.1rem;
    color: #4e86d4;
    margin-bottom: 5px;
}

.contact-hours {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
}

.btn-contact {
    display: inline-block;
    padding: 10px 25px;
    background-color: #4e86d4;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #3972c0;
    color: #fff;
}

/* Scientific Content Area CSS */
.scientific-content-area {
    padding: 70px 0;
    position: relative;
    z-index: 1;
    margin-top: -20px;
}

.scientific-content-area .scientific-content {
    /*  padding: 40px; */
    margin-bottom: 30px;
}

/* Başlıklar */
.scientific-content-area .section-head {
    margin-bottom: 40px;
}

.scientific-content-area .section-span {
    color: #008b90;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 16px;
}

.scientific-content-area .section-head h2 {
    font-size: 25px;
    font-weight: 700;
    color: #092439;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.scientific-content-area .section-head h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--main3-color);
    border-radius: 3px;
}

.scientific-content-area .intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #092439;
}

/* İçerik Blokları */
.scientific-content-area .content-block {
    margin: 50px 0;
}

.scientific-content-area .content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.scientific-content-area .content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #092439;
    margin-bottom: 20px;
}

/* Bilimsel Liste */
.scientific-content-area .scientific-list {
    margin-top: 20px;
}

.scientific-content-area .scientific-item {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    /* border-left: 4px solid #008b90; */
}

.scientific-content-area .scientific-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.scientific-content-area .item-date {
    min-width: 80px;
    text-align: center;
    padding-right: 20px;
    border-right: 1px dashed #e9ecef;
    margin-right: 20px;
}

.scientific-content-area .item-date span {
    font-size: 14px;
    font-weight: 600;
    color: #008b90;
    display: block;
}

.scientific-content-area .item-content {
    flex: 1;
}

.scientific-content-area .item-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 10px;
}

.scientific-content-area .item-content p {
    font-size: 15px;
    color: #092439;
    margin-bottom: 10px;
    line-height: 1.6;
}

.scientific-content-area .item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.scientific-content-area .item-meta span {
    font-size: 14px;
    color: #6c757d;
}

.scientific-content-area .item-meta span i {
    margin-right: 5px;
    color: #008b90;
}

.scientific-content-area .item-action {
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scientific-content-area .btn-item-action {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--main3-color);
    color: black;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scientific-content-area .btn-item-action:hover {
    background-color: #092439;
    color: #fff;
    transform: translateY(-2px);
}

/* Süreç Adımları */
.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    width: 2px;
    height: calc(100% - 15px);
    background-color: #e9ecef;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #008b90;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #092439;
}

.step-content p {
    margin-bottom: 0;
    color: #666;
}

/* Tablo */
.scientific-content-area .scientific-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0;
}

.scientific-content-area .scientific-table thead {
    background-color: #008b90;
    color: #fff;
}

.scientific-content-area .scientific-table th {
    padding: 12px 15px;
    font-weight: 600;
    text-align: left;
    border: none;
}

.scientific-content-area .scientific-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.scientific-content-area .scientific-table tbody tr:hover {
    background-color: rgba(0, 139, 144, 0.05);
}

.scientific-content-area .scientific-table td {
    padding: 12px 15px;
    border: none;
}

.table-note {
    font-size: 13px;
    color: #6c757d;
    margin-top: 10px;
    font-style: italic;
}

/* Dosya İndirme */
.scientific-content-area .download-files {
    margin-top: 20px;
}

.scientific-content-area .download-file {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.scientific-content-area .download-file:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.scientific-content-area .file-icon {
    min-width: 70px;
    height: 70px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.scientific-content-area .file-icon i {
    font-size: 30px;
    color: #008b90;
}

.scientific-content-area .file-info {
    flex: 1;
}

.scientific-content-area .file-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 8px;
}

.scientific-content-area .file-info p {
    font-size: 15px;
    color: #092439;
    margin-bottom: 8px;
    line-height: 1.6;
}

.scientific-content-area .file-meta {
    font-size: 13px;
    color: #6c757d;
}

.scientific-content-area .file-action {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scientific-content-area .btn-download {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background-color: var(--main3-color);
    color: black;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scientific-content-area .btn-download i {
    margin-right: 8px;
}

.scientific-content-area .btn-download:hover {
    background-color: #092439;
    color: #fff;
    transform: translateY(-2px);
}

/* Başvuru Formu */
.application-form {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.form-label {
    font-weight: 500;
    color: #092439;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #008b90;
    box-shadow: 0 0 0 3px rgba(0, 139, 144, 0.1);
}

.form-check-input:checked {
    background-color: #008b90;
    border-color: #008b90;
}

.submit-container {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    display: inline-block;
    padding: 14px 30px;
    background-color: #008b90;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #007175;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 139, 144, 0.3);
}

/* Kaynaklar */
.scientific-content-area .reference-list {
    padding-left: 20px;
}

.scientific-content-area .reference-list ol {
    margin-bottom: 0;
}

.scientific-content-area .reference-list li {
    font-size: 15px;
    color: #092439;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Sayfa Altı Navigasyon */
.scientific-content-area .page-navigation {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.scientific-content-area .nav-link {
    display: inline-flex;
    align-items: center;
    color: #092439;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.scientific-content-area .nav-link:hover {
    color: #008b90;
}

.scientific-content-area .nav-link i {
    font-size: 20px;
}

.scientific-content-area .prev-link i {
    margin-right: 8px;
}

.scientific-content-area .next-link i {
    margin-left: 8px;
}

/* Yan Menü */
.scientific-content-area .scientific-sidebar {
    position: sticky;
    top: 30px;
}

.scientific-content-area .sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.scientific-content-area .widget-title {
    font-size: 20px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.scientific-content-area .widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #008b90;
}

/* Kategori Listesi */
.scientific-content-area .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scientific-content-area .category-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #e9ecef;
    padding-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.scientific-content-area .category-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #008b90;
}

.scientific-content-area .category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.scientific-content-area .category-list li a {
    color: #092439;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.scientific-content-area .category-list li a:hover {
    color: #008b90;
    padding-left: 5px;
}

/* En Son Eklenenler */
.scientific-content-area .recent-items {
    margin-top: 20px;
}

.scientific-content-area .recent-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e9ecef;
}

.scientific-content-area .recent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.scientific-content-area .recent-date {
    min-width: 60px;
    text-align: center;
    padding: 8px 5px;
    background-color: #008b90;
    border-radius: 5px;
    margin-right: 15px;
}

.scientific-content-area .recent-date span {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: block;
}

.scientific-content-area .recent-content {
    flex: 1;
}

.scientific-content-area .recent-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.scientific-content-area .recent-content h4 a {
    color: #092439;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scientific-content-area .recent-content h4 a:hover {
    color: #008b90;
}

.scientific-content-area .recent-category {
    font-size: 12px;
    color: #6c757d;
}

/* Etiket Bulutu */
.scientific-content-area .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.scientific-content-area .tag-item {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f8f9fa;
    color: #092439;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scientific-content-area .tag-item:hover {
    background-color: #008b90;
    color: #fff;
}

/* Arşiv Listesi */
.scientific-content-area .archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scientific-content-area .archive-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #e9ecef;
    padding-bottom: 10px;
}

.scientific-content-area .archive-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.scientific-content-area .archive-list li a {
    color: #092439;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.scientific-content-area .archive-list li a:hover {
    color: #008b90;
}

.scientific-content-area .archive-list li a span {
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
}

/* İletişim Kartı */
.scientific-content-area .contact-card {
    text-align: center;
}

.scientific-content-area .contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 139, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.scientific-content-area .contact-icon i {
    font-size: 24px;
    color: #008b90;
}

.scientific-content-area .contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #092439;
    margin-bottom: 10px;
}

.scientific-content-area .contact-card p {
    font-size: 14px;
    color: #092439;
    margin-bottom: 10px;
    line-height: 1.6;
}

.scientific-content-area .contact-phone {
    font-size: 18px;
    margin-bottom: 5px;
}

.scientific-content-area .contact-hours {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 20px;
}

.scientific-content-area .btn-contact {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--main3-color);
    color: black;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scientific-content-area .btn-contact:hover {
    background-color: #092439;
    color: #fff;
    transform: translateY(-2px);
}


.danismanlik-content-area {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.section-head {
    margin-bottom: 40px;
}

.section-span {
    display: inline-block;
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.section-span b {
    color: var(--main2-color);
    margin-right: 10px;
    font-size: 17px;
}

.projects-area .section-span b {
    color: var(--main2-color);
    margin-right: 10px;
    font-size: 12px;
}

.section-head h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Danışmanlık Kartı */
.danismanlik-kart {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.danismanlik-ikon {
    width: 70px;
    height: 70px;
    background-color: #e6f0ff;
    color: var(--main-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.danismanlik-ikon i {
    font-size: 32px;
}

.danismanlik-icerik h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.danismanlik-icerik p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.danismanlik-ozellikler {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.danismanlik-ozellikler li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #555;
}

.danismanlik-ozellikler li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
}

.danismanlik-bilgi {
    background-color: #f5f9ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
}

.danismanlik-bilgi p {
    margin-bottom: 10px;
    font-size: 14px;
}

.btn-danismanlik {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-danismanlik:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Danışmanlık Süreci */
.danismanlik-surec {
    margin: 50px 0;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.danismanlik-surec h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.surec-adimlar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.surec-adimlar:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: 20px;
    width: 1px;
    background-color: #ddd;
    z-index: 1;
}

.surec-adim {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.adim-numara {
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
}

.adim-icerik {
    flex: 1;
}

.adim-icerik h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.adim-icerik p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Sıkça Sorulan Sorular */
.danismanlik-sss {
    margin: 50px 0;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.danismanlik-sss h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f5f9ff;
}

.accordion-button {
    padding: 15px 20px;
    font-weight: 600;
    color: #333;
    background-color: #f5f9ff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: #e6f0ff;
}

.accordion-body {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-top: none;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Form Bölümü */
.danismanlik-form {
    margin: 50px 0;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.danismanlik-form h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.danismanlik-form p {
    color: #666;
    font-size: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

textarea.form-control {
    height: auto;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.form-check-label {
    color: #666;
    font-size: 14px;
}

.btn-form-gonder {
    background-color: var(--main-color);
    color: #fff;
    border: none;
    height: 45px;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-form-gonder:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Yan Menü */
.danismanlik-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.widget-title:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
}

/* Uzmanlar Listesi */
.uzmanlar-listesi {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.uzman-kart {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.uzman-kart:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.uzman-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.uzman-kart h4 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.uzman-unvan {
    color: var(--main-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.uzman-ozet {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn-uzman-detay {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-uzman-detay:hover {
    background-color: #e0e0e0;
}

/* Randevu Bilgisi */
.randevu-bilgi {
    text-align: center;
    background-color: #f5f9ff;
    padding: 25px;
    border-radius: 8px;
}

.randevu-ikon {
    width: 60px;
    height: 60px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.randevu-ikon i {
    font-size: 28px;
}

.randevu-bilgi h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.randevu-bilgi p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.randevu-telefon {
    font-size: 20px;
    color: var(--main-color);
    font-weight: 700;
    margin: 15px 0 5px;
}

.randevu-saat {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
}

.btn-randevu {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-randevu:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Video Konteyner */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 oranı */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* PDF Rehber */
.pdf-rehber {
    text-align: center;
    background-color: #f5f9ff;
    padding: 25px;
    border-radius: 8px;
}

.pdf-ikon {
    width: 60px;
    height: 60px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pdf-ikon i {
    font-size: 28px;
}

.pdf-rehber h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.pdf-rehber p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-pdf-indir {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-pdf-indir:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Yorumlar Slider */
.yorumlar-slider {
    padding: 5px;
}

.yorum-kart {
    background-color: #f5f9ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.yorum-icerik {
    margin-bottom: 15px;
}

.yorum-icerik p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.yorum-icerik p:before {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 30px;
    color: var(--main-color);
    font-family: Georgia, serif;
}

.yorum-yazar h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 3px;
    font-weight: 600;
}

.yorum-yazar p {
    color: var(--main-color);
    font-size: 13px;
}

/* Blog Detay Sayfası CSS */

.blog-detail-area {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.blog-detail-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.blog-header {
    margin-bottom: 25px;
}

.blog-title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.blog-meta span {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.blog-meta span i {
    margin-right: 5px;
    color: var(--main-color);
}

.blog-featured-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
}

.blog-text {
    margin-bottom: 30px;
}

.blog-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
}

.blog-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 25px 0 15px;
}

.blog-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-text ul li {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.blog-text blockquote {
    background-color: #f5f9ff;
    border-left: 4px solid var(--main-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.blog-text blockquote p {
    font-style: italic;
    font-size: 17px;
    color: #444;
    margin-bottom: 10px;
}

.blog-text blockquote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--main-color);
    font-size: 15px;
}

.blog-tags {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blog-tags h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-right: 15px;
    margin-bottom: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--main-color);
    color: #fff;
}

.blog-share {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-share h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-right: 15px;
    margin-bottom: 10px;
}

.social-share {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--main-color);
    color: #fff;
}

.blog-author {
    display: flex;
    background-color: #f5f9ff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.author-img {
    flex: 0 0 100px;
    margin-right: 20px;
}

.author-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.author-info h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.author-info p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.related-posts {
    margin-bottom: 40px;
}

.related-posts h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.related-posts h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--main-color);
}

.related-post {
    margin-bottom: 20px;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.related-post h5 {
    font-size: 16px;
    line-height: 1.4;
}

.related-post h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post h5 a:hover {
    color: var(--main-color);
}

.blog-comments {
    margin-bottom: 40px;
}

.blog-comments h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.blog-comments h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--main-color);
}

.comment {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.comment-reply {
    margin-left: 70px;
}

.comment-img {
    flex: 0 0 60px;
    margin-right: 20px;
}

.comment-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-content h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.comment-date {
    display: block;
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.comment-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.reply-btn {
    display: inline-block;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.reply-btn:hover {
    text-decoration: underline;
}

.comment-form {
    margin-top: 40px;
}

.comment-form h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.comment-form h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--main-color);
}

.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: -10px 15px;
}

textarea.form-control {
    height: auto;
    padding: 15px;
}

.form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.btn-comment {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-comment:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Sidebar Stilleri */
.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--main-color);
}

/* Arama Kutusu */
.search-box .input-group {
    position: relative;
}

.search-box .form-control {
    height: 50px;
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 50px;
    border: 1px solid #e6e6e6;
}

.btn-search {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    border: none;
    color: #fff;
    z-index: 10;
}

/* Kategoriler */
.categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.categories li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories li a {
    display: flex;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.categories li a:hover {
    color: var(--main-color);
}

.categories li a span {
    background-color: #f0f0f0;
    color: #777;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* Popüler Yazılar */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.post-img {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content h5 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.post-content h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h5 a:hover {
    color: var(--main-color);
}

.post-date {
    color: #888;
    font-size: 13px;
}

/* Etiket Bulutu */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Arşiv */
.archive {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.archive li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.archive li a {
    display: flex;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive li a:hover {
    color: var(--main-color);
}

.archive li a span {
    color: #777;
    font-size: 13px;
}

/* Abone Olun Kutusu */
.subscribe-box {
    background-color: #f5f9ff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.subscribe-box h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.subscribe-box p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-subscribe {
    display: block;
    width: 100%;
    background-color: var(--main-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}


.contact-hero {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: #f0f7ff;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--main-color);
    transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--main-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 102, 204, 0.2);
    z-index: -1;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Info Cards */
.contact-info {
    margin-top: 50px;
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
}

.info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f7ff;
    color: var(--main-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    background-color: var(--main-color);
    color: #fff;
}

.card-icon i {
    font-size: 28px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Form and Map */
.contact-form-section {
    padding: 50px 0 80px;
    background-color: #f8f9fa;
}

.contact-wrapper {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-wrapper {
    padding: 50px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating .form-control,
.form-floating .form-select {
    border: 2px solid #eee;
    border-radius: 8px;
    height: 58px;
    padding: 1.5rem 1rem 0.5rem;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--main-color);
    box-shadow: none;
}

.form-floating textarea.form-control {
    height: auto;
    min-height: 150px;
}

.form-floating label {
    padding: 1rem 1rem;
}

.form-check-label {
    color: #666;
    font-size: 14px;
}

.form-check-label a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    background-color: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #005bb8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.map-wrapper {
    height: 100%;
    min-height: 550px;
}

/* Working Hours */
.working-hours {
    padding: 80px 0;
    background-color: #fff;
}

.hours-wrapper {
    padding: 0 15px;
}

.hours-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.hours-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.hours-list {
    margin-top: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #ddd;
    padding: 15px 0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.time {
    color: var(--main3-color);
    font-weight: 600;
    font-size: 16px;
}

.cta-box {
    background-color: #f0f7ff;
    border-radius: 12px;
    padding: 40px;
    /* text-align: center; */
}

.misyon-vizyon-area p {
    font-size: 17px;
    position: relative;
    border-left: 4px solid #fc6539;
    font-weight: 600;
    padding: 3px 25px;
    margin-top: 15px;
}

.cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--white-color);
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--main-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background-color: #005bb8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 15px;
}

.accordion-button {
    background-color: #fff;
    border: none;
    border-radius: 8px !important;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background-color: var(--main-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Newsletter Section */
.newsletter-section {
    padding: 50px 0;
    background-color: #fff;
}

.newsletter-wrapper {
    background-color: var(--main-color);
    border-radius: 12px;
    padding: 50px;
    color: #fff;
}

.newsletter-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    opacity: 0.9;
}

.newsletter-form .input-group {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
}

.newsletter-form .form-control {
    border: none;
    height: 50px;
    padding-left: 20px;
    font-size: 15px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.btn-subscribe {
    background-color: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 8px !important;
    padding: 0 30px;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #005bb8;
}


.destekciler-intro {
    padding: 70px 0 50px;
}

.intro-content {
    margin-bottom: 30px;
}

.section-badge {
    display: inline-block;
    background-color: #f0f7ff;
    color: var(--main-color);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 0 !important;
}

/* Paydaşlar Bölümü */
.paydaslar-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-showcase {
    padding: 20px 0;
}

.partner-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    margin-bottom: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.partner-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.partner-info p {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
}

/* Kurumsal Destekçiler */
.kurumsal-destekciler {
    padding: 70px 0;
    background-color: #fff;
}

.sponsor-level {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sponsor-level::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
}

.sponsor-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.sponsor-logo {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Sponsor Size Variations */
.sponsor-row.platinum .sponsor-logo {
    height: 150px;
    width: 250px;
}

.sponsor-row.gold .sponsor-logo {
    height: 130px;
    width: 200px;
}

.sponsor-row.silver .sponsor-logo {
    height: 110px;
    width: 180px;
}

/* Proje Destekçileri */
.proje-destekcileri {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-head {
    background-color: var(--main-color);
    padding: 20px;
    color: #fff;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.project-body {
    padding: 20px;
}

.project-desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
    min-height: 90px;
}

.project-supporters {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

.supporter-logo {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporter-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

/* Bireysel Destekçiler */
.bireysel-destekciler {
    padding: 70px 0;
    background-color: #fff;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--main-color);
    opacity: 0.5;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.author-info p {
    color: var(--main-color);
    font-size: 14px;
    margin: 0;
}

/* Destek Ol Bölümü */
.destek-ol {
    padding: 70px 0;
    background-color: #f0f7ff;
}

.support-container {
    padding: 30px;
    border-radius: 15px;
}

.support-content {
    padding-right: 30px;
}

.support-options {
    margin-top: 30px;
}

.support-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.option-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--main-color);
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.option-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.option-content p {
    color: #555;
    font-size: 15px;
    margin: 0;
}

.support-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--main3-color);
    border: none;
    /*border-radius: 10px;*/
    border-color: var(--main3-color);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #005bb8;
    border-color: #005bb8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

/* Autism Education Form Specific CSS */
.autism-form-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.autism-form-container h1 {
    text-align: center;
    color: var(--main-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.autism-form-container h2 {
    color: var(--main2-color);
    padding-bottom: 10px;
    margin: 30px 0 20px;
    border-bottom: 2px solid var(--main-color);
    font-size: 1.5rem;
}

/* Scoped form elements */
.autism-form-container .form-group {
    margin-bottom: 20px;
}

.autism-form-container .form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.autism-form-container .form-label.required:after {
    content: " *";
    color: #e74c3c;
}

.autism-form-container .form-input,
.autism-form-container .form-select,
.autism-form-container .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.autism-form-container .form-input:focus,
.autism-form-container .form-select:focus,
.autism-form-container .form-textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.autism-form-container .radio-group {
    display: flex;
    gap: 20px;
}

.autism-form-container .radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.autism-form-container .radio-group input[type="radio"] {
    margin-right: 5px;
    cursor: pointer;
}

.autism-form-container .siblings-container {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease-out;
}

.autism-form-container .sibling-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.autism-form-container .add-button {
    background-color: white;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.autism-form-container .add-button:hover {
    background-color: var(--main-color);
    color: white;
}

.autism-form-container .consent-box {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin: 30px 0;
}

.autism-form-container .consent-box .form-group {
    margin-bottom: 0;
}

.autism-form-container .consent-box label {
    display: flex;
    align-items: flex-start;
}

.autism-form-container .consent-box input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
}

.autism-form-container .submit-button {
    background-color: var(--main2-color);
    color: white;
    border: none;
    padding: 15px 30px;
    /* border-radius: 5px; */
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 0 auto;
    transition: background-color 0.3s;
}

.autism-form-container .submit-button:hover {
    background-color: var(--main2-color);
}

/* Form grid layout */
.autism-form-container .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Sibling remove button */
.autism-form-container .remove-sibling-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

.autism-form-container .error {
    border-color: #e74c3c !important;
}

.autism-form-container .error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Otizm Test Sayfası İçin Geliştirmeler */

/* Genel Görünüm İyileştirmeleri */
.otizm-test-page {
    --test-gradient: linear-gradient(135deg, var(--main3-color) 0%, var(--main3-color) 100%);
    --test-shadow-color: rgba(0, 139, 144, 0.2);
    --test-hover-bg: #f0f8f8;
}

/* Sayfa arka planı */
.otizm-test-page {
    background-color: #f9fbfb;
    position: relative;
}

.otizm-test-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: var(--test-gradient);
    opacity: 0.05;
    z-index: -1;
}

/* Başlık kısmını modernleştir */
.otizm-test-page .test-page-header {
    position: relative;
    height: 380px;
    margin-bottom: 70px;
    overflow: hidden;
}

.otizm-test-page .test-page-bg::after {
    background: linear-gradient(to bottom, rgba(0, 36, 57, 0.7), rgba(0, 139, 144, 0.6));
}

.otizm-test-page .test-page-title {
    font-size: 48px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
}

.otizm-test-page .test-page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--test-secondary-color);
    border-radius: 2px;
}

/* Form stillerini geliştir */
.otizm-test-page .test-form-container {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: all 0.3s ease;
}

.otizm-test-page .test-form-section-title {
    font-size: 24px;
    position: relative;
    padding-left: 15px;
    border-left: 5px solid var(--test-secondary-color);
}

.otizm-test-page .test-form-section {
    position: relative;
    border-bottom: 1px dashed rgba(0, 139, 144, 0.15);
    padding-bottom: 35px;
}

.otizm-test-page .test-question-item {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

/* .otizm-test-page .test-question-item:hover {
  background-color: var(--test-hover-bg);
  border-left: 3px solid var(--test-primary-color);
  transform: translateY(-3px);
} */


/* Genel sayfa paddingleri */
.otizm-test-page {
    padding: 0;
    overflow-x: hidden;
}


/* Test alanı paddingleri */
.otizm-test-page .test-area {
    padding: 40px 0 80px;
}

/* Form container içindeki boşluklar */
.otizm-test-page .test-form-container {
    padding: 40px 30px;
}

@media (max-width: 767px) {
    .otizm-test-page .test-form-container {
        padding: 30px 20px;
    }
}

/* Form bölümleri arasındaki boşluklar */
.otizm-test-page .test-form-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
}

/* Soru öğeleri arasındaki boşluklar */
.otizm-test-page .test-question-item {
    margin-bottom: 25px;
    padding: 25px 20px;
}

@media (max-width: 767px) {
    .otizm-test-page .test-question-item {
        padding: 20px 15px;
    }
}

/* Radio butonlar için padding */
.otizm-test-page .test-form-check-inline {
    padding: 10px 15px;
    margin-right: 12px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .otizm-test-page .test-form-check-inline {
        padding: 8px 12px;
        margin-bottom: 8px;
    }
}

/* Form butonlarının paddingleri */
.otizm-test-page .test-btn-submit,
.otizm-test-page .test-btn-reset {
    padding: 14px 30px;
}

/* Sidebar widget'ların içindeki paddingleri */
.otizm-test-page .test-info-card,
.otizm-test-page .test-warning-card,
.otizm-test-page .test-symptom-card,
.otizm-test-page .test-contact-card {
    padding: 30px 25px;
    margin-bottom: 30px;
}

/* Belirtiler listesindeki öğelerin paddingleri */
.otizm-test-page .test-symptom-list li {
    padding: 12px 0;
    margin-bottom: 0;
}

/* Sayfa içerik başlık kısmı paddingleri */
.otizm-test-page .test-section-head {
    padding-bottom: 30px;
    margin-bottom: 35px;
}

/* Warning box padding düzeltmesi */
.otizm-test-page .test-warning-box {
    padding: 20px;
    margin-top: 25px;
}

/* İkonlar için padding düzeltmeleri */
.otizm-test-page .test-info-icon,
.otizm-test-page .test-warning-icon,
.otizm-test-page .test-contact-icon {
    padding: 15px;
    margin-bottom: 20px;
}

/* Form group alanlarının marginleri */
.otizm-test-page .test-form-group {
    margin-bottom: 25px;
}

.otizm-test-page .test-form-actions {
    margin-top: 2rem;
}

.otizm-test-page .test-question-text {
    font-size: 17px;
    font-weight: 500;
    color: var(--test-text-color);
    margin-bottom: 16px;
}

.otizm-test-page .test-form-check-inline {
    background-color: white;
    border-radius: 30px;
    padding: 8px 16px;
    margin-right: 12px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    cursor: pointer;
}

.otizm-test-page .test-form-check-inline:hover {
    box-shadow: 0 4px 12px var(--test-shadow-color);
}

.otizm-test-page .test-form-check-input:checked+.test-form-check-label {
    color: var(--test-primary-color);
    font-weight: 600;
}

.otizm-test-page .test-btn-submit {
    border: none;
    background: var(--test-gradient);
    border-radius: 30px;
    padding: 14px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px var(--test-shadow-color);
    transition: all 0.3s ease;
}

.otizm-test-page .test-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--test-shadow-color);
}

.otizm-test-page .test-btn-reset {
    border-radius: 30px;
    padding: 14px 30px;
    border: 1px dashed var(--test-border-color);
}

.otizm-test-page .test-btn-reset:hover {
    border-color: var(--test-primary-color);
    color: var(--test-primary-color);
}

/* Sidebar Geliştirmeleri */
.otizm-test-page .test-sidebar-widget {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.otizm-test-page .test-sidebar-widget:hover {
    transform: translateY(-5px);
}

.test-symptom-card .test-symptom-list {
    list-style: none;
}

.otizm-test-page .test-info-card,
.otizm-test-page .test-warning-card,
.otizm-test-page .test-symptom-card,
.otizm-test-page .test-contact-card {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.otizm-test-page .test-info-card::before,
.otizm-test-page .test-warning-card::before,
.otizm-test-page .test-symptom-card::before,
.otizm-test-page .test-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.otizm-test-page .test-info-card::before {
    background: var(--test-gradient);
}

.otizm-test-page .test-warning-card::before {
    background: linear-gradient(to right, var(--test-accent-color), #ff7043);
}

.otizm-test-page .test-symptom-card::before {
    background: linear-gradient(to right, var(--test-secondary-color), #ffca7a);
}

.otizm-test-page .test-contact-card::before {
    background: var(--test-gradient);
}

/* İkon Stilleri */
.otizm-test-page .test-info-icon,
.otizm-test-page .test-warning-icon,
.otizm-test-page .test-contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.otizm-test-page .test-info-icon i,
.otizm-test-page .test-warning-icon i,
.otizm-test-page .test-contact-icon i {
    font-size: 28px;
}

/* Belirti Listesi Geliştirmeleri */
.otizm-test-page .test-symptom-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.otizm-test-page .test-symptom-list li:hover {
    transform: translateX(5px);
}

.otizm-test-page .test-symptom-list li i {
    background-color: rgba(0, 139, 144, 0.1);
    color: var(--test-primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
}

/* Bağlantı Stilleri */
.otizm-test-page .test-symptom-link,
.otizm-test-page .test-contact-link,
.otizm-test-page .test-contact-link-email {
    color: var(--test-primary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    text-decoration: none;
}

.otizm-test-page .test-symptom-link::after,
.otizm-test-page .test-contact-link::after,
.otizm-test-page .test-contact-link-email::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--test-primary-color);
    transition: width 0.3s ease;
}

.otizm-test-page .test-symptom-link:hover::after,
.otizm-test-page .test-contact-link:hover::after,
.otizm-test-page .test-contact-link-email:hover::after {
    width: 100%;
}

/* Animasyonlar */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 139, 144, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 139, 144, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 139, 144, 0);
    }
}

.otizm-test-page .test-btn-submit {
    animation: pulse 2s infinite;
}

/* Uyarı Kutusu İyileştirmesi */
.otizm-test-page .test-warning-box {
    background-color: rgba(254, 201, 129, 0.15);
    border-left: 5px solid var(--test-secondary-color);
    padding: 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.otizm-test-page .test-warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 201, 129, 0.1) 0%, rgba(254, 201, 129, 0) 100%);
    z-index: -1;
}

.otizm-test-page .test-warning-box i {
    color: var(--test-accent-color);
    font-size: 24px;
    background-color: rgba(244, 67, 54, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Form Elemanlari */
.otizm-test-page .test-form-control {
    border-radius: 8px;
    padding: 12px 18px;
    border: 1px solid rgba(0, 139, 144, 0.2);
    transition: all 0.3s ease;
}

.otizm-test-page .test-form-control:focus {
    box-shadow: 0 0 0 4px rgba(0, 139, 144, 0.1);
    border-color: var(--test-primary-color);
}


/* Projeler Sayfası CSS */


.projects-area {
    padding: 60px 0 80px;
}

.section-head {
    margin-bottom: 50px;
}

.section-span {
    display: inline-block;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--parag-color);
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filtre Butonları */
.project-filter {
    margin-bottom: 40px;
    text-align: center;
}

.filter-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-buttons li {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-weight: 500;
    color: var(--parag-color);
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.filter-buttons li.active,
.filter-buttons li:hover {
    background-color: var(--main3-color);
    color: var(--white-color);
}

/* Proje Kartları */
.project-item {
    margin-bottom: 30px;
}

.project-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 139, 144, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.project-card:hover .project-link {
    transform: scale(1);
}

.project-content {
    padding: 25px;
}

.project-category {
    color: black;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--main3-color);
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.project-desc {
    color: var(--parag-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-btn {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.project-btn i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.project-btn:hover {
    color: var(--main2-color);
}

.project-btn:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination-area {
    margin-top: 50px;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--parag-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination li.active a,
.pagination li a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.cta-inner {
    background-color: var(--main-color);
    padding: 50px;
    border-radius: 15px;
    color: var(--white-color);
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--white-color);
    color: var(--main-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn i {
    margin-left: 8px;
}

.cta-btn:hover {
    background-color: var(--main3-color);
    color: var(--parag-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(254, 201, 129, 0.3);
}


.awareness-intro {
    padding: 80px 0;
    background-color: #f9fbfb;
}

.intro-content {
    padding-right: 30px;
}

.section-span {
    font-size: 30px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: black;

}

.intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--parag-color);
    margin-bottom: 30px;
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 20px 15px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: var(--parag-color);
}

.intro-image {
    position: relative;
    padding: 20px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.image-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main3-color);
    border-radius: 10px;
    transform: translate(20px, 20px);
    z-index: 1;
}

/* Kampanyalar Bölümü */
.awareness-campaigns {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 50px;
}

.section-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--parag-color);
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.campaign-card {
    background-color: var(--white-color);
    border-radius: 10px;
    /* overflow: hidden; */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3 sease;
    /* height: 100%; */
    padding-bottom: 7px;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.campaign-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.campaign-card.active .campaign-status {
    background-color: var(--main-color);
    color: var(--white-color);
}

.campaign-card.upcoming .campaign-status {
    background-color: var(--main3-color);
    color: var(--parag-color);
}

.campaign-card.completed .campaign-status {
    background-color: #f0f0f0;
    color: #888;
}

.campaign-image {
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.campaign-card:hover .campaign-image img {
    transform: scale(1.1);
}

.campaign-content {
    padding: 25px;
}

.campaign-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.campaign-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.campaign-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--parag-color);
    margin-bottom: 20px;
}

.campaign-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.campaign-btn {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.campaign-btn i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.campaign-btn:hover {
    color: var(--main2-color);
}

.campaign-btn:hover i {
    transform: translateX(5px);
}

.campaign-share {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    color: var(--parag-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.campaign-share:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

/* Etkinlikler Bölümü */
.awareness-events {
    padding: 80px 0;
    background-color: #f9fbfb;
}

.event-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--main-color);
}

.event-date {
    text-align: center;
    padding: 10px 15px;
    background-color: var(--main3-color);
    border-radius: 8px;
    color: var(--parag-color);
    margin-bottom: 20px;
    align-self: flex-start;
}

.event-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-content {
    flex-grow: 1;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--parag-color);
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.event-time,
.event-location {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
}

.event-time i,
.event-location i {
    margin-right: 5px;
    color: var(--main-color);
}

.event-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--parag-color);
    margin-bottom: 20px;
}

.event-link {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.event-link:hover {
    background-color: var(--main2-color);
    transform: translateY(-3px);
}

/* Destek Olun Bölümü */
.involve-section {
    padding: 40px 0 80px;
}

.involve-inner {
    background-color: var(--parag-color);
    border-radius: 15px;
    padding: 60px;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.involve-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/patterns/dots-pattern.png');
    opacity: 0.1;
    z-index: 0;
}

.involve-content {
    position: relative;
    z-index: 1;
}

.involve-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.involve-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

.involve-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.involve-btn {
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-section {
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

.hero-section .lead {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-section img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Başarı Hikayeleri Bölümü */
.success-stories {
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.stories-slider {
    position: relative;
    padding: 0 50px;
    margin-top: 30px;
}

.stories-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox için scrollbar gizle */
    -ms-overflow-style: none;
    /* IE/Edge için scrollbar gizle */
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 0 30px 0;
}

.stories-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari için scrollbar gizle */
}

.story-slide {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.story-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.story-avatar {
    background-color: #0d6efd;
    font-size: 24px;
}

/* Navigasyon Okları */
.stories-nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.stories-prev,
.stories-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: #0d6efd;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.stories-prev:hover,
.stories-next:hover {
    background-color: #0d6efd;
    color: #fff;
}

.stories-prev {
    left: 0;
}

.stories-next {
    right: 0;
}


/* İş Ortakları Bölümü */
.partner-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.partner-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.partner-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partner-logo {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}


/* Çözüm Ortakları Metin Bloğu Stilleri */
.cozum-ortak-metin {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cozum-ortak-metin:last-child {
    margin-bottom: 30px;
    font-weight: 500;
}

.text-center .cozum-ortak-metin {
    text-align: center;
}

@media (max-width: 768px) {
    .cozum-ortak-metin {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 15px;
    }
}

/* İtalik metin için özel stil */
.cozum-ortak-metin[style*="italic"] {
    color: #666;
    font-size: 1.2rem;
    padding-top: 10px;
    border-top: 1px solid #eee;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.partner-card {
    transition: all 0.3s ease;
    height: 180px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.partner-card img {
    max-height: 150px;
    object-fit: contain;
}


/* Sosyal Sorumluluk Projeleri Sayfa Stilleri */

/* Sayfa Genel Düzeni */
.scientific-content-area {
    padding: 60px 0;
    background-color: #fff;
}

.intro-text {
    max-width: 800px;
    /*margin: 0 auto 50px;
  text-align: center; */
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

/* Proje Kartları */
.project-card2 {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    position: relative;

}


.project-card2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background-color: var(--main-color);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.logo-area {
    width: 200px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.logo-box {
    background-color: white;
    border-radius: 10px;
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 10px;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-name {
    font-weight: 600;
    color: #444;
    text-align: center;
    font-size: 16px;
}

.content-area {
    flex: 1;
    padding: 30px;
}

.project-title {
    color: black;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.project-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.thanks-message {
    color: #ffba00;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
}

/* Ana Stiller */
.yariMaraton-page {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header Stili */
.yariMaraton-header {
    background-color: var(--main-color);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Sayfa Başlık Alanı */
.yariMaraton-pageHeader {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.yariMaraton-pageBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.yariMaraton-pageBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.yariMaraton-pageTitle {
    position: relative;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding-top: 150px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* İçerik Alanı */


.yariMaraton-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Giriş Metni */
.yariMaraton-introText {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.yariMaraton-introText p {
    margin-bottom: 20px;
}

/* Proje Kartları */
.yariMaraton-projectCard {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

/* Hover effect removed */

.yariMaraton-contentArea {
    padding: 18px;
}

.yariMaraton-projectTitle {
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.yariMaraton-projectTitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}

.yariMaraton-projectDescription {
    color: #555;
    margin-bottom: 20px;
}

/* Listeler */
.yariMaraton-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin-top: 15px;
}

.yariMaraton-listItem {
    margin-bottom: 10px;
}

.yariMaraton-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: bold;
}

/* Alıntı Bölümü */
.yariMaraton-quote {
    background-color: #f5f5f5;
    border-left: 4px solid var(--main-color);
    padding: 20px;
    margin-top: 15px;
    border-radius: 0 5px 5px 0;
}

.yariMaraton-quoteText {
    font-style: italic;
    margin-bottom: 10px;
}

/* Butonlar */
.yariMaraton-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--main-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px 0;
    border: none;
    cursor: pointer;
    text-align: center;
}

/* Metin Hizalama */
.yariMaraton-textCenter {
    text-align: center;
}

/* İletişim Bilgileri */
.yariMaraton-contactInfo {
    margin: 15px 0;
}

.yariMaraton-contactLink {
    display: block;
    color: var(--main-color);
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Resimler */
.yariMaraton-image {
    width: 100%;
    border-radius: 10px;
    margin: 15px 0;
}


/* SOBEP Giriş Bölümü */
.sobep-intro {
    padding: 80px 0;
    position: relative;
}

.sobep-intro .intro-content {
    padding-right: 30px;
}

.sobep-intro .section-span {
    display: block;
    color: var(--main-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.sobep-intro .section-span b {
    color: var(--main3-color);
    margin-right: 10px;
}

.sobep-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.sobep-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.sobep-intro .stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sobep-intro .stat-item {
    flex: 0 0 33.333%;
    padding-right: 15px;
    margin-bottom: 20px;
}

.sobep-intro .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
    margin-bottom: 10px;
}

.sobep-intro .stat-text {
    font-size: 14px;
    color: #666;
}

.sobep-intro .intro-image {
    position: relative;
}

.sobep-intro .intro-image img {
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.sobep-intro .image-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f1f8ff;
    border-radius: 8px;
    top: -20px;
    left: 20px;
    z-index: 1;
}

/* SOBEP Başvuru Bölümü */
.sobep-apply {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.sobep-apply .section-head {
    margin-bottom: 50px;
}

.sobep-apply .section-span {
    display: block;
    color: var(--main-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.sobep-apply .section-span b {
    color: var(--main-color);
    margin-right: 10px;
}

.sobep-apply h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.sobep-apply .section-desc {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
}

/* Kullanıcı Tipleri için Tab Stili */
.user-tabs {
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.tab-link {
    padding: 12px 30px;
    font-size: 16px;
    color: #666;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-link.active {
    color: var(--main-color);
    border-bottom-color: var(--main-color);
}

.tab-content {
    display: none;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tab-content.active {
    display: block;
}

.tab-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

/* Tab İçindeki İletişim Kişileri Stili */
.tab-contact-list {
    margin: 30px 0;
}

.tab-contact-person {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.person-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-info {
    flex-grow: 1;
}

.tab-contact-person h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tab-contact-person p {
    margin-bottom: 8px;
    font-size: 14px;
}

.tab-contact-person i {
    color: var(--main-color);
    margin-right: 8px;
    width: 16px;
}

.apply-btn {
    background-color: var(--main-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.apply-btn:hover {
    background-color: #004e99;
    color: #fff;
}

/* Profil Resmi Yükleme Alanı */
.profile-upload {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f8ff;
    border-radius: 8px;
    border: 1px dashed var(--main-color);
}

.profile-upload h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.profile-upload p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-input-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.file-input-button {
    background-color: var(--main-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
}

.file-input-text {
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

/* SOBEP İletişim Bölümü */
.sobep-contacts {
    padding: 80px 0;
}

.sobep-contacts .section-head {
    margin-bottom: 50px;
}

.sobep-contacts .section-span {
    display: block;
    color: var(--main-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.sobep-contacts .section-span b {
    color: var(--main-color);
    margin-right: 10px;
}

.sobep-contacts h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.sobep-contacts .section-desc {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.sobep-contacts .contact-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.sobep-contacts .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sobep-contacts .contact-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sobep-contacts .contact-info {
    text-align: left;
}

.sobep-contacts .contact-phone,
.sobep-contacts .contact-email,
.sobep-contacts .contact-location {
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.sobep-contacts .contact-info i {
    color: var(--main-color);
    margin-right: 10px;
    font-size: 16px;
    min-width: 20px;
}

.bagis-area {
    position: relative;
    margin: 50px 0;
    overflow: hidden;
}

.bagis-bg-container {
    background-image: url(../img/bagis-yapbg.jpg);
    background-size: contain;
    background-position: center;
    /* border-radius: 15px; */
    background-repeat: no-repeat;
    height: 24vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bagis-content {
    position: relative;
    padding: 105px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}


.bagis-content h1 {
    color: #092439;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

.bagis-content h2 {
    color: #092439;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.bagis-btn-area {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-bagis {
    background-color: var(--main2-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-bagis:hover {
    background-color: #D35400;
    transform: translateY(-3px);
    color: white;
}

.secim-btn {
    background-color: var(--main3-color);
    color: #092439;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.secim-btn:hover {
    background-color: rgba(230, 126, 34, 0.1);
    transform: translateY(-3px);
}

.secim-btn i,
.btn-bagis i {
    margin-right: 8px;
}

.heartbeat-effect {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .yariMaraton-pageTitle {
        font-size: 2rem;
        padding-top: 120px;
    }

    .yariMaraton-pageHeader {
        height: 300px;
    }

    .yariMaraton-introText {
        font-size: 1rem;
    }

    .yariMaraton-projectTitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .yariMaraton-pageTitle {
        font-size: 1.7rem;
        padding-top: 100px;
    }

    .yariMaraton-pageHeader {
        height: 250px;
    }

    .yariMaraton-button {
        width: 100%;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.yariMaraton-fadeIn {
    animation: fadeIn 1s ease;
}

/* Footer */
.yariMaraton-footer {
    background-color: var(--main-color);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}


.custom-thumb-slider {
    padding: 1rem;
}

.top-icon {
    position: absolute;
    left: -15px;
    top: 116px;
}

.top-icon img {
    width: 162px;
    transform: rotate(345deg);
}

.bottom-icon {
    position: absolute;
    right: -220px;
    top: 418px;
}

.top-icon img {
    width: 121px;
}

.bottom-icon img {
    width: 399px;
}

.kalp-icon {
    position: absolute;
    right: 16%;
    top: 72%;
}

.strategic-goals .kalp-icon {
    position: absolute;
    right: 6%;
    top: 80%;
}

.kalp-icon img {
    width: 100px;
}

.strategic-goals .left-icon {
    position: absolute;
    left: 6%;
    top: 80%;
}

.left-icon img {
    width: 100px;
}

.strategic-goals .center-icon {
    position: absolute;
    left: 50%;
    top: 0%;
}

.center-icon img {
    width: 100px;
}

.what-we-do-icon {
    position: absolute;
    left: -15px;
    top: 116px;
    z-index: -4;
    transform: rotate(348deg);
}

.what-we-do-icon img {
    width: 900px;
    filter: opacity(0.4);
}

.what-we-do-icon-2 {
    position: absolute;
    right: -150px;
    top: 50%;
    z-index: -4;
    transform: rotate(348deg);
}

.what-we-do-icon-2 img {
    width: 900px;
    filter: opacity(0.4);
}

.scientific-content-area .what-we-do-icon {
    position: absolute;
    left: -340px;
    top: 116px;
    z-index: -4;
    transform: rotate(17deg);
}

.scientific-content-area .what-we-do-icon img {
    width: 769px;
    filter: opacity(0.4);
}

.scientific-content-area .what-we-do-icon-2 {
    position: absolute;
    right: 50px;
    top: 50%;
    z-index: -4;
    transform: rotate(348deg);
}

.scientific-content-area .what-we-do-icon-2 img {
    width: 175px;
    filter: opacity(0.4);
}

.projects-area .what-we-do-icon {
    position: absolute;
    left: -340px;
    top: 116px;
    z-index: -4;
    transform: rotate(17deg);
}

.projects-area .what-we-do-icon img {
    width: 769px;
    filter: opacity(0.4);
}

.projects-area .what-we-do-icon-2 {
    position: absolute;
    right: 50px;
    top: 50%;
    z-index: -4;
    transform: rotate(348deg);
}

.projects-area .what-we-do-icon-2 img {
    width: 175px;
    filter: opacity(0.4);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .employment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
    }

    .logo-area {
        width: 100%;
        padding: 25px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .employment-grid {
        grid-template-columns: 1fr;
    }

    .intro-text {
        padding: 0 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .cta-box {
        padding: 30px 20px;
    }
}

/* Genel Stil Ayarlamaları */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section img {
        margin-top: 40px;
    }

    .page-title {
        font-size: 38px;
    }

    .success-stories h2,
    .partner-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 30px;
    }

    .page-title {
        font-size: 32px;
    }

    .success-stories h2,
    .partner-section h2 {
        font-size: 28px;
    }

    .story-card {
        margin-bottom: 20px;
    }

    .partner-logo {
        padding: 15px;
    }
}


@media (max-width: 768px) {
    .video-area {
        padding: 80px 15px;
    }

    .video-content {
        padding: 30px;
    }

    .play-icon {
        font-size: 50px;
    }

    .video-content h4 {
        font-size: 20px;
    }
}

.donation-banner {
    position: relative;
    width: 100%;
    height: 230px;
    background-color: #f9f1e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    /* Önemli: Overflow'u visible yaptım */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bagis-yapbg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 75px;
    z-index: 4;
    position: relative;
}

.heading {
    color: #092439;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

.subheading {
    color: #092439;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.action-row {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 10px;
    flex-wrap: nowrap;
    position: relative;
    /* Action row'a position relative ekledim */
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    z-index: 9999;
    /* En yüksek z-index değeri */
}

.custom-dropdown .dropdown-btn {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--main3-color);
    border: 1px solid #ffc8a8;
    font-weight: bold;
    color: #092439;
    cursor: pointer;
    transition: all 0.3s ease;
    /* width: 120px; */
    justify-content: space-between;
    font-size: 15px;
}

.custom-dropdown .dropdown-btn .icon {
    color: #ff8d5c;
    font-size: 8px;
    margin-left: 3px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 9999;
    margin-top: 5px;
    left: 0;
    padding: 5px 0;
}

/* Yeni show class'ı */
.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 6px 10px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #fff0e0;
}

.donate-btn {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background-color: #ee6b5c;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.donate-btn .heart-icon {
    margin-right: 5px;
    font-size: 11px;
}

.donate-btn:hover {
    background-color: #d45c4d;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .donation-banner {
        height: auto;
        min-height: 180px;
        padding: 15px 0;
    }

    .heading {
        font-size: 20px;
    }

    .subheading {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .donation-banner {
        padding: 15px 10px;
    }

    .content-wrapper {
        padding: 10px;
    }

    .content {
        margin-bottom: 15px;
        padding: 0;
    }

    .heading {
        font-size: 18px;
    }

    .subheading {
        font-size: 22px;
    }

    .action-row {
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .custom-dropdown,
    .dropdown-btn {
        width: 100%;
    }

    .dropdown-content {
        width: 100%;
    }
}

.therapy-img {
    height: 55vh;
    object-fit: cover;
}

.article-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.article-item:last-child {
    border-bottom: none;
}

.article-title {
    color: #0054a6;
    margin-bottom: 10px;
    font-weight: 600;
}

.article-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.article-type {
    display: inline-block;
    padding: 3px 8px;
    background-color: #e9f5ff;
    color: #0054a6;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 10px;
}

.article-doi {
    color: #0054a6;
    text-decoration: none;
}

.article-doi:hover {
    text-decoration: underline;
}

.article-summary {
    margin-top: 15px;
    line-height: 1.6;
}


/* Harita alanı */
.svg-turkiye-haritasi {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

#svg-turkiye-haritasi {
    max-width: 100%;
    height: auto;
}

/* İl isimleri için tooltip */
.il-isimleri {
    position: absolute;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #222;
    color: #fff;
    font-size: 14px;
    display: none;
    z-index: 1;
}

/* Bayi durumunu gösteren etiket */
.il-isimleri div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.il-isimleri div::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 8px;
}

.il-isimleri.bayi-var div::after {
    background-color: #4CAF50;
}

.il-isimleri.bayi-yok div::after {
    background-color: #FF5722;
}

/* İletişim Bilgileri Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.bayi-bilgileri h2 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.bayi-bilgileri p {
    margin: 8px 0;
    color: #555;
}

.bayi-bilgileri .iletisim-baslik {
    font-weight: bold;
    width: 100px;
    display: inline-block;
}

/* Harita il path stilleri */
#svg-turkiye-haritasi path {
    fill: #e0e0e0;
    /* Bayisi olmayan iller için gri tonu */
    stroke: #ffffff;
    stroke-width: 1.5px;
    transition: fill 0.3s;
}

/* Bayisi olan iller için farklı renk */
#svg-turkiye-haritasi .bayi-var path {
    fill: #009393;
    /* Bayisi olan iller için mavi tonu */
}

#svg-turkiye-haritasi path:hover {
    fill: #009393;
    cursor: pointer;
}

/* Başlık ve Ana Div */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Lejant Stilleri */
.lejant {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.lejant-item {
    display: flex;
    align-items: center;
}

.lejant-renk {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border: 1px solid #ddd;
}

.bayi-var-renk {
    background-color: #009393;
}

.bayi-yok-renk {
    background-color: #e0e0e0;
}

.lejant-metin {
    font-size: 14px;
    color: #555;
}

.photo-gallery {
    padding: 60px 0;
}

.filter-buttons {
    margin-bottom: 30px;
    text-align: center;
}

.filter-button {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-button:hover,
.filter-button.active {
    background-color: #50a4a8;
    color: white;
    border-color: #50a4a8;
}

.gallery-item {
    margin-bottom: 30px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.pagination-custom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination-custom .page-item .page-link {
    color: #333;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination-custom .page-item.active .page-link {
    background-color: #50a4a8;
    border-color: #50a4a8;
    color: white;
}

.pagination-custom .page-item .page-link:hover {
    background-color: #50a4a8;
    border-color: #50a4a8;
    color: white;
}


.yg-section-header {
    text-align: center;
    margin: 50px 0;
    position: relative;
}

.yg-section-header h2 {
    color: var(--test-text-color, #092439);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.yg-section-header h2:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, var(--test-primary-color, #008b90), var(--test-primary-color, #008b90));
    border-radius: 2px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.yg-section-header p {
    color: var(--test-text-color, #092439);
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto 0;
}

.yg-intro-box {
    background: var(--test-light-color, #fff);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--test-primary-color, #008b90);
}

.yg-intro-box p {
    color: var(--test-text-color, #092439);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.yg-intro-box p:last-child {
    margin-bottom: 0;
}

.yg-intro-box strong {
    color: var(--test-primary-color, #008b90);
    font-weight: 600;
}

.yg-feature-box {
    display: flex;
    margin-bottom: 40px;
    background: var(--test-light-color, #fff);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.yg-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.yg-feature-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: var(--test-primary-color, #008b90);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    transition: all 0.3s ease;
}

.yg-feature-box:hover .yg-feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.yg-feature-icon i {
    color: var(--test-light-color, #fff);
    font-size: 32px;
}

.yg-feature-content {
    flex: 1;
}

.yg-feature-content h4 {
    color: var(--test-primary-color, #008b90);
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

.yg-feature-content p {
    color: var(--test-text-color, #092439);
    margin: 0;
    line-height: 1.7;
}

.yg-process-steps {
    counter-reset: step-counter;
    margin-top: 40px;
    padding: 0;
}

.yg-process-step {
    position: relative;
    background: var(--test-light-color, #fff);
    border-radius: 12px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.yg-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.yg-process-step:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--test-primary-color, #008b90);
    color: var(--test-light-color, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 139, 144, 0.3);
}

.yg-process-step h4 {
    color: var(--test-primary-color, #008b90);
    font-weight: 600;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
}

.yg-process-step p {
    color: var(--test-text-color, #092439);
    margin: 0;
    line-height: 1.7;
}

.yg-card {
    background: var(--test-light-color, #fff);
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 5px solid var(--test-primary-color, #008b90);
}

.yg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.yg-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--test-primary-color, #008b90);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.yg-card-icon i {
    color: var(--test-light-color, #fff);
    font-size: 28px;
}

.yg-card h3 {
    color: var(--test-primary-color, #008b90);
    font-weight: 600;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
}

.yg-card p {
    color: var(--test-text-color, #092439);
    margin: 0;
    line-height: 1.7;
}

.yg-partner-card {
    background: var(--test-light-color, #fff);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 5px solid var(--test-primary-color, #008b90);
}

.yg-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.yg-partner-card h4 {
    color: var(--test-text-color, #092439);
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.yg-partner-card h5 {
    color: var(--test-primary-color, #008b90);
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--test-border-color, #e0e0e0);
}

.yg-contact-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.yg-contact-icon {
    color: var(--test-primary-color, #008b90);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

.yg-contact-info {
    color: var(--test-text-color, #092439);
    line-height: 1.5;
    flex: 1;
}

.yg-counseling-models {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 0;
}

.yg-counseling-model-card {
    flex: 1;
    min-width: 300px;
    background: var(--test-light-color, #fff);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.yg-counseling-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.yg-counseling-model-card h3 {
    color: var(--test-text-color, #092439);
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

.yg-counseling-model-card h3 i {
    margin-right: 15px;
    color: var(--test-primary-color, #008b90);
    font-size: 24px;
}

/* Accent elementler için ikincil renk kullanımı */
.yg-accent {
    color: var(--test-accent-color, #f44336);
}

.yg-accent-bg {
    background-color: var(--test-accent-color, #f44336);
}

/* Üçüncül renk için özel sınıflar */
.yg-secondary {
    color: var(--test-secondary-color, #fec981);
}

.yg-secondary-border {
    border-color: var(--test-secondary-color, #fec981);
}

/* Hover durumları için alternatif renk tanımları */
.yg-card:hover .yg-card-icon {
    background: var(--test-secondary-color, #fec981);
}

.yg-partner-card:hover h5 {
    color: var(--test-accent-color, #f44336);
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .yg-col-4 {
        width: 50%;
    }
}

@media (max-width: 768px) {

    .yg-col-6,
    .yg-col-4 {
        width: 100%;
    }

    .yg-feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .yg-feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .yg-counseling-models {
        flex-direction: column;
    }

    .yg-counseling-model-card {
        min-width: 100%;
    }
}

.yg-counseling-model-card p {
    color: #334155;
    margin: 0;
    line-height: 1.7;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .yg-col-4 {
        width: 50%;
    }
}

@media (max-width: 768px) {

    .yg-col-6,
    .yg-col-4 {
        width: 100%;
    }

    .yg-feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .yg-feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .yg-counseling-models {
        flex-direction: column;
    }

    .yg-counseling-model-card {
        min-width: 100%;
    }
}


.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* isteğe bağlı */
}

.image-wrapper img {
    width: 100%;
    display: block;
}

.image-wrapper .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(4 149 150 / 83%), rgb(4 149 150 / 37%));
    /* sabit yarı saydam katman */
    z-index: 1;
    pointer-events: none;
    /* tıklamayı engellemesin */
}

.blog-content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 15px;
    text-align: center;
}

.simple-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.simple-popup.show {
    display: flex;
}

.simple-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.simple-popup-box {
    position: relative;
    max-width: 450px;
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
    animation: popupZoom 0.25s ease;
}

.simple-popup-box img {
    display: block;
    width: 100%;
    height: auto;
}

.simple-popup-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

@keyframes popupZoom {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


.news-box.text-center.yonetim-first-member {
    padding: 0 20rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0%);
    position: relative;
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown>.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-dropdown .lang-menu {
    position: absolute;
    right: 0;
    top: 140%;
    min-width: 160px;
    background: #fff;
    padding: 8px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
}

.lang-dropdown:hover .lang-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.lang-menu .lang-list {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.lang-menu .lang-list li {
    margin: 0;
}

.lang-menu .lang-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    white-space: nowrap;
    color: #555;
    text-decoration: none;
}

.lang-menu .lang-list a:hover {
    color: var(--main2-color);
}

