﻿@charset "utf-8";


body {
    overflow-x: hidden !important;
}

/* === ÜST BAR === */
.topbar {
    width: 100%;
    padding: 18px 0 15px 0;
}

.topbar-content {
    width: 1340px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Bilgi Kutuları */
.info-boxes {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 6px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #f3a5a1;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.08);
}



.info-boxes a {
    color: #f3a5a1 !important;
    text-decoration: none !important;
}

.info-boxes :hover {
    background-color: #f3a5a1 !important;
    color: white !important;
    transition: 0.3s;
}

/* Dikey Çizgi */
.divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.6);
}

/* Sosyal İkonlar */
.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    /* font-size: 22px; */
}

    .social-icons a {
        width: 36px;
        height: 36px;
        background: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        text-decoration: none;
        color: #f3a5a1;
        font-size: 18px;
        box-shadow: 0px 3px 8px rgba(0,0,0,0.08);
        transition: 0.2s;
    }

        .social-icons a:hover {
            transform: translateY(-2px);
            background: #f3a5a1;
            color: #fff;
        }


/* === TOPBAR MOBILE FIX (GÖRSEL AYNI KALIR) === */
@media (max-width: 991.98px) {

    .topbar {
        padding: 8px 0 10px 0;
    }

    .topbar-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Telefon + Mail yan yana ama orijinal kutular bozulmaz */
    .info-boxes {
        display: block;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: auto;
    }

    /* Orijinal tasarımda olduğu gibi beyaz kutular korunur */
    .info-item {
        padding: 6px 16px;
        font-size: 15px;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0px 3px 8px rgba(0,0,0,0.08);
        color: #f3a5a1;
        margin: 10px 0;
    }

        .info-item i {
            font-size: 15px;
            color: #f3a5a1;
        }

    /* Çizgi mobilde kaldırılır */
    .divider {
        display: none;
    }

    /* Sosyal ikonlar ALTTA ama aynı görünüm */
    .social-icons {
        justify-content: center;
        gap: 14px;
        width: 100%;
    }

        .social-icons a {
            width: 34px;
            height: 34px;
            font-size: 16px;
        }
}




/* NAVBAR KUTUSU – 1340 x 120 */
.custom-nav {
    width: 1340px;
    height: 120px;
    background: rgb(245 170 167 / 38%);
    backdrop-filter: blur(2px);
    border-radius: 18px;
    margin: 15px auto 0 auto;
    padding: 0 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

    /* LOGO */
    .custom-nav .logo-area {
        padding: 0;
        margin-right: 20px;
    }

        .custom-nav .logo-area img {
            width: 100px;
            height: auto;
        }

    /* COLLAPSE ALANI */
    .custom-nav .navbar-collapse {
        flex-grow: 1;
    }

/* MENÜ */
.nav-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

    /* LİNKLER */
    .nav-menu .nav-link {
        color: #fff !important;
        font-weight: 600;
        font-size: 18.5px;
        text-decoration: none;
        padding: 7px 7px !important; /* hover’da kayma olmasın */
        border-radius: 6px;
        transition: background 0.2s ease-in-out;
    }

        /* HOVER – KAYMA YOK */
        .nav-menu .nav-link:hover {
            background: #e9805b;
            color: #fff !important;
        }

/* ÖZEL BUTONLAR */
.btn-orange,
.btn-red {
    border: 2px solid #fff !important;
    font-weight: 600;
}

.btn-orange {
    background: #f8991c !important;
}

.btn-red {
    background: #bc0b02 !important;
}

    .btn-orange:hover,
    .btn-red:hover {
        opacity: 0.85;
    }

/* TOGGLER (mobil ikon) */
.navbar-dark .navbar-toggler {
    border-color: #fff;
}

.navbar-dark .navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: relative;
}

    .navbar-dark .navbar-toggler-icon::before,
    .navbar-dark .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background-color: #fff;
    }

    .navbar-dark .navbar-toggler-icon::before {
        top: -6px;
    }

    .navbar-dark .navbar-toggler-icon::after {
        top: 6px;
    }

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .custom-nav {
        width: 100%;
        border-radius: 0;
        height: auto;
        padding: 10px 15px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 10px;
    }

    .custom-nav .logo-area {
        margin-right: 0;
    }
}





#heroSlider {
    overflow: hidden !important;
    width: 100%;
    position: relative;
}

    #heroSlider .carousel-inner,
    #heroSlider .carousel-item {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
}

#heroSlider {
    overflow: hidden !important;
    width: 100%;
    position: relative;
}

    #heroSlider .carousel-inner,
    #heroSlider .carousel-item {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
}


@media(max-width:768px) {
    #heroSlider .carousel-item,
    #heroSlider img {
        /* height: 30vh !important; */
        object-position: top !important; /* görsel doğru kadraj */
    }
}



