/* ===================================
   BÜYEM İndex Sayfası - Ana İçerik CSS
   Tüm sayfa düzeni ve component stilleri
   =================================== */

        /* Global Styles */
        html, body {
            margin: 0;
            padding: 0;
        }

        /* ===================================
           SLIDER LOADER
           =================================== */
        .slider-loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e3a6e 0%, #2a5298 100%);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .slider-loader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .slider-loader-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loader-shimmer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            background-size: 200% 100%;
            animation: shimmerSlide 1.5s infinite;
        }

        @keyframes shimmerSlide {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .loader-spinner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            z-index: 1;
        }

        .spinner-ring {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spinnerRotate 1s linear infinite;
        }

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

        .loader-spinner span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* Slider container needs relative position */
        .slide.hero-full {
            position: relative;
        }

        /* Header Logo */
        .header-logo {
            display: inline-block;
            padding: 10px 0;
        }

        .header-main-logo {
            height: 100px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
        }

        .logo-h1 {
            display: flex;
            align-items: center;
            height: 100%;
        }

        /* Fixed Header Logo */
        .fixed-header-logo {
            display: flex;
            align-items: center;
        }

        .fixed-header-logo-img {
            height: 70px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            display: none;
        }

        @media (max-width: 768px) {
            .header-main-logo {
                height: 70px;
            }

            .fixed-header-logo-img {
                height: 55px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .header-main-logo {
                height: 85px;
            }

            .fixed-header-logo-img {
                height: 65px;
            }
        }

        /* Header Özel Butonlar */
        .header-nav-top {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .header-nav-top-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-right: 32px;
        }

        .header-nav-top-buttons .search-open-button {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            display: none;
        }

        .header-nav-top-buttons .search-open-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .header-nav-top-buttons .search-open-button i {
            font-size: 18px;
            color: #ffffff;
        }

        .digital-button,
        .blog-button,
        .podcast-button,
        .egitim-talep-button {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 42px;
            padding: 0 18px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            white-space: nowrap;
        }

        .digital-button:hover,
        .blog-button:hover,
        .podcast-button:hover,
        .egitim-talep-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .digital-button i,
        .blog-button i,
        .podcast-button i,
        .egitim-talep-button i {
            font-size: 16px;
            color: #ffffff;
        }
        
        .digital-button span,
        .blog-button span,
        .podcast-button span,
        .egitim-talep-button span {
            font-size: 12px;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.3px;
        }

        .sss-button {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 42px;
            padding: 0 18px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            white-space: nowrap;
        }

        .sss-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .sss-button i {
            font-size: 16px;
            color: #ffffff;
        }
        
        .sss-button span {
            font-size: 12px;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.3px;
        }

        .header-nav-top-glass-buttons {
            display: flex;
            align-items: center;
        }

        .button-group {
            display: flex;
            align-items: center;
            gap: 12px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .button-group li .cart-button,
        .button-group li .egitim-talep-button,
        .button-group li .sss-button {
            margin: 0;
        }

        /* Alt menüdeki butonlar */
        .header-nav-bottom ul {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .header-nav-bottom ul li {
            display: flex;
            align-items: center;
        }

        .header-nav-bottom .cart-button,
        .header-nav-bottom .login-button {
            margin-left: 15px;
        }

        .cart-button {
            position: relative;
            background: linear-gradient(135deg, #1d458b, #2a5298);
            border: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(29, 69, 139, 0.3);
            transition: all 0.3s ease;
        }

        /* Touch Swipe Support - Slider Tracks */
        #announcementsTrack,
        #eventsTrack,
        #blogTrack,
        #referencesTrack {
            touch-action: pan-y pinch-zoom;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .cart-button:hover {
            background: linear-gradient(135deg, #1e4c97, #184fe9);
            box-shadow: 0 4px 12px rgba(29, 69, 139, 0.5);
            transform: translateY(-2px);
        }

        .cart-button i {
            font-size: 18px!important;
            color: #fff;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: linear-gradient(135deg, #003a7b 0%, #003a7b 100%);
            color: white;
            font-size: 10px;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 2px 6px rgba(220, 53, 69, 0.4);
        }

        .login-button {
            background: linear-gradient(135deg, #1d458b 0%, #163A73 100%);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 22px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(29, 69, 139, 0.3);
            white-space: nowrap;
        }

        .login-button:hover {
            box-shadow: 0 4px 15px rgba(29, 69, 139, 0.5);
            transform: translateY(-2px);
        }

        .login-button i {
            font-size: 14px;
        }

        /* Alt menüdeki giriş yap butonu daha belirgin */
        .header-nav-bottom .login-button-prominent {
            padding: 12px 26px;
            font-size: 15px;
            font-weight: 700;
            border-radius: 25px;
            box-shadow: 0 3px 12px rgba(29, 69, 139, 0.4);
            background:linear-gradient(135deg, #1d458b, #2a5298);
        }

        .header-nav-bottom .login-button-prominent:hover {
            box-shadow: 0 5px 20px rgba(29, 69, 139, 0.6);
            transform: translateY(-3px);
            background:linear-gradient(135deg, #1e4c97, #184fe9);
        }

        .header-nav-bottom .login-button-prominent i {
            font-size: 16px;
        }

        /* Slider Yükseklik Ayarı */
        .slide.hero-full {
            min-height: 750px !important;
            max-height: 750px !important;
        }

        .slide.hero-full .main-slider .item {
            height: 750px !important;
        }

        .slide.hero-full .main-slider .item img,
        .slide.hero-full .main-slider .item video {
            height: 750px !important;
            object-fit: cover;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-nav-top {
                flex-wrap: wrap;
            }

            .header-nav-top-buttons {
                gap: 8px;
                margin-right: 10px;
            }

            .header-nav-top-buttons .search-open-button {
                width: 38px;
                height: 38px;
                background: rgba(255, 255, 255, 0.15);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .header-nav-top-buttons .search-open-button i {
                font-size: 16px;
                color: #ffffff;
            }

            .digital-button,
            .blog-button,
            .podcast-button,
            .egitim-talep-button {
                height: 36px;
                padding: 0 14px;
                background: rgba(255, 255, 255, 0.15);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .digital-button i,
            .blog-button i,
            .podcast-button i,
            .egitim-talep-button i {
                font-size: 14px;
                color: #ffffff;
            }
            
            .digital-button span,
            .blog-button span,
            .podcast-button span,
            .egitim-talep-button span {
                font-size: 10px;
            }

            .sss-button {
                height: 36px;
                padding: 0 14px;
                background: rgba(255, 255, 255, 0.15);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .sss-button i {
                font-size: 14px;
                color: #ffffff;
            }
            
            .sss-button span {
                font-size: 10px;
            }

            .cart-button {
                width: 38px;
                height: 38px;
            }

            .cart-button i {
                font-size: 16px;
            }

            .cart-badge {
                width: 16px;
                height: 16px;
                font-size: 9px;
            }

            .header-nav-bottom .login-button-prominent {
                padding: 10px 20px;
                font-size: 13px;
            }

            .header-nav-bottom .login-button-prominent span {
                display: none;
            }

            .header-nav-bottom .login-button-prominent i {
                font-size: 18px;
            }

            .slide.hero-full {
                min-height: 600px !important;
                max-height: 600px !important;
            }

            .slide.hero-full .main-slider .item {
                height: 600px !important;
            }

            .slide.hero-full .main-slider .item img,
            .slide.hero-full .main-slider .item video {
                height: 600px !important;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .header-nav-top-buttons {
                margin-right: 15px;
            }

            .header-nav-bottom .login-button-prominent {
                padding: 11px 26px;
                font-size: 14px;
            }
        }

        /* Popüler Eğitimler Section */
        .populer-egitimler-section {
            background-color: #ffffff;
            padding: 70px 0;
        }

        .populer-egitimler-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .populer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .populer-title {
            font-size: 32px;
            font-weight: 700;
            color: #1d458b;
            margin: 0;
            letter-spacing: 1px;
        }

        .populer-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tum-egitimler-btn {
            background: #1d458b;
            color: white;
            padding: 12px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(29, 69, 139, 0.3);
        }

        .tum-egitimler-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(29, 69, 139, 0.4);
            background: #163A73;
        }

        .tum-egitimler-btn.takvim-btn {
            background: transparent;
            color: #1d458b;
            border: 2px solid #1d458b;
            box-shadow: none;
        }

        .tum-egitimler-btn.takvim-btn:hover {
            background: #1d458b;
            color: #fff;
            box-shadow: 0 4px 12px rgba(29, 69, 139, 0.3);
        }

        .tum-egitimler-btn i {
            font-size: 14px;
        }

        .populer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        /* Ana Kart (Sol) */
        .populer-main-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 500px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }

        .populer-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.4s ease;
        }

        .populer-main-card:hover .populer-bg {
            transform: scale(1.05);
        }

        .populer-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(29, 69, 139, 0.95) 0%, rgba(29, 69, 139, 0.6) 50%, rgba(29, 69, 139, 0.3) 100%);
        }

        .populer-content {
            position: relative;
            z-index: 2;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: white;
        }

        .populer-date-badge {
            position: absolute;
            top: 30px;
            left: 40px;
            background: rgba(255, 255, 255, 0.95);
            color: #1d458b;
            padding: 16px 20px;
            border-radius: 12px;
            text-align: center;
            min-width: 90px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .date-number {
            font-size: 42px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 4px;
        }

        .date-text {
            font-size: 15px;
            font-weight: 600;
            text-transform: capitalize;
        }

        .populer-category {
            display: inline-block;
            background: rgba(239, 83, 80, 0.9);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            align-self: flex-start;
        }

        .populer-main-title {
            font-size: 28px;
            font-weight: 700;
            color: white;
            line-height: 1.4!important;
            margin-bottom: 12px!important;
            letter-spacing: -0.3px;
        }

        .populer-excerpt {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6!important;
            margin-bottom: 20px!important;
            letter-spacing: 0.2px;
        }

        .devami-btn {
            background: rgba(255, 255, 255, 0.95);
            color: #1d458b;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .devami-btn:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .devami-btn i {
            font-size: 14px;
        }

        /* Ana Kart Link Stili */
        .populer-main-link {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

        /* Küçük Kartlar (Sağ - 2x2) */
        .populer-small-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .populer-small-card {
            display: block;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 238px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            text-decoration: none;
            color: inherit;
        }

        .populer-small-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .small-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.4s ease;
        }

        .populer-small-card:hover .small-card-bg {
            transform: scale(1.08);
        }

        .small-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgb(29, 69, 139) 0%, rgba(29, 69, 139, 0.831) 50%, rgba(29, 69, 139, 0.2) 100%);
        }

        .small-card-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: white;
        }

        .small-date {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 10px;
        }

        .small-day {
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
        }

        .small-month {
            font-size: 14px;
            font-weight: 500;
            text-transform: capitalize;
        }

        .small-card-title {
            font-size: 17px;
            font-weight: 700;
            color: white;
            line-height: 1.3!important;
            margin: 0!important;
            flex: 1;
            letter-spacing: 0.2px;
        }

        .small-card-desc {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5 !important;
            margin: 0px 0 10px 0 !important;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .small-category {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            align-self: flex-start;
        }

        .small-category.akademik {
            background: rgba(239, 83, 80, 0.9);
            color: white;
        }

        .small-category.bilim {
            background: rgba(33, 150, 243, 0.9);
            color: white;
        }

        .small-category.kampus {
            background: rgba(0, 150, 136, 0.9);
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .populer-egitimler-section {
                padding: 50px 0;
            }

            .populer-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 30px;
            }

            .populer-title {
                font-size: 26px;
            }

            .populer-buttons {
                width: 100%;
                flex-direction: column;
                gap: 10px;
            }

            .tum-egitimler-btn {
                width: 100%;
                justify-content: center;
            }

            .populer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .populer-main-card {
                height: 400px;
            }

            .populer-content {
                padding: 30px;
            }

            .populer-date-badge {
                top: 20px;
                left: 20px;
                padding: 12px 16px;
                min-width: 75px;
            }

            .date-number {
                font-size: 36px;
            }

            .date-text {
                font-size: 13px;
            }

            .populer-main-title {
                font-size: 22px;
            }

            .populer-excerpt {
                font-size: 14px;
            }

            .populer-small-cards {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .populer-small-card {
                height: 200px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .populer-grid {
                grid-template-columns: 1fr;
            }

            .populer-main-card {
                height: 450px;
            }

            .populer-small-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1400px) {
            .populer-egitimler-section .container {
                max-width: 1320px;
            }
        }

        /* Duyurular Section */
        .duyurular-section {
            background: linear-gradient(135deg, #2c5aa0 0%, #1d458b 50%, #163A73 100%);
            padding: 60px 0;
            color: white;
        }

        .duyurular-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .duyurular-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .duyurular-title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin: 0;
            letter-spacing: 1px;
        }

        .duyurular-arrows {
            display: flex;
            gap: 10px;
        }

        .arrow-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
        }

        .arrow-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .arrow-btn i {
            font-size: 16px;
        }

        .tum-duyurular-btn {
            background: white;
            color: #1d458b;
            padding: 12px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .tum-duyurular-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }

        .tum-duyurular-btn i {
            font-size: 14px;
        }

        .duyurular-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .duyuru-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            gap: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .duyuru-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .duyuru-date {
            background: rgba(255, 255, 255, 0.25);
            padding: 16px 20px;
            border-radius: 12px;
            text-align: center;
            min-width: 85px;
            backdrop-filter: blur(5px);
        }

        .date-day {
            font-size: 36px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 4px;
        }

        .date-month {
            font-size: 14px;
            font-weight: 500;
            text-transform: lowercase;
        }

        .duyuru-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        .duyuru-title {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.5!important;
            margin: 0;
            color: white;
            letter-spacing: 0.2px;
        }

        .duyuru-arrow {
            position: absolute;
            bottom: 0;
            right: 0;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .duyuru-card:hover .duyuru-arrow {
            opacity: 1;
            transform: translateX(4px);
        }

        .duyuru-arrow i {
            font-size: 24px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .duyurular-section {
                padding: 40px 0;
            }

            .duyurular-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 30px;
            }

            .header-left {
                flex-wrap: wrap;
            }

            .duyurular-title {
                font-size: 26px;
            }

            .duyurular-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .duyuru-card {
                padding: 20px;
            }

            .duyuru-date {
                min-width: 70px;
                padding: 12px 16px;
            }

            .date-day {
                font-size: 30px;
            }

            .duyuru-title {
                font-size: 14px;
            }

            .tum-duyurular-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .duyurular-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .duyurular-title {
                font-size: 28px;
            }
        }

        @media (min-width: 1025px) {
            .duyurular-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Eğitimler Section */
        .egitimler-section {
            background-color: #f8f9fa;
            padding: 70px 0;
        }

        .egitimler-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Header */
        .egitimler-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 50px;
            gap: 40px;
        }

        .section-header-left {
            flex: 0 0 auto;
        }

        .section-header-right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .egitimler-section .section-title {
            font-size: 40px;
            font-weight: 700;
            color: #2c5192;
            margin-bottom: 12px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            letter-spacing: -0.3px;
            line-height: 1.3;
            text-align: left;
        }

        .egitimler-section .section-subtitle {
            font-size: 17px;
            color: #333;
            font-weight: 400;
            line-height: 1.7;
            letter-spacing: 0.2px;
            text-align: left;
        }

        /* Kategori Filter Selectbox */
        .category-filter-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .category-filter-wrapper:hover {
            border-color: #1d458b;
            box-shadow: 0 4px 16px rgba(29, 69, 139, 0.15);
        }

        .filter-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin: 0;
            white-space: nowrap;
        }

        .filter-label i {
            font-size: 16px;
            color: #333;
        }

        /* Custom Select Dropdown */
        .custom-select-wrapper {
            position: relative;
            min-width: 240px;
        }

        .custom-select {
            position: relative;
            user-select: none;
        }

        .select-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 12px;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 12px;
        }

        .select-trigger:hover {
            background-color: #f8f9fa;
        }

        .select-text {
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
        }

        .select-arrow {
            font-size: 12px;
            color: #1d458b;
            transition: transform 0.3s ease;
        }

        .custom-select.open .select-arrow {
            transform: rotate(180deg);
        }

        .select-options {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            overflow: hidden;
            border: 2px solid #e0e0e0;
        }

        .custom-select.open .select-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .select-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
            font-weight: 500;
            color: #2c3e50;
        }

        .select-option:first-child {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .select-option:last-child {
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .select-option.active {
            background: linear-gradient(135deg, #2c5aa0 0%, #1d458b 100%);
            color: white;
            font-weight: 600;
        }

        .select-option.active .option-icon {
            color: white;
        }

        .select-option:not(.active):hover {
            background: #f0f4ff;
            color: #1d458b;
        }

        .select-option:not(.active):hover .option-icon {
            color: #1d458b;
            transform: scale(1.1);
        }

        .option-icon {
            font-size: 14px;
            color: #6c757d;
            transition: all 0.2s ease;
            min-width: 18px;
            text-align: center;
        }

        .select-option.active .option-icon {
            animation: iconPop 0.3s ease;
        }

        @keyframes iconPop {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* Stats Section - İstatistikler */
        .stats-section {
            position: relative;
            background: linear-gradient(135deg, #0f2d52 0%, #1d458b 50%, #2c5aa0 100%);
            padding: 60px 0;
            overflow: hidden;
        }

        .stats-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .stats-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            animation: float 20s infinite;
        }

        .particle:nth-child(1) {
            width: 60px;
            height: 60px;
            left: 10%;
            top: 20%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .particle:nth-child(2) {
            width: 45px;
            height: 45px;
            right: 15%;
            top: 60%;
            animation-delay: 5s;
            animation-duration: 20s;
        }

        .particle:nth-child(3) {
            width: 75px;
            height: 75px;
            left: 60%;
            top: 10%;
            animation-delay: 2s;
            animation-duration: 30s;
        }

        .particle:nth-child(4) {
            width: 40px;
            height: 40px;
            right: 35%;
            bottom: 20%;
            animation-delay: 8s;
            animation-duration: 22s;
        }

        .particle:nth-child(5) {
            width: 55px;
            height: 55px;
            left: 30%;
            bottom: 30%;
            animation-delay: 4s;
            animation-duration: 27s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.3;
            }
            25% {
                transform: translate(20px, -30px) rotate(90deg);
                opacity: 0.5;
            }
            50% {
                transform: translate(-20px, -50px) rotate(180deg);
                opacity: 0.3;
            }
            75% {
                transform: translate(30px, -20px) rotate(270deg);
                opacity: 0.4;
            }
        }

        .stats-section .container {
            position: relative;
            z-index: 2;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-card {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #3a7bd5, #00d2ff, #3a7bd5);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-12px);
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .stat-glow {
            position: absolute;
            bottom: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 210, 255, 0.25) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .stat-card:hover .stat-glow {
            opacity: 1;
        }

        .stat-icon-wrapper {
            margin-bottom: 16px;
        }

        .stat-icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            border: 2px solid rgba(0, 210, 255, 0.5);
            transition: all 0.4s ease;
            position: relative;
        }

        .stat-card:hover .stat-icon-circle {
            background: rgba(0, 210, 255, 0.2);
            border-color: rgba(0, 210, 255, 0.8);
            transform: scale(1.1) rotate(360deg);
        }

        .stat-icon {
            font-size: 32px;
            color: #00d2ff;
            transition: all 0.4s ease;
        }

        .stat-card:hover .stat-icon {
            color: #FFF;
            text-shadow: 0 0 20px rgba(0, 210, 255, 0.8);
        }

        .stat-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-bottom: 10px;
        }

        .stat-number {
            font-size: 44px;
            font-weight: 800;
            color: white;
            line-height: 1;
            font-family: 'Arial Black', sans-serif;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            letter-spacing: -1px;
        }

        .stat-plus {
            font-size: 32px;
            font-weight: 800;
            color: #00d2ff;
            line-height: 1;
            margin-top: -8px;
        }

        .stat-label {
            font-size: 15px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            line-height: 1.4;
        }

        /* Counter Animation */
        .stat-number.counting {
            animation: pulse 0.5s ease-in-out;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Responsive Stats */
        @media (max-width: 768px) {
            .stats-section {
                padding: 40px 0;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .stat-card {
                padding: 24px 16px;
            }

            .stat-icon-circle {
                width: 55px;
                height: 55px;
            }

            .stat-icon {
                font-size: 26px;
            }

            .stat-number {
                font-size: 32px;
            }

            .stat-plus {
                font-size: 24px;
            }

            .stat-label {
                font-size: 12px;
            }

            .particle {
                display: none;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }

            .stat-card {
                padding: 28px 18px;
            }

            .stat-number {
                font-size: 38px;
            }

            .stat-plus {
                font-size: 28px;
            }
        }

        /* References/Markalar Section */
        .references-section {
            background-color: #f8f9fa;
            padding: 70px 0;
        }

        .references-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .references-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .references-main-title {
            font-size: 36px;
            font-weight: 700;
            color: #1d458b;
            margin-bottom: 12px;
            letter-spacing: 1px;
            
        }

        .references-subtitle {
            font-size: 17px;
            color: #333;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        .references-slider-wrapper {
            position: relative;
            padding: 0 60px;
        }

        .references-slider {
            overflow: hidden;
            border-radius: 12px;
        }

        .references-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s ease;
        }

        .reference-card {
            min-width: calc((100% - 72px) / 4);
            background: white;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .reference-card:hover {
            
            box-shadow: 0 8px 30px rgba(29, 69, 139, 0.15);
            border-color: #1d458b;
        }

        .reference-logo {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .reference-card:hover .reference-logo {
            background: #e3f2fd;
        }

        .reference-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(0%);
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        .reference-card:hover .reference-logo img {
            filter: grayscale(0%);
            transform: scale(1.05);
            opacity: 1;
        }

        .reference-name {
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
            line-height: 1.5;
            letter-spacing: 0.3px;
        }

        /* Navigation Buttons */
        .ref-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: #1d458b;
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(29, 69, 139, 0.3);
        }

        .ref-nav-btn:hover {
            background: #163A73;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(29, 69, 139, 0.4);
        }

        .ref-prev {
            left: 0;
        }

        .ref-next {
            right: 0;
        }

        /* Responsive References */
        @media (max-width: 768px) {
            .references-section {
                padding: 50px 0;
            }

            .references-header {
                margin-bottom: 35px;
            }

            .references-main-title {
                font-size: 26px;
            }

            .references-subtitle {
                font-size: 15px;
            }

            .references-slider-wrapper {
                padding: 0 50px;
            }

            .reference-card {
                min-width: 100%;
            }

            .references-track {
                gap: 16px;
            }

            .reference-logo {
                height: 100px;
                margin-bottom: 16px;
            }

            .reference-name {
                font-size: 13px;
            }

            .ref-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .reference-card {
                min-width: calc((100% - 48px) / 3);
            }

            .references-main-title {
                font-size: 32px;
            }
        }

        @media (min-width: 1025px) {
            .reference-card {
                min-width: calc((100% - 72px) / 4);
            }
        }

        /* About Widget Section */
        .about-widget-section {
            background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .about-widget-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 20%, rgba(29, 69, 139, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-widget-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .about-widget-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Sağ Taraf - İçerik */
        .about-content {
            padding-left: 20px;
        }

        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #1d458b 0%, #2c5aa0 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            box-shadow: 0 4px 12px rgba(29, 69, 139, 0.25);
        }

        .about-badge i {
            font-size: 16px;
        }

        .about-title {
            font-size: 42px;
            font-weight: 700;
            color: #1d458b;
            line-height: 1.3!important;
            margin-bottom: 24px!important;
            letter-spacing: -0.5px;
        }

        .about-description {
            font-size: 17px;
            color: #6c757d;
            line-height: 1.8;
            margin-bottom: 40px;
            letter-spacing: 0.2px;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border-left: 4px solid #1d458b;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(-8px);
            box-shadow: 0 6px 24px rgba(29, 69, 139, 0.15);
        }

        .feature-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1d458b;
            font-size: 22px;
        }

        .feature-text {
            flex: 1;
        }

        .feature-title {
            font-size: 17px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .feature-desc {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.7;
            margin: 0;
            letter-spacing: 0.2px;
        }

        /* Sol Taraf - Görseller */
        .about-images {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 24px;
            padding-right: 20px;
        }

        .dots-pattern {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 180px;
            height: 180px;
            background-image: radial-gradient(circle, rgba(29, 69, 139, 0.15) 2px, transparent 2px);
            background-size: 15px 15px;
            z-index: 1;
        }

        .about-image-main,
        .about-image-secondary {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            z-index: 2;
        }

        .about-image-main:hover,
        .about-image-secondary:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 50px rgba(29, 69, 139, 0.25);
        }

        .about-image-main {
            height: 380px;
        }

        .about-image-secondary {
            height: 300px;
            width: 97%;
            margin-left: auto;
            margin-right: 0;
        }

        .about-image-main img,
        .about-image-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .about-image-main:hover img,
        .about-image-secondary:hover img {
            transform: scale(1.05);
        }

        /* Hakkımızda Video Stilleri */
        .about-video-wrapper {
            position: relative;
            overflow: hidden;
        }

        .about-main-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-video-wrapper:hover .about-main-video {
            transform: scale(1.02);
        }

        /* Responsive About Widget */
        @media (max-width: 768px) {
            .about-widget-section {
                padding: 50px 0;
            }

            .about-widget-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-images {
                order: 2;
                padding-right: 0;
            }

            .about-content {
                order: 1;
                padding-left: 0;
            }

            .dots-pattern {
                width: 120px;
                height: 120px;
                top: -20px;
                left: -20px;
                background-size: 12px 12px;
            }

            .about-title {
                font-size: 28px;
                margin-bottom: 18px;
            }

            .about-description {
                font-size: 15px;
                margin-bottom: 30px;
            }

            .about-features {
                gap: 20px;
            }

            .feature-item {
                padding: 20px;
                gap: 16px;
            }

            .feature-icon {
                width: 44px;
                height: 44px;
                font-size: 20px;
            }

            .feature-title {
                font-size: 16px;
            }

            .feature-desc {
                font-size: 14px;
            }

            .about-image-main {
                height: 260px;
            }

            .about-video-wrapper.about-image-main {
                height: 260px;
            }

            .about-image-secondary {
                height: 200px;
                width: 90%;
            }

            .about-badge {
                font-size: 13px;
                padding: 8px 16px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .about-widget-section {
                padding: 60px 0;
            }

            .about-widget-grid {
                gap: 40px;
            }

            .about-images {
                padding-right: 10px;
            }

            .about-content {
                padding-left: 10px;
            }

            .dots-pattern {
                width: 150px;
                height: 150px;
            }

            .about-title {
                font-size: 36px;
            }

            .about-description {
                font-size: 16px;
            }

            .feature-item {
                padding: 22px;
            }

            .about-image-main {
                height: 320px;
            }

            .about-video-wrapper.about-image-main {
                height: 320px;
            }

            .about-image-secondary {
                height: 230px;
            }
        }

        /* Education Grid */
        .education-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 0;
            align-items: stretch;
        }
        
        .education-grid > * {
            height: 100%;
        }

        /* Education Card */
        .education-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #e9ecef;
            position: relative;
            opacity: 1;
            transform: translateY(0);
            height: 100%;
        }

        .education-card:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            transform: translateY(-1px);
        }

        /* Farklı Renk Temaları - Mavi Palet */
        .education-card:nth-child(8n+1) {
            border-top: 4px solid #003a7b;
        }

        .education-card:nth-child(8n+2) {
            border-top: 4px solid #04498f;
        }

        .education-card:nth-child(8n+3) {
            border-top: 4px solid #0f73a7;
        }

        .education-card:nth-child(8n+4) {
            border-top: 4px solid #2c62c0;
        }

        .education-card:nth-child(8n+5) {
            border-top: 4px solid #3b8dc2;
        }

        .education-card:nth-child(8n+6) {
            border-top: 4px solid #5d8dc5;
        }

        .education-card:nth-child(8n+7) {
            border-top: 4px solid #79caee;
        }

        .education-card:nth-child(8n+8) {
            border-top: 4px solid #81bbee;
        }

        /* Kategori Badge Renk Uyumu - Mavi Palet */
        .education-card:nth-child(8n+1) .category-badge {
            background: #003a7b;
            color: white;
        }

        .education-card:nth-child(8n+2) .category-badge {
            background: #04498f;
            color: white;
        }

        .education-card:nth-child(8n+3) .category-badge {
            background: #0f73a7;
            color: white;
        }

        .education-card:nth-child(8n+4) .category-badge {
            background: #2c62c0;
            color: white;
        }

        .education-card:nth-child(8n+5) .category-badge {
            background: #3b8dc2;
            color: white;
        }

        .education-card:nth-child(8n+6) .category-badge {
            background: #5d8dc5;
            color: white;
        }

        .education-card:nth-child(8n+7) .category-badge {
            background: #79caee;
            color: #003a7b;
        }

        .education-card:nth-child(8n+8) .category-badge {
            background: #81bbee;
            color: #003a7b;
        }

        .card-image-wrapper {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #f8f9fa;
            display: block;
        }

        /* Tıklanabilir görsel linki */
        a.card-image-wrapper,
        a.card-image-link {
            cursor: pointer;
            text-decoration: none;
        }

        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .education-card:hover .card-image-wrapper img {
            transform: scale(1.08);
        }

        .category-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            z-index: 2;
            letter-spacing: 0.5px;
            line-height: 1.4;
        }

        .card-content {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

    .card-title {
    font-size: 15px;
    font-weight: 500;
    color: #212529;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    min-height: 57px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    }

    /* Başlık Linki */
    .card-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
    }

    .card-title a:hover {
        color: #1565C0;
    letter-spacing: 0.2px;
    }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 14px;
            gap: 14px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #6c757d;
            font-weight: 400;
            flex: 1;
            min-width: 0;
            line-height: 1.6;
        }

        .meta-item i {
            font-size: 13px;
            flex-shrink: 0;
        }

        .meta-item span {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .meta-date {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #6c757d;
            font-weight: 400;
            white-space: nowrap;
            line-height: 1.6;
        }

        .meta-date i {
            font-size: 13px;
        }

        .meta-date span {
            letter-spacing: 0.2px;
        }

        /* Meta İkon Renkleri */
        .education-card:nth-child(8n+1) .meta-item i,
        .education-card:nth-child(8n+1) .meta-date i {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+2) .meta-item i,
        .education-card:nth-child(8n+2) .meta-date i {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+3) .meta-item i,
        .education-card:nth-child(8n+3) .meta-date i {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+4) .meta-item i,
        .education-card:nth-child(8n+4) .meta-date i {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+5) .meta-item i,
        .education-card:nth-child(8n+5) .meta-date i {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+6) .meta-item i,
        .education-card:nth-child(8n+6) .meta-date i {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+7) .meta-item i,
        .education-card:nth-child(8n+7) .meta-date i {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+8) .meta-item i,
        .education-card:nth-child(8n+8) .meta-date i {
            color: #1e4c6a;
        }

        .card-description {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 16px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            letter-spacing: 0.2px;
        }

        .card-footer {
            border-top: 1px solid #e9ecef;
            padding-top: 16px;
            margin-top: auto;
        }

        .price-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 14px;
        }

        .card-price {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0px;
            line-height: 1;
        }

        /* Fiyat Renkleri - Mavi Palet */
        .education-card:nth-child(8n+1) .card-price {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+2) .card-price {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+3) .card-price {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+4) .card-price {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+5) .card-price {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+6) .card-price {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+7) .card-price {
            color: #1e4c6a;
        }

        .education-card:nth-child(8n+8) .card-price {
            color: #1e4c6a;
        }

        .period-name {
            font-size: 13px;
            color: #0f73a7;
            font-weight: 600;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .price-tax {
            font-size: 11px;
            color: #868e96;
            font-weight: 400;
        }

        /* Seviye Tespit Sınavı Ücreti */
        .sinav-fiyat-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 4px;
            margin-bottom: 8px;
        }

        .sinav-fiyat-label {
            font-size: 11px;
            color: #6b7280;
            font-weight: 500;
        }

        .sinav-fiyat-value {
            font-size: 12px;
            color: #1565C0;
            font-weight: 600;
        }

        .card-actions {
            display: flex;
            gap: 8px;
            margin-top: auto;
            padding-top: 16px;
        }

        .edu-btn {
            padding: 11px 18px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            flex: 1;
            text-decoration: none;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            letter-spacing: 0.3px;
            line-height: 1.4;
        }

        .edu-btn i {
            font-size: 14px;
        }

        .edu-btn-primary {
            background: linear-gradient(135deg, #003a7b 0%, #04498f 100%);
            color: white;
            box-shadow: 0 2px 8px rgba(0, 58, 123, 0.3);
        }

        .edu-btn-primary:hover {
            background: linear-gradient(135deg, #04498f 0%, #0f73a7 100%);
            box-shadow: 0 4px 16px rgba(0, 58, 123, 0.4);
        }

        .edu-btn-secondary {
            background: white;
            color: #8a8a8a;
            border: 2px solid #dee2e6;
        }

        .edu-btn-secondary:hover {
            background: #f8f9fa;
            border-color: #003a7b;
            color: #003a7b;
        }

        /* Tüm Eğitimler Butonu */
        .tum-egitimler-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            padding-top: 20px;
        }

        .tum-egitimler-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
            color: white;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
            transition: all 0.3s ease;
        }

        .tum-egitimler-btn:hover {
            background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
            box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
            transform: translateY(-2px);
            color: white;
        }

        .tum-egitimler-btn i {
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .egitimler-section {
                padding: 50px 0;
            }

            .egitimler-section .section-header {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 35px;
                gap: 25px;
            }

            .section-header-right {
                width: 100%;
            }

            .category-filter-wrapper {
                width: 100%;
                padding: 10px 16px;
            }

            .filter-label {
                font-size: 13px;
            }

            .filter-label i {
                font-size: 14px;
            }

            .custom-select-wrapper {
                flex: 1;
                min-width: auto;
            }

            .select-trigger {
                padding: 6px 10px;
            }

            .select-text {
                font-size: 13px;
            }

            .select-arrow {
                font-size: 11px;
            }

            .select-option {
                padding: 10px 14px;
                font-size: 13px;
            }

            .option-icon {
                font-size: 13px;
            }

            .egitimler-section .section-title {
                font-size: 30px;
                margin-bottom: 10px;
            }

            .egitimler-section .section-subtitle {
                font-size: 15px;
            }

            .education-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card-content {
                padding: 18px;
            }

            .card-actions {
                flex-direction: column;
                gap: 8px;
            }

            .edu-btn {
                width: 100%;
                padding: 11px 18px;
            }

            .card-title {
                font-size: 15px;
                min-height: auto;
                margin-bottom: 10px;
                line-height: 1.6;
                letter-spacing: 0.2px;
            }

            .card-meta {
                flex-direction: column;
                gap: 6px;
                align-items: flex-start;
                margin-bottom: 10px;
            }

            .meta-item {
                width: 100%;
            }

            .card-description {
                margin-bottom: 14px;
            }

            .card-footer {
                padding-top: 14px;
            }

            .price-tax {
                margin-bottom: 12px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .education-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .egitimler-section {
                padding: 60px 0;
            }

            .egitimler-section .section-title {
                font-size: 36px;
            }

            .egitimler-section .section-header {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 45px;
                gap: 30px;
            }

            .section-header-right {
                width: 100%;
            }

            .category-filter-wrapper {
                width: 100%;
            }

            .custom-select-wrapper {
                min-width: 200px;
            }
        }

        @media (min-width: 1025px) {
            .education-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1400px) {
            .egitimler-section .container {
                max-width: 1320px;
            }
        }

        /* Podcast Widget Section */
        .podcast-widget-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 60px 60px 0px 60px;
            position: relative;
            overflow: hidden;
        }

        .podcast-widget-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><circle cx="50" cy="50" r="30" fill="%231d458b" opacity="0.03"/></svg>');
            background-size: 100px 100px;
            pointer-events: none;
        }

        .podcast-widget-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .podcast-widget-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        /* Sol Taraf - Bilgiler */
        .podcast-info {
            color: white;
        }

        .podcast-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(29, 69, 139, 0.3);
            border: 1px solid rgba(29, 69, 139, 0.5);
            padding: 12px 24px;
            border-radius: 50px;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
        }

        .podcast-badge i {
            color: #4a9eff;
            font-size: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .podcast-badge span {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .podcast-title {
            font-size: 48px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2!important;
            letter-spacing: -0.5px!important;
        }

        .podcast-slogan {
            font-size: 20px;
            color: #4a9eff;
            font-weight: 600;
            font-style: italic;
            margin-bottom: 20px!important;
            line-height: 1.5!important;
        }

        .podcast-description {
            font-size: 16px;
            color: rgba(255,255,255,0.85);
            line-height: 1.8!important;
            margin-bottom: 35px!important;
        }

        .podcast-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #1d458b 0%, #4a9eff 100%);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(29, 69, 139, 0.4);
        }

        .podcast-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(29, 69, 139, 0.6);
            background: linear-gradient(135deg, #4a9eff 0%, #1d458b 100%);
        }

        .podcast-cta-btn i:first-child {
            font-size: 20px;
        }

        .podcast-cta-btn i:last-child {
            transition: transform 0.3s ease;
        }

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

        /* Sağ Taraf - Episode Cards */
        .podcast-episodes {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .podcast-episode-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 25px;
            display: flex;
            gap: 20px;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .podcast-episode-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(74, 158, 255, 0.5);
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(29, 69, 139, 0.3);
        }

        .podcast-episode-card.featured {
            background: rgba(29, 69, 139, 0.2);
            border: 2px solid rgba(74, 158, 255, 0.5);
        }

        .episode-badge {
            position: absolute;
            top: -12px;
            left: 25px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #1a1a2e;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        .episode-badge i {
            font-size: 14px;
        }

        .episode-play-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1d458b 0%, #4a9eff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(29, 69, 139, 0.4);
        }

        .podcast-episode-card:hover .episode-play-btn {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(29, 69, 139, 0.6);
        }

        .episode-play-btn i {
            margin-left: 3px;
        }

        .episode-info {
            flex: 1;
        }

        .episode-title {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .episode-speaker {
            font-size: 14px;
            color: #4a9eff;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .episode-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .episode-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: rgba(255,255,255,0.6);
        }

        .episode-meta i {
            font-size: 14px;
        }

        /* Podcast Stats */
        .podcast-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 40px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(29, 69, 139, 0.3) 0%, rgba(74, 158, 255, 0.3) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #4a9eff;
            flex-shrink: 0;
        }

        .stat-content {
            flex: 1;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .podcast-widget-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .podcast-title {
                font-size: 42px;
            }
        }

        @media (max-width: 992px) {
            .podcast-widget-section {
                padding: 60px 0;
            }

            .podcast-widget-content {
                margin-bottom: 50px;
            }

            .podcast-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .podcast-widget-section {
                padding: 50px 0;
            }

            .podcast-title {
                font-size: 32px;
            }

            .podcast-slogan {
                font-size: 18px;
            }

            .podcast-description {
                font-size: 15px;
            }

            .podcast-cta-btn {
                padding: 16px 32px;
                font-size: 15px;
            }

            .podcast-episode-card {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
            }

            .podcast-episode-card:hover {
                transform: none;
            }

            .episode-play-btn {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .episode-title {
                font-size: 16px;
            }

            .podcast-stats {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 25px;
            }

            .stat-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .stat-number {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .podcast-title {
                font-size: 28px;
            }

            .podcast-slogan {
                font-size: 16px;
            }

            .podcast-cta-btn {
                padding: 14px 28px;
                font-size: 14px;
            }

            .episode-title {
                font-size: 15px;
            }

            .episode-speaker {
                font-size: 13px;
            }

            .stat-number {
                font-size: 24px;
            }

            .stat-label {
                font-size: 13px;
            }
        }

        /* =========================================
           DİJİTAL EĞİTİMLER WİDGET
           ========================================= */
        .dijital-widget-section {
            background: linear-gradient(135deg, #0d2137 0%, #1d458b 50%, #04344d 100%);
            padding: 60px 60px 60px 60px;
            position: relative;
            overflow: hidden;
        }

        .dijital-widget-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%2300d4aa" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%234a9eff" opacity="0.15"/><circle cx="50" cy="50" r="1.5" fill="%2300d4aa" opacity="0.1"/></svg>');
            background-size: 60px 60px;
            pointer-events: none;
        }

        .dijital-widget-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .dijital-widget-content {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 60px;
            align-items: center;
        }

        /* Sol Taraf - Bilgiler */
        .dijital-info {
            color: white;
        }

        .dijital-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(95, 150, 245, 0.15);
            border: 1px solid rgba(19, 46, 166, 0.4);
            padding: 12px 24px;
            border-radius: 50px;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
        }

        .dijital-badge i {
            color: #b8c3ff;
            font-size: 20px;
            animation: digiPulse 2s infinite;
        }

        @keyframes digiPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.15); opacity: 0.8; }
        }

        .dijital-badge span {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #b8c3ff;
        }

        .dijital-title {
            font-size: 44px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2 !important;
            letter-spacing: -0.5px !important;
        }

        .dijital-slogan {
            font-size: 18px;
            color: #b8c3ff;
            font-weight: 600;
            font-style: italic;
            margin-bottom: 20px !important;
            line-height: 1.5 !important;
        }

        .dijital-description {
            font-size: 16px;
            color: rgba(255,255,255,0.85);
            line-height: 1.8 !important;
            margin-bottom: 35px !important;
        }

        .dijital-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #5479ff 0%, #3f6ae9 100%);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
        }

        .dijital-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: #b8c3ff;
            background: linear-gradient(135deg, #b8c3ff 0%, #b8c3ff 100%);
            color: white;
        }

        .dijital-cta-btn i:first-child {
            font-size: 20px;
        }

        /* Sağ Taraf - Dijital Eğitim Kartları */
        .dijital-courses {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .dijital-course-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 20px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .dijital-course-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(8px);
            border-color: rgba(0, 212, 170, 0.4);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .dijital-course-card.featured {
            background: rgba(0, 212, 170, 0.1);
            border-color: rgba(0, 212, 170, 0.3);
        }

        .course-badge {
            position: absolute;
            top: -8px;
            right: 20px;
            background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
            color: #1a1a2e;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        .course-badge i {
            font-size: 10px;
        }

        .course-image {
            width: 100px;
            height: 70px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .dijital-course-card:hover .course-image img {
            transform: scale(1.1);
        }

        .course-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 212, 170, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .course-overlay i {
            color: white;
            font-size: 24px;
        }

        .dijital-course-card:hover .course-overlay {
            opacity: 1;
        }

        .course-info {
            flex: 1;
            min-width: 0;
        }

        .course-title {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .course-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .course-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }

        .course-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .course-meta i {
            color: #b8c3ff;
        }

        .course-price {
            font-size: 16px;
            font-weight: 700;
            color: #b8c3ff;
            white-space: nowrap;
            text-align: right;
            min-width: 90px;
        }

        .course-price.free {
            background: linear-gradient(135deg, #b8c3ff 0%, #b8c3ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .dijital-widget-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .dijital-info {
                text-align: center;
            }

            .dijital-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .dijital-widget-section {
                padding: 50px 20px;
            }

            .dijital-title {
                font-size: 30px;
            }

            .dijital-slogan {
                font-size: 16px;
            }

            .dijital-cta-btn {
                padding: 16px 32px;
                font-size: 15px;
            }

            .dijital-course-card {
                padding: 14px;
                gap: 14px;
            }

            .course-image {
                width: 80px;
                height: 60px;
            }

            .course-title {
                font-size: 14px;
            }

            .course-price {
                font-size: 14px;
                min-width: 70px;
            }
        }

        @media (max-width: 480px) {
            .dijital-title {
                font-size: 26px;
            }

            .dijital-course-card {
                flex-direction: column;
                align-items: flex-start;
            }

            .course-image {
                width: 100%;
                height: 120px;
            }

            .course-price {
                text-align: left;
                margin-top: 8px;
            }
        }

        /* Announcements Section - Duyurular */
        .announcements-section {
            background: linear-gradient(135deg, #1d458b 0%, #2d5ba9 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .announcements-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .announcements-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .announcements-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .announcements-header-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .announcements-title {
            font-size: 36px;
            font-weight: 800;
            color: white;
            margin: 0;
            letter-spacing: 1px;
        }

        .announcements-nav {
            display: flex;
            gap: 8px;
        }

        .announcements-nav-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.3);
            background: transparent;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .announcements-nav-btn:hover {
            background: rgba(255,255,255,0.2);
            border-color: white;
        }

        .all-announcements-btn {
            background: white;
            color: #1d458b;
            border: none;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .all-announcements-btn:hover {
            background: #f0f4f8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

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

        .announcements-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
        }

        .announcement-card {
            flex: 0 0 calc(25% - 15px);
            min-width: 280px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 16px;
            padding: 25px;
            display: flex;
            gap: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
            text-decoration: none;
            color: inherit;
        }

        .announcement-card:hover {
            background: rgba(255,255,255,0.18);
            
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .announcement-date {
            flex-shrink: 0;
            text-align: center;
            padding: 15px 20px;
            background: rgba(255,255,255,0.15);
            border-radius: 12px;
            min-width: 70px;
        }

        .announcement-day {
            font-size: 32px;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 5px;
        }

        .announcement-month {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.8);
            text-transform: lowercase;
        }

        .announcement-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .announcement-text {
            font-size: 15px;
            font-weight: 500;
            color: white;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .announcement-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            transition: all 0.3s ease;
            align-self: flex-end;
            margin-top: 15px;
        }

        .announcement-card:hover .announcement-arrow {
            background: white;
            color: #1d458b;
        }

        /* Events Section - Etkinlikler */
        .events-section {
            background: #f5f7fa;
            padding: 80px 0;
            overflow: hidden;
        }

        .events-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .events-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .events-header-left {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .events-title-row {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .events-title {
            font-size: 36px;
            font-weight: 800;
            color: #1d458b;
            margin: 0;
            letter-spacing: 1px;
        }

        .events-nav {
            display: flex;
            gap: 8px;
        }

        .events-nav-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid #1d458b;
            background: transparent;
            color: #1d458b;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .events-nav-btn:hover {
            background: #1d458b;
            color: white;
        }

        .events-subtitle {
            font-size: 16px;
            color: #333;
            font-weight: 500;
            margin: 0;
        }

        .events-header-right {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .all-events-btn,
        .event-calendar-btn {
            background: #1c458b;
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .all-events-btn:hover,
        .event-calendar-btn:hover {
            background: #163a73;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(29, 69, 139, 0.3);
        }

        .events-slider {
            position: relative;
            overflow: visible;
            padding-bottom: 20px;
            margin-bottom: -20px;
        }

        .events-track {
            display: flex;
            gap: 25px;
            transition: transform 0.5s ease;
            padding-bottom: 15px;
        }

        .event-card {
            flex: 0 0 calc(20% - 20px);
            min-width: 260px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .event-card-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .event-card:hover {
          
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }

        .event-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

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

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

        

       

        .past-event-badge {
           
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            z-index: 2;
            display: none!important;
        }

        .past-event-badge i {
            font-size: 10px;
        }

        .event-card.past-event:hover {
            opacity: 1;
        }

        .event-details {
            padding: 20px;
        }

        .event-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 8px 0!important;
            line-height: 1.4!important;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .event-description {
            font-size: 13px;
            color: #666;
            margin: 0 0 10px 0;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .event-category {
            font-size: 13px;
            color: #1d458b;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .event-meta {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .event-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #7f8c9a;
        }

        .event-meta-item i {
            color: #1d458b;
            width: 16px;
        }

        .event-detail-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 12px;
            border-top: 1px solid #e8ecf1;
            margin-top: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .event-detail-link:hover .event-detail-icon {
            background: #163a73;
            transform: scale(1.1);
        }

        .event-detail-link:hover .event-detail-text {
            color: #1d458b;
        }

        .event-detail-icon {
            width: 30px;
            height: 30px;
            background: #1d458b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .event-detail-text {
            font-size: 13px;
            color: #1d458b;
            font-weight: 600;
            line-height: 1.4;
            transition: all 0.3s ease;
        }

        /* Responsive Announcements & Events */
        @media (max-width: 1200px) {
            .announcement-card {
                flex: 0 0 calc(33.33% - 14px);
            }

            .event-card {
                flex: 0 0 calc(25% - 19px);
            }
        }

        @media (max-width: 992px) {
            .announcements-section,
            .events-section {
                padding: 60px 0;
            }

            .announcements-title,
            .events-title {
                font-size: 30px;
            }

            .announcement-card {
                flex: 0 0 calc(50% - 10px);
            }

            .event-card {
                flex: 0 0 calc(33.33% - 17px);
            }
        }

        @media (max-width: 768px) {
            .announcements-section,
            .events-section {
                padding: 50px 0;
            }

            .announcements-header,
            .events-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .announcements-title,
            .events-title {
                font-size: 26px;
            }

            .announcement-card {
                flex: 0 0 280px;
            }

            .event-card {
                flex: 0 0 260px;
            }

            .events-header-right {
                width: 100%;
            }

            .all-events-btn,
            .event-calendar-btn {
                flex: 1;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .announcements-title,
            .events-title {
                font-size: 22px;
            }

            .announcement-card {
                flex: 0 0 260px;
                padding: 20px;
            }

            .announcement-day {
                font-size: 28px;
            }

            .announcement-text {
                font-size: 14px;
            }

            .event-card {
                flex: 0 0 240px;
            }

            .event-image {
                height: 150px;
            }

            .event-title {
                font-size: 15px;
            }
        }

        /* Video Gallery Section */
        .video-gallery-section {
            background: linear-gradient(135deg, #3b8dc2 0%, #4481ed 100%);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .video-gallery-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .video-gallery-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .video-gallery-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .video-gallery-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 20px;
            border-radius: 30px;
            margin-bottom: 20px;
            color: #ff6b6b;
            font-size: 14px;
            font-weight: 600;
        }

        .video-gallery-badge i {
            font-size: 16px;
        }

        .video-gallery-title {
            font-size: 42px;
            font-weight: 800;
            color: white;
            margin: 0 0 15px 0;
            letter-spacing: 1px;
        }

        .video-gallery-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            max-width: 600px;
            margin: 0 auto;
        }

        .video-gallery-grid {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .video-card {
            position: relative;
            width: 220px;
            height: 390px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .video-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        }

        .video-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
            z-index: 2;
            pointer-events: none;
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .video-card:hover .video-thumbnail {
            transform: scale(1.1);
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            transition: all 0.3s ease;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
        }

        .video-play-btn i {
            font-size: 24px;
            color: #1d458b;
            margin-left: 4px;
        }

        .video-card:hover .video-play-btn {
            transform: translate(-50%, -50%) scale(1.15);
            background: #1d458b;
        }

        .video-card:hover .video-play-btn i {
            color: white;
        }

        .video-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            z-index: 3;
        }

        .video-category {
            display: inline-block!important;
            background: #7ccbee;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 11px !important;
            font-weight: 600!important;
            margin-bottom: 10px!important;
            text-transform: uppercase!important;
            letter-spacing: 0.5px!important;
        }

        .video-title {
            font-size: 16px!important;
            font-weight: 600!important;
            color: white!important;
            margin: 0 0 8px 0!important;
            line-height: 1.4!important;
            display: -webkit-box!important;
            -webkit-line-clamp: 2!important;
            -webkit-box-orient: vertical!important;
            overflow: hidden!important;
        }

        .video-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }

        .video-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .video-duration {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 10px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            z-index: 3;
        }

        /* Video Source Badge (YouTube) */
        .video-source-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 0, 0, 0.9);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            z-index: 3;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .video-modal.active {
            display: flex;
        }

        .video-modal-content {
            position: relative;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            border-radius: 16px;
            overflow: hidden;
            background: #000;
        }

        #videoContainer {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
        }

        #youtubeContainer {
            width: 100%;
            height: 100%;
        }

        #youtubeContainer iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 44px;
            height: 44px;
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .video-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .video-modal video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .video-modal-info {
            padding: 20px 25px;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
        }

        .video-modal-title {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin: 0 0 8px 0;
        }

        .video-modal-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            line-height: 1.6;
        }

        /* Responsive Video Gallery */
        @media (max-width: 1200px) {
            .video-card {
                width: 200px;
                height: 355px;
            }
        }

        @media (max-width: 992px) {
            .video-gallery-section {
                padding: 60px 0;
            }

            .video-gallery-title {
                font-size: 34px;
            }

            .video-card {
                width: 180px;
                height: 320px;
            }

            .video-play-btn {
                width: 60px;
                height: 60px;
            }

            .video-play-btn i {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .video-gallery-section {
                padding: 50px 0;
            }

            .video-gallery-title {
                font-size: 28px;
            }

            .video-gallery-subtitle {
                font-size: 16px;
            }

            .video-gallery-grid {
                gap: 15px;
            }

            .video-card {
                width: 160px;
                height: 285px;
            }

            .video-info {
                padding: 15px;
            }

            .video-title {
                font-size: 13px;
            }

            .video-meta {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .video-gallery-title {
                font-size: 14px;
            }

            .video-card {
                width: 140px;
                height: 250px;
            }

            .video-play-btn {
                width: 50px;
                height: 50px;
            }

            .video-play-btn i {
                font-size: 16px;
            }

            .video-title {
                font-size: 12px;
                -webkit-line-clamp: 1;
            }

            .video-category {
                font-size: 10px;
                padding: 3px 8px;
            }
        }

        /* Blog Widget Section */
        .blog-widget-section {
            background-color: #f8f9fa;
            padding: 50px 0;
        }

        .blog-widget-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 50px;
            position: relative;
        }

        .blog-title {
            font-size: 36px;
            font-weight: 700;
            color: #2c5192;
            margin: 0;
            letter-spacing: 1px;
            text-align: center;
        }
        
        .all-blog-btn {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: #1d458b;
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        .all-blog-btn:hover {
            background: #15346a;
        }

        .blog-category {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            color: #fff;
            z-index: 2;
        }

        .blog-slider-wrapper {
            position: relative;
            padding: 0 60px;
        }

        .blog-slider {
            overflow: hidden;
            border-radius: 12px;
        }

        .blog-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s ease;
        }

        .blog-card {
            min-width: 320px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .blog-card:hover {
           
            box-shadow: 0 8px 30px rgba(29, 69, 139, 0.15);
        }

        .blog-image {
            display: block;
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
        }

        .blog-content {
            padding: 24px;
        }

        .blog-date {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #1d458b;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .blog-date i {
            font-size: 16px;
        }

        .blog-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.5!important;
            margin: 0 0 16px 0!important;
            min-height: 54px;
        }

        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #1d458b;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .blog-read-more:hover {
            gap: 12px;
            color: #163A73;
        }

        .blog-read-more i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .blog-read-more:hover i {
            transform: translateX(4px);
        }

        /* Blog Navigation Buttons */
        .blog-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            color: #1d458b;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .blog-nav-btn:hover {
            background: #1d458b;
            color: white;
            border-color: #1d458b;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(29, 69, 139, 0.3);
        }

        .blog-prev {
            left: 0;
        }

        .blog-next {
            right: 0;
        }

        /* Responsive Blog Widget */
        @media (max-width: 768px) {
            .blog-widget-section {
                padding: 50px 0;
            }

            .blog-header {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 35px;
            }

            .blog-title {
                font-size: 26px;
            }

            .all-blog-btn {
                position: static;
                transform: none;
                padding: 10px 20px;
                font-size: 13px;
            }

            .blog-slider-wrapper {
                padding: 0 50px;
            }

            .blog-card {
                min-width: 100%;
            }

            .blog-track {
                gap: 16px;
            }

            .blog-image {
                height: 200px;
            }

            .blog-content {
                padding: 20px;
            }

            .blog-card-title {
                font-size: 16px;
                min-height: auto;
            }

            .blog-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .blog-card {
                min-width: calc((100% - 24px) / 2);
            }

            .blog-title {
                font-size: 32px;
            }
        }

        @media (min-width: 1025px) {
            .blog-card {
                min-width: 310px;
            }
        }

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, #0f2d52 0%, #1d458b 100%);
            color: white;
            margin: 0;
            padding: 0;
        }

        .footer-main {
            padding: 60px 0 40px;
        }

        .footer-main .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-text {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            padding-top: 10px;
        }

        .footer-logo img {
            opacity: 0.9;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 10px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #00d2ff;
            transform: translateX(5px);
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
            padding-top: 10px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-contact i {
            color: #00d2ff;
            font-size: 16px;
            margin-top: 3px;
            min-width: 18px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #00d2ff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 0;
        }

        .footer-bottom .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #00d2ff;
        }

        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.3);
        }

        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer-main {
                padding: 40px 0 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer-title {
                font-size: 16px;
                margin-bottom: 16px;
            }

            .footer-text {
                font-size: 14px;
            }

            .footer-links a,
            .footer-contact li {
                font-size: 14px;
            }

            .footer-social a {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .footer-bottom {
                padding: 20px 0;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 8px;
            }

            .footer-bottom-links span {
                display: none;
            }

            .copyright-text {
                font-size: 13px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
            }
        }

/* ===================================
   KURUMSAL SLIDE - Widget'lı Tasarım
   =================================== */
.item-kurumsal {
    background: url('../images/bg22.png') center center / cover no-repeat !important;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100%;
}

/* Tüm overlay'ları kaldır */
.item-kurumsal::before,
.item-kurumsal::after,
.item.item-kurumsal::before,
.item.item-kurumsal::after,
.main-slider .item-kurumsal::before,
.main-slider .item-kurumsal::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    background: none !important;
}

/* Görsel ve widget'lar için overlay temizliği */
.kurumsal-image-wrapper::before,
.kurumsal-image-wrapper::after,
.kurumsal-visual::before,
.kurumsal-visual::after,
.kurumsal-img::before,
.kurumsal-img::after {
    display: none !important;
    content: none !important;
}

/* Glow efekti - bg11.png kullanıldığı için devre dışı */
.item-kurumsal .kurumsal-glow {
    display: none;
}

.kurumsal-slide {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    z-index: 1;
    box-sizing: border-box;
}

.kurumsal-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    top:50px;
}

