﻿.row {
    --bs-gutter-x: 0rem;
}
    .header {
    border-bottom: 1px solid #E5E7EB;
}

        .header .first-menu {
            background-color: #ffffff1c;
            color: #1C1C1C;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 36px;
            transition: color 0.3s ease;
        }

        .header .first-menu .menu {
            padding: 0;
            margin: 0;
            list-style: none;
            display: flex;
            column-gap: 0.25rem;
            align-items: center;
            text-decoration: none;
            color: #7F8690;
        }

            .header .first-menu .menu li a {
                text-decoration: none;
                color: #7F8690;
                font-size: 12px;
                transition: color 0.3s ease;
            }

                .header .first-menu .menu li a:hover {
                    color: #1C1C1C;
                }

        .header .first-menu .social-media {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            column-gap: 5px;
            line-height: 0;
            align-items: center;
            font-size: 14px;
            margin-top: 0px;
        }

            .header .first-menu .social-media li {
                margin: 0;
            }

                .header .first-menu .social-media li a {
                    color: #1C1C1C;
                    position: relative;
                    right: -3px;
                    transition: color 0.3s ease;
                }

                    .header .first-menu .social-media li a:hover {
                        color: #1C1C1C;
                    }

    .header .flag {
        display: none;
    }

.facebook,
.whatsapp,
.linkedin,
.twitter,
.instagram,
.youtube,
.print {
    color: black;
}

    .facebook:hover.facebook,
    .whatsapp:hover.facebook,
    .linkedin:hover.facebook,
    .twitter:hover.facebook,
    .instagram:hover.facebook,
    .youtube:hover.facebook,
    .print:hover.facebook {
        color: blue;
    }

    .facebook:hover.whatsapp,
    .whatsapp:hover.whatsapp,
    .linkedin:hover.whatsapp,
    .twitter:hover.whatsapp,
    .instagram:hover.whatsapp,
    .youtube:hover.whatsapp,
    .print:hover.whatsapp {
        color: greenyellow;
    }

    .facebook:hover.linkedin,
    .whatsapp:hover.linkedin,
    .linkedin:hover.linkedin,
    .twitter:hover.linkedin,
    .instagram:hover.linkedin,
    .youtube:hover.linkedin,
    .print:hover.linkedin {
        color: #064687;
    }

    .facebook:hover.twitter,
    .whatsapp:hover.twitter,
    .linkedin:hover.twitter,
    .twitter:hover.twitter,
    .instagram:hover.twitter,
    .youtube:hover.twitter,
    .print:hover.twitter {
        color: #1DA1F2;
    }

    .facebook:hover.instagram,
    .whatsapp:hover.instagram,
    .linkedin:hover.instagram,
    .twitter:hover.instagram,
    .instagram:hover.instagram,
    .youtube:hover.instagram,
    .print:hover.instagram {
        color: #8d4269;
    }

    .facebook:hover.youtube,
    .whatsapp:hover.youtube,
    .linkedin:hover.youtube,
    .twitter:hover.youtube,
    .instagram:hover.youtube,
    .youtube:hover.youtube,
    .print:hover.youtube {
        color: #DC0D15;
    }

.youtube {
    font-size: 18px;
}

.search-icon {
    margin-right: 10px;
}
.header .flag {
    display: none;
}

@media (min-width:450px) {
    .header .flag {
        display: block;
    }
}
/*Logo yanı önemli linkler bölümü */
.projects {
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center; /* ikonlar satırda ortalansın */
    margin-top: 1px;
}

/* Baloncuk */
.project_item {
    position: relative;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    padding: 4px 4px;
    transition: border-color 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* İçindeki image */
.projects_image {
    transition: opacity 0.5s ease, border-color 0.5s ease;
    display: block;
}

/* Üstüne gelince image kaybolur */
.project_item:hover .projects_image {
    opacity: 0.5;
}

/* === ÖNEMLİ LINK METNİ ORTADA === */
.project_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: black;
    font-size: 8px; /* İstersen büyüt: örn 11px */
    width: max-content; /* sabit genişlik yerine otursun */
    opacity: 0;
    transition: opacity .5s ease;
    text-align: center;
    padding: 2px 4px;
}

/* Hover olunca yazı görünür */
.project_item:hover .project_text {
    opacity: 1;
}

/* Hover çerçeve rengi */
.project_item:hover {
    border-color: black;
}
/**************slider ayar*/
.carousel-inner img {
    width: 100%;
    height: 650px; /* istediğin yükseklik - değiştirilebilir */
    object-fit: contain; /* resim kırpılmaz, ortalanır */
    background-color: #fff; /* boşluklar siyah görünür - isteğe bağlı */
}
/*tuşlar*/
.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* kenarlardan içeri alır - istersen arttır/azalt */
}

.carousel-control-prev {
    left: 15%; /* içe çekme */
}

.carousel-control-next {
    right: 15%; /* içe çekme */
}
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        filter: brightness(1.3);
        transform: scale(1.1);
        transition: 0.3s;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}