/* Arka plan görseli */
.hero-bg {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    /* Alt kısma doğru koyulaşan gradient */
    .hero-bg::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,60,100,0.65));
    }


.navbar-overlay {
    position: absolute !important;
    top: 63px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: rgb(242 166 162 / 56%);
    backdrop-filter: blur(3px);
    border-radius: 12px;
    padding: 0px 77px;
    z-index: 9999;
}


@media(max-width: 768px) {
    .navbar-overlay {
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        width: 100% !important;
        padding: 10px !important;
        border-radius: 0 !important;
    }
}



.bg2 {
    position: relative;
    padding: 90px 0;
    background: url(../../images/arkaplan2.png) no-repeat center center/cover;
    background-size: cover;
}

    .bg2 p,
    .bg5 p {
        font-size: 20px;
    }

.bg3 {
    background: url(../images/bg3.png) no-repeat center top;
    position: relative;
    min-height: 895px;
    margin-top: -435px;
    padding-top: 485px;
    padding-bottom: 80px;
    background-size: cover;
}

.pl-item h4::after {
    content: "";
    position: absolute;
    width: 0;
    left: 0;
    height: 2px;
    bottom: -15px;
    background: #4d55ef;
}

.pl-item .img-fluid,
.pl-item h4,
.pl-item h4::after {
    transition: all 0.5s ease;
}

