/* ==============================================
   Genel Ayarlar
   ============================================== */
* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ==============================================
   Hero Slider
   ============================================== */
.hero-slider {
    height: 760px;
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.4) 100%);
    z-index: 1;
}
.hero-content {
    padding-top: 240px;
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,.6);
    opacity: 0;
    transform: translateY(20px);
    transition: .8s;
	color: #fff;
}
.hero-content p {
    font-size: 1.15rem;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: .8s .15s;
}
.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content p {
    opacity: 1;
    transform: translateY(0);
}
.btn {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .72rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: #1a5490;
    color: #fff;
    font-weight: 600;
    font-size: .98rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    transition: transform .2s,box-shadow .2s,background .2s;
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0,0,0,.4);
    background: #0052a3;
}

/* Navigasyon Kapsayıcı - Alt Orta */
.slider-nav-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

/* Yuvarlak Oklar */
.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .6);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.slider-arrow.prev {
    margin-right: 450px;
}
.slider-arrow.next {
    margin-left: 450px;
}
.slider-arrow:hover {
    background: #01436b;        
    border-color: #fff;
}

/* Çizgi Göstergeler */
.slider-indicators {
    display: flex;
    gap: 8px;
}
.ind-line {
    width: 25px;
    height: 12px;
    background: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
}
.ind-line.active {
    width: 45px;
    background: #2b5cb3;
}

/* Slider Okları Mobil Uyum */
@media (max-width: 1324px) {
    .slider-nav-container {
        bottom: 20px;
        gap: 15px;
    }
    .slider-arrow {
        width: 40px !important;
        height: 40px !important;
        border-width: 2px !important;
        font-size: 1.1rem;
    }
    .slider-arrow.prev {
        margin-right: 0 !important;
    }
    .slider-arrow.next {
        margin-left: 0 !important;
    }
    .slider-nav-container {
        left: 20px;
        right: 20px;
        transform: none;
        justify-content: space-between;
        width: auto;
    }
}

@media (max-width: 576px) {
    .slider-arrow {
        width: 36px !important;
        height: 36px !important;
    }
    .slider-nav-container {
        bottom: 15px;
        gap: 10px;
    }
}

/* ==============================================
   Quick Services
   ============================================== */