/*tablet görünümü için*/
@media(max-width: 768px) {
    .carousel-inner img {
        height: 250px;
    }
}
/**************/
/* Prev & Next hover karartma + blur */
.swiper-button-prev-haber,
.swiper-button-next-haber {
    width: 55px;
    height: 55px;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    color: #fff;
    transition: .3s;
}

    .swiper-button-prev-haber:hover,
    .swiper-button-next-haber:hover {
        background: rgba(0,0,0,.70);
        transform: scale(1.15);
    }

/* Butonlar resme daha yakın */
.swiper-button-prev-haber {
    left: 50px;
}

.swiper-button-next-haber {
    right: 50px;
}

/* --------------------- 
      📱 Mobil uyum 
----------------------*/
@media(max-width:768px) {
    .news-image {
        height: 350px;
        max-width: 100%;
    }

    .swiper-button-prev-haber,
    .swiper-button-next-haber {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .swiper-button-prev-haber {
        left: 15px;
    }

    .swiper-button-next-haber {
        right: 15px;
    }

    .news-content {
        width: 85%;
        bottom: 18px;
        transform: translateX(-30px);
    }
}


/*slider yazı yeri*/
/* Slide ana kapsayıcı */
.news-swiper .swiper-slide {
    position: relative;
    padding: 10px;
}

/* Görsel alanı */
.news-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 650px; /* Sabit alan */
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    position: relative;
    margin: auto;
}

    /* Resim kırpmalı yerleşim */
    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: .5s;
    }

    /* Hover efekti */
    .news-image:hover img {
        transform: scale(1.05);
    }

/* Yazı alanı - RESMİN SOL ALTINA sabitleme */
.news-content {
    position: absolute;
    left: 15px;
    bottom: 20px;
    width: 50%;
    color: #fff;
    z-index: 3;
}

    /* Dumanlı arka plan (okunurluk için) */
    .news-content::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
        z-index: -1;
        border-radius: 10px;
    }

/* Kategori */
.news-category {
    font-size: 14px;
    font-weight: bold;
    background: #d10000;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    color: #fff;
}

/* Başlık */
.news-title span {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    display: block;
    margin-bottom: 6px;
}

/* Alt açıklama */
.news-sub-title p {
    font-size: 15px;
    color: #ddd;
    margin-top: 3px;
}
/* ------------------------
     SLIDER UPGRADE PACK 😎
-------------------------*/

/* Daha güçlü overlay */
.news-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.35), transparent);
    z-index: -1;
    border-radius: 10px;
    transition: .4s;
}

/* Hover olduğunda daha da kararır */
.news-slide:hover .news-content::before {
    background: linear-gradient(to top, rgba(0,0,0,.90), rgba(0,0,0,.40), transparent);
}

/* Yazı giriş animasyonu */
.news-content {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInTxt 1s forwards .3s;
}