.pl-item:hover .img-fluid {
    border-radius: 20px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.pl-item:hover h4 {
    color: #4d55ef;
}

    .pl-item:hover h4::after {
        width: 60%;
    }

.bg4 {
    padding-top: 85px;
    position: relative;
    padding-bottom: 80px;
    background: url(../images/arkaplan2.png) no-repeat center top;
    background-size: cover;
    margin-top: -53px;
}

    .bg4 .flower {
        width: 120px;
        position: absolute;
        right: 78px;
        top: 45px;
        -webkit-animation: rev-spin 25s linear infinite;
        -moz-animation: rev-spin 25s linear infinite;
        animation: rev-spin 25s linear infinite;
        display: none;
    }

    .bg4 .container::after {
        content: "";
        position: absolute;
        left: -260px;
        bottom: 10px;
        background: url('../images/flower.png') no-repeat center center;
        width: 238px;
        height: 237px;
        -webkit-animation: spin 25s linear infinite;
        -moz-animation: spin 25s linear infinite;
        animation: spin 25s linear infinite;
        display: none;
    }

.imp-data-item::before {
    content: "";
    width: 2px;
    height: 76%;
    position: absolute;
    background-image: linear-gradient(to bottom, #ffa3af 60%, transparent 20%);
    background-repeat: repeat-y;
    background-size: 5px 10px;
}

.imp-data-item .list-group-item:first-child::before {
    top: 0;
}

.imp-data-item .list-group-item::before {
    content: "";
    width: 45px;
    height: 45px;
    background: url(../images/TIME.PNG) no-repeat center center;
    position: absolute;
    top: 36px;
    left: -62px;
}


@keyframes rev-spin {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sway {

    0%, 100% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }
}

.bg5 {
    position: relative;
    min-height: 797px;
    background: url('../images/bg5.png') no-repeat center top;
    padding-top: 130px;
    background-size: cover;
}

    .bg5 .ab-rimg {
        top: -70px;
        -webkit-filter: drop-shadow(rgba(0, 0, 0, .35) 10px 17px 14px);
        filter: drop-shadow(rgba(0, 0, 0, .35) 10px 17px 14px);
    }

.bg6 {
    background: url('../../images/web/bg6.png') no-repeat center top;
    position: relative;
    min-height: 895px;
    margin-top: -280px;
    padding-top: 365px;
    padding-bottom: 100px;
    background-size: cover;
}


.l-guajian,
.r-guajian {
    position: absolute;
    z-index: 50;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform-origin: top center;
    animation-name: sway;
}

.l-guajian {
    bottom: -272px;
}

.r-guajian {
    right: 0;
    bottom: -290px;
}

.bg7 {
    padding-top: 85px;
    position: relative;
    padding-bottom: 80px;
    background: url(../../images/web/arkaplan2.png) no-repeat center top;
    background-size: cover;
}

.about-tt {
    position: relative;
    z-index: 200;
}

.ab-rimg,
.ab-limg {
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.ab-rimg {
    animation: roundAnimation 4s linear infinite;
}

.ab-limg {
    animation-name: borderAnimation1;
    animation: roundAnimation2 4s linear infinite;
}

/* news */
.new-item {
    position: relative;
    z-index: 10;
}

    .new-item .card,
    .new-item .card-img-top {
        border-radius: 30px;
    }

    .new-item .card {
        border: none;
        background: #fff url('../../images/web/new-item-bgi.png') no-repeat bottom right;
        transition: all 0.4s ease;
    }

        .new-item .card:hover {
            transform: translateY(-20px);
            box-shadow: 0rem 0rem 1rem rgba(144, 159, 167, 0.85) !important;
        }

    .new-item .card-body .card-title {
        font-size: 1.5rem;
        margin-top: 15px;
        color: var(--blue-color);
    }

    .new-item .card-body .card-text {
        height: 128px;
    }

/* important dates */
.imp-data-item {
    margin-left: 5%;
}

    .imp-data-item::before {
        content: "";
        width: 2px;
        height: 76%;
        position: absolute;
        background-image: linear-gradient(to bottom, red 60%, transparent 20%);
        background-repeat: repeat-y;
        background-size: 5px 10px;
    }

    .imp-data-item .list-group-item::before {
        content: "";
        width: 45px;
        height: 45px;
        background: url('../images/TIME.png') no-repeat center center;
        position: absolute;
        top: 36px;
        left: -62px;
    }

    .imp-data-item .list-group-item:first-child::before {
        top: 0;
    }

    .imp-data-item .list-group-item::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: linear-gradient(to right, #c0c0c0 0%, #c0c0c0 40%, transparent 8%);
        background-size: 6px 2px;
        background-repeat: repeat-x;
        position: absolute;
        bottom: 0;
    }

    .imp-data-item .list-group-item {
        padding: 36px 10px;
        border: none;
        margin-left: 40px;
    }

        .imp-data-item .list-group-item:first-child {
            padding-top: 0;
        }

        .imp-data-item .list-group-item:last-child::after {
            display: none;
        }


        .imp-data-item .list-group-item h4 {
            color: var(--blue-color);
            margin-bottom: 1.25rem;
        }

h3.title-name {
    font-size: 2.400rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 35px;
    text-transform: uppercase;
}


.lear-more a {
    color: #999;
}

.btn-reg {
    border-color: #00569b;
    background-color: #00569b;
    font-family: 'PlusJakarta-Sans';
    font-weight: bold;
    font-size: 2rem;
    padding: 1.25rem 3.65rem;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, .25);
}

@-webkit-keyframes roundAnimation {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }

    33% {
        -webkit-transform: translateX(-3px) translateY(-8px);
        transform: translateX(-3px) translateY(-8px);
    }

    66% {
        -webkit-transform: translateX(-3px) translateY(0);
        transform: translateX(-3px) translateY(0);
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}

@keyframes doudong1 {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(90deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes roundAnimation2 {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }

    33% {
        -webkit-transform: translateX(6px) translateY(-6px);
        transform: translateX(6px) translateY(-6px);
    }

    66% {
        -webkit-transform: translateX(6px) translateY(0);
        transform: translateX(6px) translateY(0);
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}


/* programme table */
.tableAbox {
    margin-top: 50px;
}

    .tableAbox .tableA tr th span {
        display: block;
    }

    .tableAbox .tableA tr th {
        border: none;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        padding: 25px 0;
        vertical-align: middle;
    }

    .tableAbox .tableA tr td,
    .tableAbox .tableA tr th {
        border-bottom: 1px solid #000;
        color: #fff;
        text-align: center;
        font-size: 20px;
        vertical-align: middle;
        font-weight: normal;
    }


        .tableAbox .tableA tr th.tdd1,
        .tableAbox .tableA tr th.tdd2,
        .tableAbox .tableA tr th.tdd3 {
            background: var(--red-color);
        }

        .tableAbox .tableA tr td.tdd1,
        .tableAbox .tableA tr td.tdd2,
        .tableAbox .tableA tr td.tdd3 {
            background: rgba(0, 0, 0, .35);
        }


        .tableAbox .tableA tr td.tdd1p {
            background: #ebe6f8;
            font-size: 14px;
            text-align: left;
            color: #333;
            vertical-align: middle;
            padding: 20px 10px;
        }

        .tableAbox .tableA tr td.tdd2p {
            background: #d6e9e9;
            font-size: 14px;
            text-align: left;
            color: #333;
            vertical-align: middle;
            padding: 20px 10px;
        }

        .tableAbox .tableA tr td.tdd3p {
            background: #eceadf;
            font-size: 14px;
            text-align: left;
            color: #333;
            vertical-align: middle;
            padding: 20px 10px;
        }

            .tableAbox .tableA tr td.tdd1p p,
            .tableAbox .tableA tr td.tdd2p p,
            .tableAbox .tableA tr td.tdd3p p {
                font-size: 18px;
            }

        .tableAbox .tableA tr td.black1 {
            background: var(--blue-color);
            writing-mode: vertical-rl;
            letter-spacing: 3px;
            width: 68px;
            vertical-align: middle;
        }

            .tableAbox .tableA tr td.black1 span {
                display: inline-block;
                transform: rotate(-180deg);
            }

        .tableAbox .tableA tr td.tdd1p span,
        .tableAbox .tableA tr td.tdd2p span,
        .tableAbox .tableA tr td.tdd3p span {
            display: block;
        }

/* end */

/*footer*/
.bg8 {
    position: relative;
    background-color: var(--foot-red-color);
    padding-bottom: 150px;
    border-radius: 8rem 8rem 0 0;
}

.shape {
    visibility: hidden;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.footer::before {
    content: "";
    top: -130px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('images/web/foot-qu.png') no-repeat top center /cover;
}

.footer {
    padding: 100px 0 50px;
    font-size: 1.125rem;
    position: relative;
    background-color: var(--foot-blue-color);
    /* background: transparent url('../../images/web/foot-qu.png') no-repeat center top / cover; */
}

.f-join-left p {
    font-size: 1.5rem;
}

.f-join-left h1 {
    font-size: 3.25rem;
    font-weight: bold;
}

.f-join-right .input-group {
    max-width: 416px;
    padding-left: 0.5rem;
    float: right;
}

.f-join-right input {
    font-size: 0.75rem;
    line-height: 50px;
    height: 50px;
    padding: 10px 20px;
}

.f-join-right .btn {
    z-index: 100;
    position: absolute;
    right: 0;
    line-height: 20px;
    height: 40px;
    margin: 5px;
    padding: .375rem 1.25rem;
}


.footer h3 {
    margin-bottom: 0.875rem;
    font-weight: bold;
    font-size: 1.5rem;
}

.footer,
.footer a {
    color: #fff;
}

    .footer ul li {
        line-height: 2.625rem;
    }

.f-2,
.f-3,
.f-4 {
    margin-top: 2.5rem;
}

.footer .f-1 {
    font-size: 1rem;
    color: #999;
    line-height: 1.75rem;
}


/* === FOOTER ARKA PLAN ANİMASYONLARI === */
.footer {
    position: relative;
    overflow: hidden; /* Animasyon taşmasın */
}

.footer-animations {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Tıklamayı engellemez */
    z-index: 0; /* İçerik altında kalır */
}

    /* Bulut */
    .footer-animations .cloud {
        position: absolute;
        left: -300px;
        bottom: 120px;
        width: 140px;
        opacity: 1;
        animation: cloudMove 8s ease-in-out infinite;
    }

@keyframes cloudMove {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(25px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* Araba */
.footer-animations .car {
    position: absolute;
    right: -220px;
    bottom: 300px;
    width: 150px;
    opacity: 1;
    animation: carMove 3.2s ease-in-out infinite;
}

@keyframes carMove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* FOOTER İÇERİK ÖNE ÇIKSIN */
.footer .container,
.footer-content,
.bg8 {
    position: relative;
    z-index: 2;
}

/* MOBİLDE KAPAT */
@media (max-width: 768px) {
    .footer-animations {
        display: none;
    }
}

@media (max-width: 1366px) {
    .footer-animations {
        display: none;
    }
}




/* media select */

@media (min-width: 1921px) {
    .bg3 {
        background: url(../../images/web/bg3_2k.png) no-repeat center top;
        background-size: cover;
        margin-top: -555px;
        padding-top: 605px;
    }


    .bg6 {
        background: url(../../images/web/bg6_2k.png) no-repeat center top;
        background-size: cover;
        margin-top: -695px;
        padding-top: 765px;
    }
}

@media (min-width: 2880px) {
    .bg3 {
        background: #f2f2f2;
        min-height: auto;
        margin-top: 0;
        padding-top: 80px;
    }

    .bg6 {
        background-position: center bottom;
        margin-top: 0px;
        padding-top: 80px;
    }
}

@media(min-width:3480px) {
    .banner::after {
        background: #004189 !important;
    }
}


@media (max-width: 1550px) {

    .mt-text.animated.bounceInLeft img {
        width: 75%;
    }
}

@media (max-width: 1350px) {

    .wc-menu ul li a {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {


    .wc-menu ul li a {
        font-size: 16px;
        line-height: 32px;
    }

    .wc-menu ul li {
        line-height: 50px;
    }

    .banner .mt-topic {
        font-size: 22px;
        right: 17px;
        top: 40px;
    }

    .mt-text.animated.bounceInLeft img {
        width: 70%;
    }
}

@media (max-width: 991px) {
    .navbar {
        background: transparent;
    }

    .container {
        width: 96%;
    }

    .bg1 {
        min-height: auto;
    }

    .banner .mt-text img {
        max-width: 80%;
    }

    .banner::before, .banner::after, banner .mt-topic {
        display: none;
    }

    .banner .swiper-container .swiper-slide a {
        height: 90vh;
    }

    .mt-text.animated.bounceInLeft img {
        width: 100%;
        background: rgba(0, 83, 154, .6);
        padding: 0 3rem 3rem;
    }

    .about-tt {
        padding-right: 0;
    }

    .about-csa {
        width: 60%;
    }

    .ab-rimg, .ab-limg {
        width: 40%;
    }


    .bg3 {
        min-height: auto;
    }

    .bg4 .flower {
        right: -30px;
    }

    h3.title-name {
        font-size: 2.4rem;
        margin-bottom: 25px;
    }

    .bg2 p, .bg5 p {
        font-size: 16px;
        line-height: 26px;
    }


    .l-guajian,
    .r-guajian {
        zoom: 80%;
    }

    .l-guajian {
        bottom: -460px;
    }

    .r-guajian {
        bottom: -450px;
    }

    .footer::before {
        background-image: url('../images/foot-qu-m.png');
        /* background-size: contain; */
    }

    .footer .f-1 {
        text-align: center;
        padding: 0 20%;
    }
}


@media (max-width: 768px) {
    .sayac-container {
        gap: 0.5em !important;
    }

    .bg1 {
        min-height: auto;
        top: 60px;
    }

    .banner .swiper-container .swiper-slide a {
        height: 40vh;
    }

    .banner .swiper-container .swiper-pagination-bullet {
        display: none;
    }

    .banner::before,
    .banner::after {
        background-size: contain;
    }

    .banner::before {
        background-image: url('../../images/web/bg1_top-m.png');
        font-size: 24px;
        text-shadow: 1px 1px 2px #000;
    }

    .banner .mt-text {
        text-align: center;
        bottom: 0;
    }

    .banner .mt-topic {
        color: var(--red-color);
    }

    .bg2 .container {
        display: flex;
        flex-wrap: wrap;
    }

    .bg2 .ab-limg {
        order: 2;
    }

    .bg3 {
        background-image: url('../../images/web/bg3-m.png');
        padding-top: 260px;
        padding-bottom: 20px;
        margin-top: -200px;
    }

    .pl-item img {
        width: 100%;
        margin-bottom: 30px;
    }

    .pl-item h4 {
        margin-bottom: 20px;
    }

    .pl-item .l4 {
        margin-bottom: 50px;
        -webkit-line-clamp: 10;
        display: block;
        font-size: 1.25rem;
    }

    .bg4 {
        padding-top: 70px;
    }

    .imp-data-list {
        margin-top: 80px;
    }

    .bg2 .about-csa {
        padding-bottom: 50px;
    }


    h3.title-name {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .lear-more a {
        padding: 10px;
        background-color: var(--foot-red-color);
        color: #fff;
        border-radius: 15px;
        display: block;
        text-align: center;
        font-size: 1.5rem;
    }

    .bg4 .flower {
        right: -25px;
    }

    .new-item .card-body .card-text {
        height: auto;
    }

    .bg5 {
        min-height: auto;
        padding-top: 80px;
    }

    .about-csa,
    .about-fdi,
    .ab-limg,
    .ab-rimg {
        width: 100%;
    }

    .about-tt {
        padding-right: 0;
    }

    .about-fdi {
        left: 0;
        padding: 0;
        margin-top: 80px;
        min-height: 405px;
    }

    .ab-rimg,
    .ab-limg {
        position: relative;
    }

    .btn-reg {
        padding: 0.45rem 1.85rem;
        box-shadow: 6px 6px 0 rgba(0, 0, 0, .25);
    }


    .bg6 {
        padding-top: 200px;
        margin-top: -145px;
        background-image: url('../../images/web/bg6-m.png');
        min-height: auto;
    }

    .l-guajian,
    .r-guajian {
        zoom: 40%;
    }

    .l-guajian {
        bottom: -160px;
    }

    .r-guajian {
        bottom: -170px;
    }

    /* .sche-con {
        height: 60vh;
        overflow-y: scroll;
    } */

    .bg8 {
        border-radius: 4rem 4rem 0 0;
    }

    .footer {
        padding-top: 0;
    }

    .f-join-left {
        margin-bottom: 15px;
        text-align: center !important;
    }

        .f-join-left h1 {
            font-size: 2.57rem;
        }

    .f-join-right .input-group {
        float: none;
        max-width: 100%;
    }

    .footer .f-1 {
        padding: 0;
    }


    .shape {
        visibility: visible;
    }
}

/*li {
    list-style: none;
}*/

.sekil {
    margin-top: -108px;
}

.aciklama-box {
    background-color: #e7e9e6;
    transform: translateY(-48px);
    padding: 20px;
}

.icerik {
    padding-top: 70px;
}

.icerik-box {
    background-color: #ffffff;
    margin-bottom: 60px;
    /*opacity: 0.8;*/
    /* background-image: repeating-radial-gradient( circle at 0 0, transparent 0, #ededed 10px ), repeating-linear-gradient( #ffffff55, #ffffff ); */
}



.flip-card {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2);
    border-radius: .1em;
    font-size: 50px;
}

    .top,
    .bottom,
    .flip-card .top-flip,
    .flip-card .bottom-flip {
        height: .75em;
        line-height: 1;
        padding: .25em;
        overflow: hidden;
        color: #ba2c40;
    }

    .top,
    .flip-card .top-flip {
        background-color: #f7f7f7;
        border-top-right-radius: .1em;
        border-top-left-radius: .1em;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .bottom,
    .flip-card .bottom-flip {
        background-color: white;
        display: flex;
        align-items: flex-end;
        border-bottom-right-radius: .1em;
        border-bottom-left-radius: .1em;
    }

    .flip-card .top-flip {
        position: absolute;
        width: 100%;
        animation: flip-top 250ms ease-in;
        transform-origin: bottom;
    }

@keyframes flip-top {
    100% {
        transform: rotateX(90deg);
    }
}

.flip-card .bottom-flip {
    position: absolute;
    bottom: 0;
    width: 100%;
    animation: flip-bottom 250ms ease-out 250ms;
    transform-origin: top;
    transform: rotateX(90deg);
}

@keyframes flip-bottom {
    100% {
        transform: rotateX(0deg);
    }
}

.sayac-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 60%;
    gap: 3.5em;
}

.container-segment {
    display: flex;
    flex-direction: column;
    gap: .1em;
    align-items: center;
}

.segment {
    display: flex;
    gap: .1em;
}

.segment-title {
    font-size: 1rem;
}

.container-sayac2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .container-sayac2 h3 {
        text-transform: uppercase;
        margin-bottom: 30px;
    }




.shape {
    visibility: hidden;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.footer::before {
    content: "";
    top: -130px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/foot-qu.png') no-repeat top center /cover;
}

.footer {
    margin-top: 50px;
    font-size: 1.125rem;
    position: relative;
    background-color: #002464;
    /*background: transparent url('../../images/web/foot-qu.png') no-repeat center top / cover;*/
}

.f-join-left p {
    font-size: 1.5rem;
}

.f-join-left h1 {
    font-size: 3.25rem;
    font-weight: bold;
}

.f-join-right .input-group {
    max-width: 416px;
    padding-left: 0.5rem;
    float: right;
}

.f-join-right input {
    font-size: 0.75rem;
    line-height: 50px;
    height: 50px;
    padding: 10px 20px;
}

.f-join-right .btn {
    z-index: 100;
    position: absolute;
    right: 0;
    line-height: 20px;
    height: 40px;
    margin: 5px;
    padding: .375rem 1.25rem;
}


.footer h3 {
    margin-bottom: 0.875rem;
    font-weight: bold;
    font-size: 1.5rem;
}

.footer,
.footer a {
    color: #fff;
}

    .footer ul li {
        line-height: 2.625rem;
    }

.f-2,
.f-3,
.f-4 {
    margin-top: 2.5rem;
}

.footer .f-1 {
    font-size: 1rem;
    color: #999;
    line-height: 1.75rem;
}


.footer-flex {
    display: flex;
    justify-content: space-between;
    color: white !important;
}

@media(max-width:987px) {
    .footer-flex {
        flex-direction: column;
    }
}

@media(max-width:992px) {
    .banner {
        height: auto;
        background-size: cover;
    }

    .davet-mektubu {
        padding: 0 !important;
    }

    .icerik-box {
        background-color: #ffffff;
        margin-bottom: 0 !important;
    }

    .icerik-box {
        background-color: #ffffff;
        margin-bottom: 0 !important;
    }

    .new-footer {
        padding-top: 50px;
        margin-top: 100px;
    }
}


.bantbaslik {
    background-color: #831b19;
    color: #FFFFFF;
    padding: 5px 10px;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 0.1rem;
    border-radius: 10px 7px;
}


@media (max-width:520px) {
    .sayac-container {
        flex-direction: column;
    }
}


.new-footer {
    background: #232323;
    color: #fff;
    position: relative;
    padding-top: 120px;
}

.wave-wrapper {
    position: absolute;
    width: 100%;
    top: -80px;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
}

.footer-box {
    text-align: left;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 140px;
}

.new-footer h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-line {
    width: 50px;
    height: 3px;
    background: #f3a5a1;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

    .footer-list li {
        margin-bottom: 12px;
        font-size: 16px;
        display: flex;
        align-items: center;
    }

        .footer-list li a {
            color: #fff;
        }

            .footer-list li a:hover {
                color: #f19433;
                transition: 0.6s;
                text-decoration: none;
            }

    .footer-list i {
        width: 35px;
        height: 35px;
        background: #f3a5a1;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        line-height: 35px;
        margin-right: 10px;
        font-size: 15px;
    }

        .footer-list i:hover {
            background: #f19433;
            transition: 0.6s;
        }

.footer-bottom {
    color: #bfbfbf;
    font-size: 14px;
}

@media(max-width: 992px) {
    .footer-box {
        text-align: center;
    }
}


.footer-shape {
    width: 100%;
    position: absolute;
    top: -72px; /* shape yüksekliğine göre ayarla */
    left: 0;
    z-index: 1;
}

    .footer-shape svg {
        width: 100%;
        height: auto;
        display: block;
    }


.box {
    width: 100%;
    height: 116px;
    display: grid;
    place-content: center;
    /* color: #8191f7; */
    font-weight: bold;
    font-size: 19px;
    /* text-shadow: 0 1px 0 #4e60d7; */
    --border-angle: 0turn;
    /* --main-bg: conic-gradient(from var(--border-angle), #f7f8f8, #f7f8f8 5%, #f7f8f8 60%, #f7f8f8 95%); */
    border: solid 5px transparent;
    border-radius: 3em;
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #a4acf9, #9b76ad 99%, transparent);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    animation: bg-spin 3s linear infinite;
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

.box:hover {
    animation-play-state: paused;
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

.box a {
    text-decoration: none !important;
    color: #8191f7;
}

/* GÜL KURUSU TEK RENK (istersen değiştir: #b56576) */
.btn1,
.btn2,
.btn3,
.btn4 {
    background-color: #b56576; /* gül kurusu */
    font-size: 20px; /* mevcut font-size'ın kalsın diye */
}

    /* Tüm buton yazıları */
    .btn1 a,
    .btn2 a,
    .btn3 a,
    .btn4 a {
        text-decoration: none !important;
        color: #ffffff !important; /* yazılar beyaz */
        display: block; /* butonun içini tamamen tıklanabilir yapar */
        transition: font-size 0.2s ease;
    }

    /* Hover: SADECE yazı büyüsün */
    .btn1:hover a,
    .btn2:hover a,
    .btn3:hover a,
    .btn4:hover a {
        font-size: 22px; /* 20 → 22 (istersen 24 yap) */
    }

    /* Hover'da arka plan aynı kalsın, sadece imleç el olsun */
    .btn1:hover,
    .btn2:hover,
    .btn3:hover,
    .btn4:hover {
        background-color: #f4a6a2;
        cursor: pointer;
    }




.page-title {
    font-size: 40px;
    font-weight: 800;
    color: #f3a5a1;
    margin-bottom: 35px;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
}

    .page-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 110%; /* normal uzunluğu */
        height: 4px;
        background-color: #f3a5a1;
        border-radius: 2px;
        transition: width .35s ease; /* yumuşak küçülme */
    }

    .page-title:hover::after {
        width: 35%; /* hover olduğunda kısalır */
    }

@media (max-width: 768px) {
    .page-title {
        font-size: 34px;
    }

        .page-title::after {
            width: 120%;
            height: 3px;
        }
}


/* === SLIDER GENEL === */
.custom-slider {
    max-width: 1220px;
    height: 445px;
    margin: 0 auto 30px auto;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

    /* Görsel düzgün kırpılsın */
    .custom-slider img {
        width: 100%;
        height: 445px;
        object-fit: cover;
        border-radius: 18px;
    }

    /* Oklar görünür ve kaliteli dursun */
    .custom-slider .carousel-control-prev-icon,
    .custom-slider .carousel-control-next-icon {
        background-color: rgba(0,0,0,0.5);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        background-size: 60%;
        outline: none;
    }

    /* Noktalar */
    .custom-slider .carousel-indicators li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.6);
    }

    .custom-slider .carousel-indicators .active {
        background-color: #f3a5a1;
    }

/* Mobil uyum */
@media (max-width: 768px) {
    .custom-slider {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }

        .custom-slider img {
            height: auto;
            border-radius: 12px;
        }
}


.loader {
    display: flex;
    padding-top: 120px;
    justify-content: center;
}

    .loader .dot {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        border: 2px solid #e8e8e8;
        background: #16b0c1;
        animation: jump 0.8s ease-in-out infinite alternate;
    }

@keyframes jump {
    100% {
        background: #661e92;
        transform: translateY(-3rem) scale(1.9);
    }
}

.loader .dot:nth-child(1) {
    animation-delay: 0.1s;
}

.loader .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader .dot:nth-child(3) {
    animation-delay: 0.3s;
}

.loader .dot:nth-child(4) {
    animation-delay: 0.4s;
}

.loader .dot:nth-child(5) {
    animation-delay: 0.5s;
}

.navbar-toggler {
    background: rgb(181 105 118); /* ikon için görünür panel */
    padding: 8px 10px;
    border-radius: 6px;
}

.navbar-dark .navbar-toggler-icon,
.navbar-dark .navbar-toggler-icon::before,
.navbar-dark .navbar-toggler-icon::after {
    background-color: #fff !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgb(181 103 118) !important;
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }

    .nav-menu .nav-link {
        color: #fff !important; /* görünür yazı */
        font-size: 20px !important; /* mobil için daha büyük */
        padding: 10px 0 !important;
        display: block;
    }
}




/* NAVBAR ÜSTTE KALSIN */
/*.navbar {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999 !important;*/ /* EN ÜSTE ÇIKAR */
/*}*/

/* PANEL */
.navbar-panel {
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 10px 25px;
    width: 85%;
    margin: 20px auto 0;
}

/* === TOGGLER TAM GÖRÜNÜR OLSUN === */
.navbar-dark .navbar-toggler {
    border: none !important;
    z-index: 100000 !important; /* SLIDER VE PANELİN BİLE ÜSTÜNDE */
    margin: auto;
}

.navbar-dark .navbar-toggler-icon {
    background-image: none !important;
    width: 28px;
    height: 3px;
    background-color: #fff !important;
    position: relative;
    display: inline-block;
    top: -3px;
}

    .navbar-dark .navbar-toggler-icon::before,
    .navbar-dark .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 28px;
        height: 3px;
        background-color: #fff !important;
    }

    .navbar-dark .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-dark .navbar-toggler-icon::after {
        top: 8px;
    }

/* MOBİL PANEL */
@media (max-width: 768px) {
    .navbar-panel {
        width: 95% !important;
        padding: 8px 15px !important;
        margin-top: 10px !important;
    }
}


.topbar {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    background: transparent; /* gerekirse */
}


@media (max-width: 768px) {
    .topbar {
        background: rgb(214 174 180);
        padding: 4px 10px;
        text-align: center;
    }

        .topbar .left,
        .topbar .right {
            display: block !important;
            margin-bottom: 5px;
        }

    .info-item {
        padding: 4px 10px !important;
        font-size: 13px !important;
    }

    .social-icons a {
        width: 28px !important;
        height: 28px !important;
        font-size: 13px !important;
    }
}


.navbar-collapse.collapse.show {
    position: relative;
    z-index: 99999;
}


/* ==========================================
   🔥 NAVBAR ULTIMATE FIX (ANA ÇAKIŞMA KESİCİ)
========================================== */
@media (max-width: 991px) {

    /* Masaüstü genişliklerini MOBILE taşımayı durdur */
    /* TOPBAR VE NAVBAR AYNI Z-INDEX SEVİYESİNE ALINSIN */
    .topbar,
    .navbar-overlay,
    .navbar,
    .navbar-toggler {
        position: relative !important;
        z-index: 999999 !important; /* Hepsi aynı seviyede */
    }

    /* Slider her zaman bunların ALTINDA kalsın */
    #heroSlider {
        position: relative;
        z-index: 1 !important;
    }


    .custom-nav,
    .navbar-overlay,
    .navbar-panel {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 10px !important;
        border-radius: 0 !important;
        left: 0 !important;
        transform: none !important;
        background: rgba(181,105,118,0.55) !important; /* aynı görünüm */
    }

    /* NAVBAR genel hizalama → LOGO ÜSTTE, TOGGLER ORTADA */
    .navbar-overlay {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px;
    }

    /* Logo */
    .logo-area img {
        width: 85px !important;
        height: auto !important;
    }

    /* Toggler → TAM ORTA */
    .navbar-toggler {
        position: relative !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
        background: #b56976 !important;
        padding: 9px 12px !important;
        border-radius: 6px !important;
        z-index: 999999 !important;
    }

    /* Menü açılınca düzgün dizilsin */
    .navbar-collapse {
        width: 100% !important;
        margin-top: 10px !important;
        text-align: center;
        background: rgba(181,105,118,0.85) !important;
        border-radius: 12px;
        padding: 15px 0 !important;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

        .nav-menu .nav-link {
            width: 100%;
            display: block;
            padding: 12px 0 !important;
            font-size: 20px !important;
            color: #fff !important;
        }
    /* ================================
   🌙 YUMUŞAK AÇILAN MOBİL MENÜ ANİMASYONU
================================ */

    .navbar-collapse {
        position: absolute !important;
        top: 100% !important; /* navbarın hemen altında */
        left: 0;
        width: 100%;
        background: rgba(181,103,118,0.95) !important;
        padding: 20px 0;
        z-index: 999999 !important;
    }

    /* Menü açıldığında body'yi aşağı itmesin */
    .navbar {
        position: relative;
        z-index: 999999 !important;
    }

    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1366px) {

    /* Topbar genel hizalama */
    .topbar-content {
        width: 95% !important;
        padding: 0 15px !important;
    }

    .info-item {
        font-size: 14px !important;
        padding: 5px 14px !important;
    }

    .social-icons a {
        width: 32px !important;
        height: 32px !important;
        font-size: 15px !important;
    }


    /* Logo küçültme */
    .navbar-brand img {
        width: 85px !important;
    }

    /* Menü linklerinin biraz daha sıkı görünmesi */
    .nav-menu .nav-link {
        font-size: 17px !important;
        padding: 6px 10px !important;
    }

    /* SLIDER kesilmesin */
    #heroSlider .carousel-item img,
    .custom-slider img {
        object-position: center top !important;
    }

    /* 1366 wide laptoplarda slider daha iyi oturur */
    .custom-slider {
        max-width: 1150px !important;
        height: 420px !important;
    }

        .custom-slider img {
            height: 420px !important;
        }
}