/* Sol Taraf - Metin Alanı */
.kurumsal-text {
    padding-right: 20px;
    padding-left: 0px;
}

.kurumsal-ust-baslik {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
    font-weight: 500;
    min-height: 28px;
}

.kurumsal-ust-baslik i {
    color: #8bb8e8;
    font-size: 17px;
}

/* Typewriter Animation */
.typewriter-container {
    position: relative;
    overflow: hidden;
}

.typewriter-icon {
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(139, 184, 232, 0.5));
}

.typewriter-text {
    background: linear-gradient(90deg, #ffffff 0%, #8bb8e8 50%, #64b5f6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s linear infinite;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.typewriter-cursor {
    color: #64b5f6;
    font-weight: 300;
    animation: cursorBlink 0.8s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.8);
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(139, 184, 232, 0.8));
    }
}

@keyframes textShine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.kurumsal-ana-baslik {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2!important;
    margin: 0 0 30px 0;
}

.kurumsal-ana-baslik .italic-text {
    display: block;
    font-style: italic;
    color: #8bb8e8;
    font-size: 20px;
    margin-top: 10px;
}

.kurumsal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #ffffff;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.kurumsal-btn:hover {
    background: #f0f7ff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #1e3a5f;
}

/* Sağ Taraf - Görsel Alanı */
.kurumsal-visual {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 140px;
    /* justify-content: flex-end;*/
}