/* Keyframe animasyonu */
@keyframes slideInTxt {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover’da resim kararma + netleşme */
.news-image img {
    transition: .6s;
    filter: brightness(.92);
}

.news-slide:hover .news-image img {
    filter: brightness(.75);
    transform: scale(1.05);
}

/* Prev & Next hover karartma + blur */
.swiper-button-prev-haber,
.swiper-button-next-haber {
    width: 55px;
    height: 55px;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    color: #fff;
    transition: .3s;
}

    .swiper-button-prev-haber:hover,
    .swiper-button-next-haber:hover {
        background: rgba(0,0,0,.70);
        transform: scale(1.15);
    }

/* Butonlar resme daha yakın */
.swiper-button-prev-haber {
    left: 10px;
}

.swiper-button-next-haber {
    right: 10px;
}

/* --------------------- 
      📱 Mobil uyum 
----------------------*/
@media(max-width:768px) {
    .news-image {
        height: 350px;
        max-width: 100%;
    }

    .swiper-button-prev-haber,
    .swiper-button-next-haber {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .swiper-button-prev-haber {
        left: 22px;
    }

    .swiper-button-next-haber {
        right: 22px;
    }

    .news-content {
        left: 20px;
        width: 100%;
        bottom: 18px;
        transform: translateX(-30px);
        font-size: medium;
    }
}
.nav-toggler {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.toggle-button {
    border: none;
    background: none;
    outline: none;
    font-size: 23px;
    border: 1px solid black;
    padding: -1px;
    border-radius: 6px;
    padding: 0 6px 0 6px;
    margin-left: 5px;
}
@media screen and (min-width: 1024px) {
    .nav-toggler {
        display: none;
    }
}
.slider-arka {
    background-image: url("../img/nursse.jpg");
    background-size: cover; /* resmi alanı kaplar */
    background-position: center; /* merkezler */
    background-repeat: no-repeat; /* tekrar etmez */
    padding: 0 0; /* slidera nefes alanı */
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

    .page-title h1 {
        font-size: 24px;
        font-weight: 700;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color:white;
            }
.breadcrumb {
    background-color: white;
}
/*--------------------------------------------------------------*/
/*modul başlığı*/
.title {
    position: relative;
}

    .title .main-title {
        display: flex;
        padding: 0 1rem;
        margin-left: -1rem;
        font-size: 25px;
        width: fit-content;
        background: white;
        margin-top: 6px;
        font-weight: 700;
    }

        .title .main-title span {
            margin-top: -11px;
        }

    .title .sub-title {
        font-size: 18px;
    }

    .title::after {
        content: "";
        border: 1px solid #2e2e30;
        width: 100%;
        height: 1px;
        position: absolute;
        display: block;
        top: 5px;
        z-index: -1;
    }

    /*kullanıcı panel bölümü */
/* Ana Menü Kapsayıcısını (navbar) Konumlandırın */
.ana-navigasyon {
    /* Navbar'ınızın position: relative; olduğundan emin olun,
       ki menü sağ üste göre konumlanabilsin. */
    position: relative;
    /* width, height, background gibi diğer stilleriniz buraya */
}

/* Kullanıcı Menü Kapsayıcısı */
.kullanici-menu-kapsayici {
    position: absolute; /* Ana navbara göre konumlandırma başlasın */
    top: 10px; /* Üstten 10 piksel boşluk */
    right: 10px; /* Sağdan 10 piksel boşluk */
    z-index: 100; /* Diğer elementlerin üstünde görünmesi için */
}

/* Kullanıcı Adı Butonu Stili */
.kullanici-adi-btn {
    background: #007bff;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Açılır Menü Stilleri */
.acilir-menu-liste {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    min-width: 150px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* BAŞLANGIÇTA GİZLEME */
    display: none; /* JavaScript ile görünür hale getireceğiz */
    position: absolute;
    right: 0; /* Menünün, butonun sağ kenarıyla hizalanmasını sağlar */
}

    .acilir-menu-liste li a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
    }

        .acilir-menu-liste li a:hover {
            background-color: #f1f1f1;
        }

.ayirici {
    border-top: 1px solid #eee;
    margin: 5px 0;
}

/* JavaScript ile açıldığında eklenecek sınıf */
.goster {
    display: block !important;
}
.logo h2 {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Ubuntu';
}
/*avatar bölümü başlangıç*/
.user-avatar {
    height: 2.5rem;
    width: 2.5rem;
    min-height: 2.5rem;
    min-width: 2.5rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.md-avatar {
    height: 2rem;
    width: 2rem;
    min-height: 2rem;
    min-width: 2rem;
}

&.lg-avatar {
    height: 2.5rem;
    width: 2.5rem;
    min-height: 2.5rem;
    min-width: 2.5rem;
    font-size: 10px;
}
.kullanici-panel {
    list-style: none;
    margin: 0;
    padding: 0;
    display: contents;
    column-gap: 5px;
    align-items: center;
    font-size: 14px;
    margin-top: -10px;
}
.biography {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var
    margin-bottom: 2rem;
    font-weight: 300;
}
    .biography h2 {
        font-size: 2.5rem;
        font-weight: 300;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    /*menu tıklayınca icon dönsün */
.nav-link i.bi {
    transition: transform .25s ease;
}

.nav-link[aria-expanded="true"] i.bi {
    transform: rotate(180deg);
}
.nav-link.active {
    background-color: #0d6efd;
    color: #fff !important;
    border-radius: .375rem;
}

    .nav-link.active i {
        color: #fff;
    }

    /*arkaplan*/
body {
    background: url("../img/bg-body.png");
    background-repeat: repeat-y;
    color: #1C1C1C;
    transition: background-color 0.5s ease;
    background-position: top center;
    min-height: 800px;
}
/**ebelik bölümü*/
/*--------------------------------------------------------------
# Students Life Section
--------------------------------------------------------------*/
.students-life .content-wrapper {
    padding: 80px 0;
}

@media (max-width: 992px) {
    .students-life .content-wrapper {
        padding: 40px 0;
    }
}

.students-life h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .students-life h2 {
        font-size: 2.25rem;
    }
}

.students-life .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 48px;
}

.students-life .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.students-life .stat-item {
    text-align: center;
}

    .students-life .stat-item .stat-number {
        font-size: 2.5rem;
        font-weight: 300;
        color: var(--accent-color);
        display: block;
        line-height: 1;
    }

    .students-life .stat-item .stat-label {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-top: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.students-life .image-showcase {
    position: relative;
    height: 100%;
    min-height: 500px;
}

    .students-life .image-showcase .main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .students-life .image-showcase .floating-image {
        position: absolute;
        bottom: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
    }

@media (max-width: 992px) {
    .students-life .image-showcase .floating-image {
        bottom: 20px;
        right: 20px;
        width: 150px;
        height: 150px;
    }
}

.students-life .image-showcase .floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .students-life .image-showcase {
        margin-top: 40px;
        min-height: 400px;
    }
}

.students-life .activities-section {
    margin-top: 120px;
}

@media (max-width: 992px) {
    .students-life .activities-section {
        margin-top: 80px;
    }
}

.students-life .activities-section h3 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .students-life .activities-section h3 {
        font-size: 1.875rem;
    }
}

.students-life .activities-section > .row:first-child {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .students-life .activities-section > .row:first-child {
        margin-bottom: 60px;
    }
}

.students-life .activities-section > .row:first-child p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.students-life .activity-card {
    height: 100%;
    transition: transform 0.3s ease;
}

    .students-life .activity-card:hover {
        transform: translateY(-8px);
    }

    .students-life .activity-card .activity-image {
        margin-bottom: 32px;
        border-radius: 8px;
        overflow: hidden;
    }

        .students-life .activity-card .activity-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

    .students-life .activity-card:hover .activity-image img {
        transform: scale(1.05);
    }

    .students-life .activity-card .activity-content h4 {
        font-size: 1.25rem;
        font-weight: 400;
        margin-bottom: 16px;
    }

    .students-life .activity-card .activity-content p {
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0;
    }

.students-life .testimonial-section {
    margin-top: 120px;
}

@media (max-width: 992px) {
    .students-life .testimonial-section {
        margin-top: 80px;
    }
}

.students-life .testimonial-section .testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .students-life .testimonial-section .testimonial-image img {
        height: 300px;
        margin-bottom: 40px;
    }
}

.students-life .testimonial-section .testimonial-content {
    padding-left: 60px;
}

@media (max-width: 992px) {
    .students-life .testimonial-section .testimonial-content {
        padding-left: 0;
    }
}

.students-life .testimonial-section .testimonial-content blockquote {
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--heading-color);
    position: relative;
}

    .students-life .testimonial-section .testimonial-content blockquote::before {
        content: '"';
        font-size: 4rem;
        color: var(--accent-color);
        position: absolute;
        top: -20px;
        left: -30px;
        font-family: serif;
    }

@media (max-width: 768px) {
    .students-life .testimonial-section .testimonial-content blockquote {
        font-size: 1.125rem;
    }

        .students-life .testimonial-section .testimonial-content blockquote::before {
            font-size: 3rem;
            top: -15px;
            left: -20px;
        }
}

.students-life .testimonial-section .testimonial-content .testimonial-author h5 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.students-life .testimonial-section .testimonial-content .testimonial-author span {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.875rem;
}
.leadership-card {
    border-radius: 16px;
}

.philosophy-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #212529;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .doc-item i {
        font-size: 1.4rem;
        color: #0d6efd;
    }

    .doc-item:hover {
        background: #0d6efd;
        color: #fff;
        transform: translateY(-2px);
    }

        .doc-item:hover i {
            color: #fff;
        }

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
    .philosophy-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil */
