﻿
.welcome-section {
    margin-top: 25px;
}

.stat-box {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

    .stat-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px rgba(0,0,0,.15);
    }

    .stat-box h3 {
        font-size: 32px;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 5px;
    }

    .stat-box small {
        font-size: 15px;
        color: #666;
    }

.welcome-section .hcard {
    background: linear-gradient(135deg,#ffffff,#f3f8ff);
}
.quick-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 35px 20px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .35s;
    height: 180px;
}

    .quick-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 35px rgba(13,110,253,.25);
    }

    .quick-card i {
        font-size: 48px;
        color: #0d6efd;
        margin-bottom: 20px;
        transition: .35s;
    }

    .quick-card:hover i {
        transform: scale(1.15) rotate(8deg);
    }

    .quick-card span {
        font-size: 17px;
        font-weight: 600;
        text-align: center;
        color: #333;
    }


    /*haber duyuru*/

.hcard {
    float: left;
    width: 24%;
    margin: 1px;
}

    .hcard .menu-content {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .hcard .menu-content::before, .hcard .menu-content::after {
            content: "";
            display: table;
        }

        .hcard .menu-content::after {
            clear: both;
        }

        .hcard .menu-content li {
            display: inline-block;
        }

        .hcard .menu-content a {
            color: #363636;
        }

        .hcard .menu-content span {
            position: absolute;
            left: 50%;
            top: 0;
            font-size: 13px;
            font-weight: 700;
            font-family: "Open Sans";
            transform: translate(-50%, 0);
        }

    .hcard .wrapper {
        min-height: 450px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
        border-radius: .5rem;
    }

        .hcard .wrapper:hover .data {
            transform: translateY(0);
        }

    .hcard .data {
        position: absolute;
        bottom: 0;
        width: 100%;
        transform: translateY(calc(70px + 1em));
        transition: transform 0.3s;
        left: 0;
    }

        .hcard .data .content {
            padding: 1em;
            position: relative;
            z-index: 1;
        }

    .hcard .author {
        font-size: 12px;
    }

    .hcard .title {
        margin-top: 1px;
    }

    .hcard .text {
        height: 70px;
        margin: 0;
    }

    .hcard input[type=checkbox] {
        display: none;
    }

        .hcard input[type=checkbox]:checked + .menu-content {
            transform: translateY(-60px);
        }

.haber .wrapper:hover .title a {
    color: var(--bs-orange);
}




    .haber .wrapper:hover .menu-content span {
        transform: translate(-50%, -10px);
        opacity: 1;
    }

.haber .header {
    color: #ebe71a;
    padding: 1em;
}

    .haber .header::before, .haber .header::after {
        content: "";
        display: table;
    }

    .haber .header::after {
        clear: both;
    }

    .haber .header .date {
        float: left;
        font-size: 12px;
    }

.haber .menu-content {
    float: right;
}

    .haber .menu-content li {
        margin: 0 5px;
        position: relative;
    }

    .haber .menu-content span {
        transition: all 0.3s;
        opacity: 0;
    }

.haber .data {
    color: #343434;
    transform: translateY(calc(70px + 4em));
}

.haber .title a {
    font-weight:500;
    font-size: 18px;
    color: #363636;
    text-transform: uppercase;
}

.haber .button {
    display: block;
    width: 100px;
    margin: 2em auto 1em;
    text-align: center;
    font-size: 12px;
    color: #363636;
    line-height: 1;
    position: relative;
    font-weight: 700;
}

    .haber .button::after {
        content: "→";
        opacity: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        transition: all 0.3s;
    }

    .haber .button:hover::after {
        transform: translate(10px, -50%);
        opacity: 1;
    }
.haber .date {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bs-orange);
    color: #fff;
    padding: 0.8em;
}

.haber .content {
    background-color: #fff;
    box-shadow: 0 5px 30px 10px rgba(0, 0, 0, 0.3);
}
    .haber .date span {
        display: block;
        text-align: center;
    }

    .haber .date .day {
        font-weight: 700;
        font-size: 24px;
        text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.18);
    }

    .haber .date .month {
        text-transform: uppercase;
    }

    .haber .date .month,
    .haber .date .year {
        font-size: 12px;
    }