.kurumsal-image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: visible;
    background: transparent;
    width: 100%;
    max-width: 480px;
}

.kurumsal-img {
    width: 100%!important;
    height: auto;
    aspect-ratio: 4/3;
    max-height: 450px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    animation: imageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               imageFloat 4s ease-in-out 1.5s infinite;
    opacity: 0;
}

@keyframes imageReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        filter: blur(10px);
    }
    60% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        filter: blur(0);
    }
}

@keyframes imageFloat {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25),
                    0 0 30px rgba(21, 101, 192, 0.1);
    }
    50% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3),
                    0 0 40px rgba(21, 101, 192, 0.2);
    }
}

@keyframes frameReveal {
    0% {
        opacity: 0;
        scale: 0.8;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}

/* Dekoratif Çerçeveler */
.kurumsal-frame {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    pointer-events: none;
    opacity: 0;
    animation: frameReveal 0.8s ease-out forwards;
}

.kurumsal-frame-1 {
    top: -20px;
    right: -20px;
    width: 65%;
    height: 45%;
    border-color: rgba(255, 255, 255, 0.15);
    animation-delay: 0.8s;
}

.kurumsal-frame-2 {
    bottom: 15%;
    right: -30px;
    width: 55%;
    height: 40%;
    border-radius: 15px;
    border-color: rgba(255, 255, 255, 0.2);
    animation-delay: 1s;
}

.kurumsal-frame-3 {
    top: 25%;
    left: -25px;
    width: 35%;
    height: 55%;
    border-radius: 12px;
    animation-delay: 1.2s;
    border-color: rgba(255, 255, 255, 0.12);
}

/* Widgetlar */
.kurumsal-widgets {
    position: absolute;
    top: 15%;
    left: -10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.kurumsal-widget {
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: widgetSlideIn 0.6s ease forwards;
    animation-delay: var(--widget-delay, 0s);
    opacity: 0;
    position: relative;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

@keyframes widgetSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.kurumsal-widget .widget-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.kurumsal-widget .widget-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.kurumsal-widget .widget-text {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.kurumsal-widget .widget-title {
    font-weight: 600;
    font-size: 15px;
    color: #1565C0;
}

.kurumsal-widget .widget-subtitle {
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
}

/* Watermark Logo - Gizli */
.kurumsal-logo-watermark {
    display: none !important;
}

/* Kurumsal Slider Nav Mini Logo */
.kurumsal-mini-logo {
    background: linear-gradient(135deg, #1565C0, #1e3a5f) !important;
    padding: 8px !important;
}

.kurumsal-mini-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 1200px) {
    .kurumsal-content {
        gap: 40px;
        top:100px;
    }
    
    .kurumsal-ana-baslik {
        font-size: 32px;
    }
    
    .kurumsal-widgets {
        left: -10px;
    }
}

/* Responsive - Extra Large Desktop */
@media (min-width: 1600px) {
    .kurumsal-content {
        max-width: 1500px;
        gap: 80px;
        top:-50px;
    }
    
    .kurumsal-ana-baslik {
        font-size: 40px;
    }
    
    .kurumsal-image-wrapper {
        max-width: 550px;
    }
    
    .kurumsal-img {
        max-height: 500px;
    }
    
    .kurumsal-widgets {
        left: -10px;
        gap: 18px;
    }
    
    .kurumsal-widget {
        padding: 16px 22px;
    }
}

/* Responsive - Large Desktop */
@media (min-width: 1400px) and (max-width: 1599px) {
    .kurumsal-content {
        max-width: 1350px;
        top:25px;
    }
    
    .kurumsal-ana-baslik {
        font-size: 38px;
    }
    
    .kurumsal-image-wrapper {
        max-width: 500px;
    }
    
    .kurumsal-img {
        max-height: 450px;
    }
}

/* Responsive - Medium Desktop */
@media (max-width: 1399px) and (min-width: 1201px) {
    .kurumsal-slide {
        padding: 140px 0 40px;
    }
    
    .kurumsal-content {
        max-width: 1200px;
        gap: 50px;
        top:-10px;
    }
    
    .kurumsal-ana-baslik {
        font-size: 38px;
    }
    
    .kurumsal-image-wrapper {
        max-width: 520px;
    }
    
    .kurumsal-img {
        max-height: 400px;
    }
    
    .kurumsal-widgets {
        left: -10px;
    }
}

/* Responsive - Small Desktop */
@media (max-width: 1200px) {
    .kurumsal-content {
        width: 95%;
        gap: 40px;
        top:150px;
    }
    
    .kurumsal-text {
        padding-left: 0px;
    }
    
    .kurumsal-ana-baslik {
        font-size: 28px;
    }
    
    .kurumsal-image-wrapper {
        max-width: 480px;
    }
    
    .kurumsal-img {
        max-height: 360px;
    }
    
    .kurumsal-widgets {
        left: -10px;
    }
}

@media (max-width: 992px) {
    .kurumsal-slide {
        position: relative;
        min-height: 100vh;
        padding: 100px 0 80px;
    }
    
    .kurumsal-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 90%;
        max-width: 600px;
    }
    
    .kurumsal-text {
        padding-right: 0;
        padding-left: 0;
        text-align: center;
        order: 2;
    }
    
    .kurumsal-ana-baslik {
        font-size: 30px;
        line-height: 1.3!important;
    }
    
    .kurumsal-ana-baslik .italic-text {
        display: inline;
    }
    
    .kurumsal-ust-baslik {
        justify-content: center;
        font-size: 14px;
    }
    
    .typewriter-text {
        white-space: normal;
        text-align: center;
    }
    
    .kurumsal-btn {
        margin: 0 auto;
        display: inline-flex;
    }
    
    .kurumsal-visual {
        order: 1;
        justify-content: center;
    }
    
    .kurumsal-image-wrapper {
        max-width: 100%;
    }
    
    .kurumsal-img {
        max-height: 320px;
    }
    
    .kurumsal-widgets {
        position: relative;
        top: 0;
        left: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }
    
    .kurumsal-frame {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Kurumsal slide mobilde gizli */
    .item-kurumsal {
        display: none !important;
    }
    
    /* Kurumsal nav ikonu da gizli */
    .kurumsal-nav {
        display: none !important;
    }
    
    .kurumsal-slide {
        padding: 90px 0 70px;
    }
    
    .kurumsal-content {
        width: 92%;
        gap: 25px;
    }
    
    .kurumsal-ana-baslik {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .kurumsal-ust-baslik {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .kurumsal-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .kurumsal-img {
        max-height: 280px;
    }
    
    .kurumsal-widget {
        padding: 10px 14px;
    }
    
    .kurumsal-widget .widget-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .kurumsal-widget .widget-title {
        font-size: 15px;
    }
    
    .kurumsal-widget .widget-subtitle {
        display: none;
    }
}

@media (max-width: 576px) {
    .kurumsal-slide {
        padding: 80px 0 60px;
    }
    
    .kurumsal-content {
        width: 94%;
        gap: 20px;
    }
    
    .kurumsal-ana-baslik {
        font-size: 20px;
    }
    
    .kurumsal-ust-baslik {
        font-size: 12px;
        min-height: 44px;
        flex-wrap: wrap;
    }
    
    .typewriter-text {
        font-size: 11px;
    }
    
    .kurumsal-img {
        max-height: 220px;
        border-radius: 14px;
    }
    
    .kurumsal-widgets {
        flex-direction: column;
        align-items: center;
    }
    
    .kurumsal-widget {
        width: 100%;
        max-width: 240px;
    }
}

@media (max-width: 400px) {
    .kurumsal-slide {
        padding: 70px 0 50px;
    }
    
    .kurumsal-ana-baslik {
        font-size: 18px;
    }
    
    .kurumsal-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .kurumsal-img {
        max-height: 180px;
    }
}