@media (max-width: 576px) {
    .philosophy-points {
        grid-template-columns: 1fr;
    }
}
/* GRID */
.philosophy-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.doc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

/* ICON */
.doc-icon {
    font-size: 2rem;
}

/* CONTENT */
.doc-content {
    display: flex;
    flex-direction: column;
}

.doc-title {
    font-weight: 600;
    font-size: 1.05rem;
}

/* BADGE */
.doc-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-top: 4px;
}

/* PDF */
.doc-item.pdf {
    background: #fff0f0;
    color: #c0392b;
}

    .doc-item.pdf .doc-badge {
        background: #c0392b;
        color: #fff;
    }

/* DOCX */
.doc-item.docx {
    background: #eef4ff;
    color: #1e5bd7;
}

    .doc-item.docx .doc-badge {
        background: #1e5bd7;
        color: #fff;
    }

/* HOVER */
.doc-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .philosophy-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .philosophy-points {
        grid-template-columns: 1fr;
    }
}
/*footer*/




.footer-title {
    position: relative;
    padding-bottom: 10px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #0d6efd; /* Bootstrap Primary */
    }



.footer-main {
    background: #0f172a;
    color: #cbd5e1;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 0.95rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li,
    .footer-contact li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #38bdf8;
        }

    .footer-contact i {
        margin-right: 6px;
    }

.footer-social a {
    font-size: 1.2rem;
    margin-right: 12px;
    color: #cbd5e1;
}

    .footer-social a:hover {
        color: #38bdf8;
    }

.footer-bottom {
    background: #020617;
    color: #94a3b8;
}

    .footer-bottom a {
        color: #94a3b8;
        text-decoration: none;
    }

    /*footerbitiş*/