.quick-services {
    margin: -40px auto 5px;
    position: relative;
    z-index: 10;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 200px));
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.service-item {
    background: #ffffff;
    padding: 24px 16px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    min-width: 130px;
    position: relative;
    overflow: hidden;
}
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: #01436b;
    transition: left 0.3s ease;
}
.service-item:hover::before {
    left: 0;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.service-item a {
    display: block;
    text-decoration: none;
}
.service-item a:focus {
    outline: 2px solid #01436b;
    outline-offset: 2px;
    border-radius: 6px;
}
.service-item i {
    font-size: 38px;
    color: #01436b;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s ease;
}
.service-item:hover i {
    transform: scale(1.1);
}
.service-item span {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* Quick Services - Mobil Uyum */
@media (max-width: 1324px) {
    .quick-services {
        margin: -30px auto 40px;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
        max-width: 100%;
        padding: 0 12px;
    }
    .service-item {
        padding: 20px 12px;
        min-width: 120px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    .service-item i {
        font-size: 32px;
        margin-bottom: 8px;
    }
    .service-item span {
        font-size: 13px;
        line-height: 1.4;
    }
    .service-item:active,
    .service-item:focus-within {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    .service-item::before {
        transition: left 0.2s ease;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    .service-item {
        padding: 16px 10px;
    }
    .service-item i {
        font-size: 28px;
    }
    .service-item span {
        font-size: 12px;
    }
}
.service-item a {
    word-break: break-word;
}

/* ==============================================
   Silhouette
   ============================================== */
.silhouette {
    background: url(../images/silhoutte-line.png) no-repeat top center;
    padding-top: 140px;
	padding-bottom: 20px;

}
@media (max-width: 1020.98px) {
    .silhouette {
        background-size: 250% auto;
        padding-top: 60px;
		padding-bottom: 40px;

    }
}
@media (max-width: 575.98px) {
    .silhouette {
        background-size: 300% auto;
        padding-top: 60px;
    }
}
@media (max-width: 463.98px) {
    .silhouette {
        background-size: 400% auto;
        padding-top: 60px;
    }
}
/* ==============================================
   Stats Section
   ============================================== */
.stats-section {
    background: linear-gradient(135deg, #003087 0%, #2c5282 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}
.stat-item {
    padding: 20px;
}
.stat-item .counter {
    font-size: clamp(40px, 5vw, 52px);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-item p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
}

/* ==============================================
   Section Titles
   ============================================== */
.section-title {
    font-size: clamp(32px, 4vw, 38px);
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0 0 50px;
    position: relative;
    padding-bottom: 20px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #01436b, #2c5282);
    border-radius: 2px;
}

/* ==============================================
   Haber Duyuru
   ============================================== */

.news-grid-slider {
    position: relative;
    width: 100%;
	overflow: hidden !important;  /* !important eklemek bazen hayat kurtarır */
    overflow: hidden;
    padding: 0;
    margin: 0 auto;
}

.news-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.news-card-item {
    flex: 0 0 auto;
	min-width: 160px;  /* global ekle, media içinde ezilmez */
    box-sizing: border-box;
    /* JS'nin tam hesaplama yapabilmesi için sabit min-width kaldırıldı */
}

.news-visual-card {
    position: relative;
    display: block;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

.news-visual-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.news-visual-card:hover .news-visual-img {
    transform: scale(1.05);
}

.news-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%) !important;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.news-visual-content {
    width: 100%;
    text-align: center;
}

/* Haber kartı içindeki BAŞLIK – tam alta yapışık, full genişlik */
.news-visual-content h3 {
    color: #ffffff !important;
    font-size: 18px !important;          /* Haberle aynı boy */
	word-break: break-word;
    hyphens: auto;
}


/* Etiketler - Renklerin aynen korundu */
.news-visual-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    z-index: 20;
    text-transform: uppercase;
    border-radius: 0 0 0 10px; 
    letter-spacing: 0.5px;
}

.tag-haber { background-color: #56a7c1 !important; } 
.tag-duyuru { background-color: #5da451 !important; }

/* Navigasyon - Butonların aynen korundu */
.news-visual-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.nv-prev, .nv-next {
    background: transparent;
    border: none;
    color: #56a7c1;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.nv-prev:hover, .nv-next:hover { color: #333; }

/* Dotlar */
.nv-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nv-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Görseldeki Uzun Aktif Dot */
.nv-dot.active {
    width: 40px;           /* biraz daha uzun */
    background: #2c3e50;
	height: 10px;          /* biraz kalınlaşsın */
    border-radius: 10px;
}
/* MOBİL DESTEK - Sadece başlık için */
@media (max-width: 768px) {
    .news-visual-content h3 {
        font-size: 16px !important;       /* biraz küçült, dar ekranda taşmasın */
        line-height: 1.3 !important;      /* satır aralığını sıkıştır */
        padding: 10px 12px !important;    /* üst-alt ve yan boşlukları azalt */
        letter-spacing: 0.5px !important; /* harf aralığını hafif daralt */
    }
}

@media (max-width: 480px) {  /* çok küçük telefonlar (320-400px) */
    .news-visual-content h3 {
        font-size: 15px !important;
        padding: 8px 10px !important;
        line-height: 1.25 !important;
    }
}
/* Responsive Hesaplamalar (JS ile senkronize) */
@media (min-width: 1200px) {
    .news-card-item { width: calc((100% - 60px) / 4); }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .news-card-item { width: calc((100% - 40px) / 3); }
}

@media (max-width: 991px) {
    .news-card-item { width: calc((100% - 20px) / 2); }
}

@media (max-width: 400px) {
    .news-card-item { width: calc((100% - 12px) / 2); }
    .news-track { gap: 12px; }
    .news-visual-card { height: 280px; }
}
/* ==============================================
   PROJELER – HABER İLE AYNI YAPIDA, MOBİL TAM UYUMLU
   ============================================== */

.proj-grid-slider {
    position: relative;
    width: 100%;
    overflow: hidden !important;
    overflow: hidden;
    padding: 0;
    margin: 0 auto;
}

.proj-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.proj-card {
    flex: 0 0 auto;
    min-width: 160px;
    box-sizing: border-box;
}

/* background-color: #000; */
.proj-visual-card {
    position: relative;
    display: block;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

.proj-visual-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.proj-visual-card:hover .proj-visual-img {
    transform: scale(1.05);
}

.proj-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%) !important;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.proj-visual-content {
    width: 100%;
    text-align: center;
}

/* Proje kartı içindeki BAŞLIK – haber ile aynı stil (arka plan yok, sadece gölge) */
.proj-visual-content h3 {
    color: #ffffff !important;
    font-size: 18px !important;          /* Haberle aynı boy */
    margin: 0 0 10px 0 !important;
	word-break: break-word;
    hyphens: auto;
}

/* Etiketler ve Durum Yazısı – Haber ile aynı mantık */
.proj-visual-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    z-index: 20;
    text-transform: uppercase;
    border-radius: 0 0 0 10px;
    letter-spacing: 0.5px;
}

.proj-tag-proje { background-color: #007bff !important; }
.proj-tag-ozel  { background-color: #6f42c1 !important; }

.proj-durum-yazi {
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    z-index: 20;
    text-transform: uppercase;
    border-radius: 0 0 10px 0;
    letter-spacing: 0.5px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.proj-durum-devam { background-color: #e67e22 !important; }
.proj-durum-tamam  { background-color: #5da451 !important; }

/* Navigasyon – Haber ile aynı */
.proj-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.proj-prev, .proj-next {
    background: transparent;
    border: none;
    color: #56a7c1;           /* Proje temasına göre mavi, istersen #56a7c1 yap */
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.proj-prev:hover, .proj-next:hover { color: #333; }

/* Dotlar – Haber ile aynı uzun aktif dot */
.proj-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.proj-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.proj-dot.active {
    width: 40px;
    background: #2c3e50;
    height: 10px;
    border-radius: 10px;
}
/* ==============================================
   PROJELER - SADECE BAŞLIK (h3) ve ALT YAZI (p/small) İÇİN MOBİL DESTEK
   ============================================== */

@media (max-width: 768px) {
    /* BAŞLIK (h3) mobil ayarları */
    .proj-visual-content h3 {
        margin: 0 0 8px 0 !important;        /* alt boşluğu azalt */
        padding: 0 8px !important;           /* hafif yan boşluk ekle ki kenara yapışmasın */
        max-width: 100% !important;
    }

    /* small'ların arka planını biraz küçült ki kalabalık olmasın */
    .proj-visual-content small {
        padding: 3px 8px !important;
        border-radius: 4px !important;
    }

    /* Progress bar'ı mobil'de incelt */
    .proj-visual-content .progress {
        height: 8px !important;
        margin: 6px 0 !important;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar (telefonlar) ekstra küçült */
    .proj-visual-content h3 {
        padding: 0 6px !important;
        margin-bottom: 6px !important;
    }
}
/* Responsive – Haber ile birebir aynı */
@media (min-width: 1200px) {
    .proj-card { width: calc((100% - 60px) / 4); }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .proj-card { width: calc((100% - 40px) / 3); }
}
@media (max-width: 991px) {
    .proj-card { width: calc((100% - 20px) / 2); }
}
@media (max-width: 400px) {
    .proj-card { width: calc((100% - 12px) / 2); }
    .proj-track { gap: 12px; }
    .proj-visual-card { height: 280px; }
}
/* ==============================================
   Secondary Slider
   ============================================== */
.secondary-slider {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    font-size: 15px;
    overflow: hidden;
}
.sec-slider-inner {
    display: flex;
    position: relative;
}
.sec-slide {
    flex: 0 0 100%;
    text-align: center;
    white-space: nowrap;
    padding: 0 40px;
}
.sec-slide a {
    color: #003087;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.sec-slide a:hover {
    color: #01436b;
}
.sec-slide a:focus {
    outline: 2px solid #01436b;
    outline-offset: 2px;
    border-radius: 4px;
}
.sec-slide span {
    color: #64748b;
    margin-left: 10px;
    font-size: 14px;
}

/* ==============================================
   Galeri Carousel
   ============================================== */
.galeri-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.galeri-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
    text-decoration: none;
    display: block;
}
.galeri-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.galeri-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 8s ease-out;
}
.galeri-slide.active .galeri-bg {
    transform: scale(1.05);
}
.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}
.galeri-content {
    position: absolute;
    bottom: 90px;
    left: 50px;
    right: 50px;
    z-index: 2;
    color: #ffffff;
}
.galeri-content h3 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: #ffffff;
}
.galeri-content p {
    font-size: 15px;
    line-height: 1.5;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    max-width: 750px;
    color: #ffffff;
    opacity: 0.95;
}



.galeri-prev,
.galeri-next {
    all: unset;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);   
    z-index: 15;   
    width: 45px;
    height: 45px;
    border-radius: 50%;   
    background: rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, .6); 
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    transition: all 0.35s ease;
}

.galeri-prev {
    left: 15px;
}

.galeri-next {
    right: 15px;
}

.galeri-prev:hover,
.galeri-prev:focus,
.galeri-next:hover,
.galeri-next:focus {
    background: #01436b;
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 25px rgba(1, 67, 107, 0.45);
    outline: none;
}
@media (max-width: 768px) {
    .galeri-prev, .galeri-next {
        width: 35px !important;
        height: 35px !important;
    }
}

.galeri-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: #ffffff;
    z-index: 10;
    height: 60px;
    margin: 0;
    padding: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.galeri-indicators span {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #ddd;
    position: relative;
    background: #ffffff;
    user-select: none;
}
.galeri-indicators span:last-child {
    border-right: none;
}
.galeri-indicators span:hover {
    background: #f8f9fa;
    color: #333;
}
.galeri-indicators span.active {
    background: #2f688d;
    color: white;
    font-weight: 700;
}
.galeri-indicators span:focus {
    outline: 2px solid #01436b;
    outline-offset: -2px;
}

/* ==============================================
   Duyurular Etkinlik İhale
   ============================================== */

.duyuru-kutu {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e7edf3;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.06);
    transition: transform 0.3s ease;
}
.duyuru-kutu-baslik {
    font-size: 1.25rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}
.duyuru-kutu-baslik i {
    color: #005199;
}
.duyuru-listesi {
    flex-grow: 1;
}
.duyuru-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #101828;
    text-decoration: none;
    transition: all .25s ease;
}
.duyuru-item:last-of-type {
    border-bottom: none;
}
.duyuru-item:hover {
    background: #fcfcfc;
}
.duyuru-tarih {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #005199;
    background: #e6f0ff;
    color: #005199;
    line-height: 1;
    transition: .25s;
}
.du-gun {
    font-size: 1.2rem;
}
.du-ay {
    font-size: .75rem;
    text-transform: uppercase;
}
.du-yil {
    font-size: 0.65rem;
    opacity: 0.8;
    font-weight: 600;
    margin-top: 2px;
}
.duyuru-item:hover .duyuru-tarih {
    background: #005199;
    color: #fff;
}
.duyuru-body {
    flex-grow: 1;
}
.du-baslik {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    transition: color .25s;
    color: #101828;
}
.du-ikon {
    color: #ccc;
    font-size: 1.2rem;
    transition: transform .25s, color .25s;
}
.duyuru-item:hover .du-baslik {
    color: #005199;
}
.duyuru-item:hover .du-ikon {
    transform: translateX(4px);
    color: #005199;
}
.duyuru-tumunu-gor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-weight: 600;
    font-size: .95rem;
    color: #005199;
    text-decoration: none;
    transition: .25s;
}
.duyuru-tumunu-gor:hover {
    color: #003a6d;
}
.duyuru-tumunu-gor i {
    transition: transform .25s;
}
.duyuru-tumunu-gor:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .duyuru-kutu {
        padding: 16px;
    }
}
/* ==============================================
   EK CLASS'LAR – Inline'lardan tamamen çıkanlar
   ============================================== */

/* Genel Boşluklar */
.mt-mb-50 {
    margin-top: 50px;    /* üstten daha fazla boşluk */
    margin-bottom: 50px; /* alta da nefes aldır */
}

/* Genel Boşluklar */
.container.mt-mb-60 {
    margin-top: 40px;    /* üstten daha fazla boşluk */
}

/* Başlık Çizgisi ve Wrapper */
.title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.title-line {
    width: 35px;
    height: 3px;
    background-color: #3e66a3;
    border-radius: 2px;
}
.galeri-baslik .title-wrapper {
    margin-bottom: 40px;
}

/* İstatistikler Grid ve Kart */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.stat-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(16,24,40,0.08);
    padding: 40px 24px;
    text-align: center;
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-8px);
}
.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3b82f6;
}
.counter {
    font-size: 48px;
    font-weight: 800;
    color: #101828;
    margin: 0;
    line-height: 1;
}
.stat-title {
    font-size: 18px;
    color: #667085;
    margin-top: 12px;
    font-weight: 500;
}

/* Tag (Etiket) */
.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 5px 14px;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	background: linear-gradient(90deg, #ef4444, #f97316);
}
.tag-duyuru, .tag-haber, .tag-galerİ {
    background: #2f688d;
}
.tag-vİdeo{
    background: linear-gradient(90deg, #ef4444, #f97316);
}


/* Play İkon */
.play-big {
    position: absolute;
    top: -170%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-size: 80px;
    color: white;
    opacity: 0.8;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Üç Sütun Grid (duyuru/ihale/etkinlik) */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.archive-section {
    margin: 50px 0;         
    padding: 0;
}

/* Flex row for haber bölümü */
.flex-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: stretch;
}
.main-col {
    flex: 2;
    min-width: 350px;
    display: flex;
    flex-direction: column;
}