.full-width-breakout {
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.form-check input {
    margin-right: 6px;
}

/*duyuru başlangıç*/
.announce .announcement .butonlar {
    display: flex;
    position: relative;
}

.announce .announcement .arrow {
    font-size: 27px;
    top: -41px;
    position: relative;
    float: right;
}

.announce .announcement .gri-button {
    float: right;
    /* right: 50px; */
    position: relative;
    margin-left: 80px;
}

.announce .titles-imp {
    top: 10px;
    margin-bottom: -36px;
    position: relative;
}

.announce .duyurular {
    display: flex;
}

.announce .date::before {
    background-image: url("../img/dot.png");
}

.announce .part {
    display: flex;
    width: 100%;
    min-height: 116px;
    border: 1px solid #E5E7EB;
    margin-top: 20px;
    transition: border-color;
    height: 90%;
    position: relative;
    transition: border-color 1.5s ease;
}

    .announce .part:hover {
        border-color: #1C1C1C;
    }

        .announce .part:hover .okvenokta .arrows {
            background-color: #1C1C1C;
            color: #ffffff;
        }

        .announce .part:hover .arrows:before {
            background-color: #1C1C1C;
            color: #ffffff;
            transition: background-color 1.5s ease, color 1.5s ease;
        }

.announce .part-date {
    border: 1px solid #F8F8F8;
    background-color: #F8F8F8;
    width: 60px;
    height: 65px;
    text-align: center;
    margin-left: 20px;
    font-size: 13px;
    padding-top: 12px;
    letter-spacing: -1px;
}

    .announce .part-date::before {
        content: "";
        position: absolute;
        left: 74%;
        width: 35px;
        height: 30px;
        background-image: url("../img/dot.png");
        background-size: cover;
        background-position: center;
        z-index: -1;
        top: 67px;
    }

.announce .part-explanation {
    flex: 1;
    display: flex;
    align-items: center;
    color: #7F8690;
    padding-left: 0.8rem;
    padding-right: 0.5rem;
    font-size: 13px;
    line-height: 22px;
    transition: color 2.3s;
}

.announce .part-explanation2 {
    flex: 1;
    margin-top: 20px;
    align-items: center;
    color: #7F8690;
    padding-left: 1.6rem;
    padding-right: 1.5rem;
    font-size: 14px;
    line-height: 22px;
    transition: color 2.3s;
}

.announce .part .bold {
    font-weight: bold;
    margin-top: -77x;
    margin-left: 18px;
    letter-spacing: -1px;
}

.announce .part .date {
    display: block;
    text-align: center;
    position: relative;
}

.announce .part .part-dot {
    margin-top: 50px;
    margin-left: -27px;
    position: static;
}

.announce .part .small-box {
    display: flex;
    gap: 0.25rem;
    position: relative;
    top: 0.8rem;
    right: 1rem;
}

    .announce .part .small-box .ekstra {
        background-color: #F8F8F8;
        color: #1C1C1C;
        font-size: 11px;
        height: 20px;
        width: 51px;
        font-weight: 600;
        padding-top: 2px;
        text-align: center;
    }

    .announce .part .small-box .yeni {
        background-color: #a70000;
        color: #ffffff;
        font-size: 11px;
        height: 20px;
        width: 45px;
        padding-left: 10px;
        padding-top: 3px;
    }

    .announce .part .small-box .ekstra-tek {
        background-color: #F8F8F8;
        color: #1C1C1C;
        font-size: 12px;
        right: 10px;
        padding: 5px;
        /* margin-right: -41px; */
        margin-top: 15px;
        height: 20px;
        float: right;
        margin-left: 60px;
    }

.announce .part .okvenokta::before {
    content: url("../img/dot.png");
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    background-color: transparent;
}

.announce .part .okvenokta {
    position: absolute;
    float: right;
    right: 1rem;
    bottom: 0.8rem;
}

    .announce .part .okvenokta .arrows {
        position: relative;
        color: black;
        transition: background-color 1.5s ease, color 1.5s ease;
    }

.announce a {
    color: black;
    text-decoration: none;
}

    .announce a:hover {
        color: black;
    }

.announce .arrows::before {
    width: 27px;
    height: 24px;
    background-color: #F8F8F8;
    margin-left: -20px;
    margin-top: 6px;
    position: absolute;
    font-size: 20px;
    padding: 4px;
}

.announce .part:hover .part-explanation {
    color: #1C1C1C;
}

.announce .part:hover .part-explanation2 {
    color: #1C1C1C;
}

.announce .banner-image {
    margin-top: 50px;
    position: relative;
    height: auto;
}

.announce .announcements-main-titles::after {
    content: "";
    position: absolute;
    background-color: #EDF8CC;
    width: 75%;
    height: 50%;
    top: 48%;
    left: 35%;
    transform: translateX(-50%);
    z-index: -1;
}

.announce .hiza {
    margin-left: -15px;
}

.announce .tm1 {
    margin-right: 0;
}

.announce .announcements-main-titles::before {
    content: "";
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 24%;
    left: 65%;
    transform: translateX(-50%);
    z-index: -1;
    border-radius: 18px;
}

.announce .announcements-main {
    margin-bottom: -19px;
}

.announce .announcements-main-titles {
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    position: relative;
    font-size: 18px;
    letter-spacing: -1px;
}

.announce .announcements-explain {
    display: flex;
    margin-bottom: 50px;
    margin-top: 50px;
}

    .announce .announcements-explain .explanation {
        margin-top: -13px;
    }

.announce .explain-paragraph:hover .basın-arrows {
    background-color: #1C1C1C;
    color: white;
}

.announce .explain-paragraph {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.7px;
    width: 100%;
    height: 116px;
    border: 1px solid #E5E7EB;
    margin-top: 0px;
    transition: border-color;
    color: gray;
    padding: 30px;
    text-align: justify;
    font-size: 14px;
    margin-right: 20px;
}

    .announce .explain-paragraph:hover {
        border-color: #1C1C1C;
    }

.announce .explain-paragraph-tarih {
    position: relative;
    padding-left: 5px;
    padding-top: 6px;
    font-weight: 500;
}

.announce .saat {
    width: 173px;
    height: 35px;
    background-color: #F8F8F8;
    color: #1C1C1C;
    display: flex;
    position: absolute;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.6px;
    bottom: 0;
    left: 0;
}

.announce .watch {
    margin-top: 10px;
    padding-left: 10px;
    margin-left: 10px;
}

.announce .okvenokta-basin {
    margin-top: 7px;
    float: right;
    right: 10px;
}

.announce .basin-arrows {
    font-size: 27px;
    margin-left: -39px;
    margin-top: 10px;
    position: relative;
    background-color: #F8F8F8;
    position: relative;
    width: 29px;
    height: 22px;
}

    .announce .basin-arrows:hover {
        background-color: #1C1C1C;
        color: white;
    }

.announce .rectangle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    margin-top: 23px;
}

.announce .rectangle img {
    filter: grayscale(100%); /* Resmi siyah-beyaz yapar */
    transition: filter 0.5s ease; /* Geçiş süresi ve hızı */
}

    .announce .rectangle img:hover {
        filter: grayscale(0%); /* Resmi renkli yapar */
    }

.announce .rectangle {
    display: flex;
    justify-content: center;
    height: 70px;
    background: white;
    border: 1px solid gainsboro;
    margin-top: 3px;
    position: relative;
}

    .announce .rectangle img {
        object-fit: contain;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

.announce .slider-container {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.announce .slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    background: #1C1C1C;
    border-radius: 5px;
    outline: none;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

    .announce .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px;
        height: 15px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }

.announce .slide-background {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #1C1C1C;
}

.announce .prev, .announce .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    color: #1C1C1C;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.announce .prev {
    left: 216px;
}

.announce .next {
    right: 216px;
}

.announce .short {
    margin-left: 82px;
}

.announce .app {
    display: grid;
}

.announce .line {
    height: 1px;
    background-color: #E5E7EB;
    width: 377px;
    margin-top: 34px;
    position: relative;
    margin-left: -22px;
}
.times {
    font-size: 16px;
    top: -16px;
    position: relative;
    left: 10%;
}

.titles::after {
    content: "";
    border-bottom: 1px solid #E5E7EB;
    width: 78%;
    display: inline-block;
    height: 1px;
    position: relative;
    margin-top: -31px;
    z-index: -2;
    margin-left: 20px;
}

.titles-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 14px;
    position: relative;
}

    .titles-wrap > * {
        flex: 1;
    }

    .titles-wrap .title-container {
        text-wrap: nowrap;
        order: 1;
    }

    .titles-wrap .link-container {
        order: 3;
    }

.titles-second::after {
    order: 2;
    content: "";
    border-bottom: 1px solid #ccc;
    width: 95%;
    display: inline-block;
    height: 1px;
    position: relative;
    top: 50%;
    z-index: -2;
    left: 17px;
}

@media screen and (min-width: 960px) {
    .announce .announcements-main-titles {
        font-size: 24px;
    }

    .announce .part-date {
        width: 80px;
        height: 90px;
        text-align: center;
        margin-left: 12px;
        font-size: 14px;
        padding-top: 12px;
        letter-spacing: -1px;
    }

    .announce .part-explanation {
        padding-left: 1.25rem;
        font-size: 14px;
        padding-top: 0.7rem;
    }

    .announce .part .bold {
        margin-top: -77px;
        margin-left: 18px;
        font-size: 24px;
    }

    .announce .part .part-dot {
        margin-top: 68px;
        margin-left: -27px;
    }


    .announce .announcements-main-titles::before {
        content: "";
        position: absolute;
        background-color: #ffffff;
        width: 100%;
        height: 100%;
        top: 24%;
        left: 65%;
        transform: translateX(-50%);
        z-index: -1;
        border-radius: 18px;
    }

    .announce .announcements-main {
        margin-bottom: -19px;
    }

    .announce .announcements-main-titles {
        font-weight: bold;
        margin-top: 10px;
        display: inline-block;
        position: relative;
        font-size: 18px;
        letter-spacing: -1px;
    }

    .announcements-main-titles {
        font-weight: bold;
        margin-top: 0px;
        display: inline-block;
        position: relative;
        font-size: 20px;
        letter-spacing: 1px;
        text-transform: capitalize;
    }

    .link-container {
        display: inline-flex; /* İçeriği esnek tutar */
        align-items: center; /* Dikeyde tam ortalar */
        justify-content: center; /* Yatayda tam ortalar */

        background-color: #ffffff;
        color: #1C1C1C;
        text-decoration: none;
        cursor: pointer;
        font-weight: bold;
        font-size: 12px; /* Okunabilirlik için hafif artırıldı */

        border: 1px solid #E5E7EB;
        border-radius: 50px; /* Tam yuvarlak (stadyum tipi) görünüm */
        /* Genişliği sabit tutmak yerine içeriğe göre ayarla */
        min-width: 120px;
        padding: 8px 16px; /* İçeriden ferahlık sağlar */
        height: 40px;
        transition: all 0.3s ease;
        white-space: nowrap; /* Yazının asla alt satıra geçmesini engeller */
        order: 3;
    }

        .link-container a {
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
            gap: 8px; /* Metin ile ok işareti arasındaki boşluk */
        }

        /* Üzerine gelince hafif bir gölge veya renk değişimi */
        .link-container:hover {
            background-color: #f9fafb;
            border-color: #d1d5db;
        }
}
    /*duyuru bitiş*/
.SBMenu li {
    display: inline;
}

.modules-Genel-breadcrumbs li a {
    color: #E5E7EB;
    font-weight: 400;
    font-family: 'ubuntu';
    text-decoration: none;
}

    .modules-Genel-breadcrumbs li a:hover {
        border-color: transparent transparent transparent #409ad5;
    }
    .separator {
        margin: 0 8px;
        color: #ccc;
    }

/*--------------------------------------------------------------
# Students Life Block Section
--------------------------------------------------------------*/
.students-life-block .content-wrapper .section-tag {
    display: inline-block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
}

    .students-life-block .content-wrapper .section-tag::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 40px;
        height: 1px;
        background: var(--accent-color);
    }

.students-life-block .content-wrapper h2 {
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .students-life-block .content-wrapper h2 {
        font-size: 2.25rem;
    }
}

.students-life-block .content-wrapper .description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 3rem;
}

.students-life-block .stats-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

    .students-life-block .stats-row .stat-item {
        display: flex;
        flex-direction: column;
    }

        .students-life-block .stats-row .stat-item .stat-number {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--accent-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .students-life-block .stats-row .stat-item .stat-label {
            font-size: 0.95rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-weight: 300;
        }

@media (max-width: 576px) {
    .students-life-block .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.students-life-block .action-links .primary-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

    .students-life-block .action-links .primary-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 1px;
        background: var(--accent-color);
        transition: width 0.3s ease;
    }

    .students-life-block .action-links .primary-link:hover {
        color: var(--accent-color);
    }

        .students-life-block .action-links .primary-link:hover::after {
            width: 100%;
        }

.students-life-block .visual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    height: 100%;
}

    .students-life-block .visual-grid .main-visual {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
    }

        .students-life-block .visual-grid .main-visual img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .students-life-block .visual-grid .main-visual:hover img {
            transform: scale(1.05);
        }

        .students-life-block .visual-grid .main-visual .overlay-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: var(--surface-color);
            padding: 1rem 1.5rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

            .students-life-block .visual-grid .main-visual .overlay-badge i {
                color: var(--accent-color);
                font-size: 1.25rem;
            }

            .students-life-block .visual-grid .main-visual .overlay-badge span {
                font-size: 0.9rem;
                font-weight: 500;
                color: var(--heading-color);
            }

    .students-life-block .visual-grid .secondary-visuals {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

        .students-life-block .visual-grid .secondary-visuals .small-visual {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }

            .students-life-block .visual-grid .secondary-visuals .small-visual img {
                width: 100%;
                height: 180px;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .students-life-block .visual-grid .secondary-visuals .small-visual:hover img {
                transform: scale(1.1);
            }

            .students-life-block .visual-grid .secondary-visuals .small-visual:hover .visual-caption {
                opacity: 1;
                transform: translateY(0);
            }

            .students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                padding: 2rem 1.5rem 1.5rem;
                opacity: 0;
                transform: translateY(10px);
                transition: all 0.3s ease;
            }

                .students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption span {
                    color: var(--contrast-color);
                    font-size: 0.9rem;
                    font-weight: 500;
                }

.students-life-block .highlights-section {
    margin-top: 6rem;
}

    .students-life-block .highlights-section .highlight-card {
        background: var(--surface-color);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .students-life-block .highlights-section .highlight-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .students-life-block .highlights-section .highlight-card .highlight-image {
            overflow: hidden;
        }

            .students-life-block .highlights-section .highlight-card .highlight-image img {
                width: 100%;
                height: 220px;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

        .students-life-block .highlights-section .highlight-card:hover .highlight-image img {
            transform: scale(1.1);
        }

        .students-life-block .highlights-section .highlight-card .highlight-content {
            padding: 2rem;
        }

            .students-life-block .highlights-section .highlight-card .highlight-content h5 {
                font-size: 1.25rem;
                font-weight: 500;
                margin-bottom: 1rem;
                color: var(--heading-color);
            }

            .students-life-block .highlights-section .highlight-card .highlight-content p {
                font-size: 0.95rem;
                line-height: 1.6;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                margin: 0;
            }

@media (max-width: 991.98px) {
    .students-life-block .content-wrapper {
        margin-bottom: 2rem;
    }

    .students-life-block .visual-grid .main-visual img {
        height: 300px;
    }

    .students-life-block .visual-grid .secondary-visuals .small-visual img {
        height: 140px;
    }

    .students-life-block .highlights-section {
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    .students-life-block .stats-row {
        justify-content: center;
        text-align: center;
    }

    .students-life-block .visual-grid .main-visual .overlay-badge {
        top: 20px;
        right: 20px;
        padding: 0.75rem 1.25rem;
    }

    .students-life-block .visual-grid .secondary-visuals {
        grid-template-columns: 1fr;
    }

        .students-life-block .visual-grid .secondary-visuals .small-visual img {
            height: 200px;
        }

    .students-life-block .highlights-section {
        margin-top: 3rem;
    }

        .students-life-block .highlights-section .highlight-card .highlight-content {
            padding: 1.5rem;
        }
}

@media (max-width: 576px) {
    .students-life-block .visual-grid .main-visual .overlay-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-flex;
    }
}
/*--------------------------------------------------------------
# Recent News Section
--------------------------------------------------------------*/
/* Ana Kart Yapısı */
.recent-news .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff; /* Arka plan rengi şart */
    border-radius: 12px; /* Köşeleri yuvarladık */
    border: 1px solid #e5e5e5; /* Hafif bir çerçeve */
    padding-bottom: 20px; /* Alt kısımdan boşluk */
}

    /* Kartın Üzerine Gelince (Hover) */
    .recent-news .post-box:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Hafif gölge derinlik katar */
        border-color: var(--accent-color); /* Çerçeve rengi değişsin */
    }

    /* Resim Alanı */
    .recent-news .post-box .post-img {
        overflow: hidden;
        position: relative;
        height: 200px; /* Sabit yükseklik kartları eşitler */
    }

        .recent-news .post-box .post-img img {
            transition: 0.5s;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Resmin boyutunu bozmadan alanı kaplar */
        }

    /* Metin İçerik Alanı (Padding buraya eklendi) */
    .recent-news .post-box .meta,
    .recent-news .post-box .post-title,
    .recent-news .post-box p,
    .recent-news .post-box .readmore {
        padding-left: 20px; /* Yazıları soldan ayırdık */
        padding-right: 20px; /* Yazıları sağdan ayırdık */
    }

    /* Meta Bilgisi (Tarih vb.) */
    .recent-news .post-box .meta {
        margin-top: 20px;
    }

        .recent-news .post-box .meta .post-date {
            font-size: 14px;
            font-weight: 400;
            color: var(--accent-color);
        }

    /* Başlık */
    .recent-news .post-box .post-title {
        color: var(--heading-color);
        font-size: 19px;
        font-weight: 700;
        margin: 15px 0 0 0;
        transition: 0.3s;
        line-height: 1.3;
    }

    /* Açıklama Metni */
    .recent-news .post-box p {
        margin: 12px 0 0 0;
        font-size: 15px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        flex-grow: 1; /* Metin kısa olsa bile buton en alta sabitlenir */
    }

    /* Devamını Oku Linki */
    .recent-news .post-box .readmore {
        display: flex;
        align-items: center;
        font-weight: 600;
        line-height: 1;
        transition: 0.3s;
        margin-top: 20px;
        color: var(--accent-color);
        text-decoration: none;
    }

        .recent-news .post-box .readmore i {
            line-height: 0;
            margin-left: 6px;
            font-size: 18px;
        }

    /* Hover Efektleri */
    .recent-news .post-box:hover .post-title {
        color: var(--accent-color);
    }

    .recent-news .post-box:hover .post-img img {
        transform: scale(1.1);
    }
/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .section-title {
    margin-bottom: 3rem;
}

    .events .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .events .section-title p {
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

.events .event-filters .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

    .events .event-filters .form-select:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
    }

.events .event-card {
    display: flex;
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .events .event-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .events .event-card .event-date {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        text-align: center;
        min-width: 100px;
    }

        .events .event-card .event-date .month {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .events .event-card .event-date .day {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
            margin: 0.5rem 0;
        }

        .events .event-card .event-date .year {
            font-size: 0.9rem;
        }

    .events .event-card .event-content {
        padding: 1.5rem;
        flex: 1;
    }

        .events .event-card .event-content h3 {
            font-size: 1.3rem;
            margin: 0.5rem 0;
            font-weight: 600;
        }

        .events .event-card .event-content p {
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

    .events .event-card .event-tag {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

        .events .event-card .event-tag.academic {
            background-color: #e3f2fd;
            color: #0d47a1;
        }

        .events .event-card .event-tag.sports {
            background-color: #e8f5e9;
            color: #2e7d32;
        }

        .events .event-card .event-tag.arts {
            background-color: #ffebee;
            color: #c62828;
        }

        .events .event-card .event-tag.community {
            background-color: #fff3e0;
            color: #e65100;
        }

    .events .event-card .event-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

        .events .event-card .event-meta .meta-item {
            display: flex;
            align-items: center;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 0.9rem;
        }

            .events .event-card .event-meta .meta-item i {
                margin-right: 0.5rem;
                font-size: 1rem;
                color: color-mix(in srgb, var(--accent-color), transparent 25%);
            }

    .events .event-card .event-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

        .events .event-card .event-actions .btn-learn-more {
            padding: 0.5rem 1.25rem;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }

            .events .event-card .event-actions .btn-learn-more:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            }

        .events .event-card .event-actions .btn-calendar {
            padding: 0.5rem 1rem;
            background-color: transparent;
            color: var(--accent-color);
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
        }

            .events .event-card .event-actions .btn-calendar i {
                margin-right: 0.3rem;
            }

            .events .event-card .event-actions .btn-calendar:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

.events .btn-view-all {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

    .events .btn-view-all:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
        transform: translateY(-3px);
    }

@media (max-width: 768px) {
    .events .event-card {
        flex-direction: column;
    }

        .events .event-card .event-date {
            flex-direction: row;
            padding: 1rem;
            gap: 0.5rem;
            min-width: auto;
        }

            .events .event-card .event-date .month,
            .events .event-card .event-date .day,
            .events .event-card .event-date .year {
                margin: 0;
            }

            .events .event-card .event-date .day {
                font-size: 1.5rem;
                margin: 0 0.3rem;
            }

    .events .event-actions {
        flex-direction: column;
    }
.lead {
    text-align: justify;
    text-indent: 50px;
}