﻿/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
        z-index: 1;
    }

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 1px;
    background: rgba(0, 74, 173, 0.9);
    color: rgba(210, 172, 103);
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
}

.ed-news-box {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    position: relative;
}

.ed-news-section {
    max-width: 1200px; /* Boxed width */
    margin: 50px auto; /* Top & bottom spacing, center horizontally */
    padding: 0 15px; /* Side padding on small screens */
}

/* Lajmet Section */
.lajmet {
    padding: 40px 30px;
}

    .lajmet h2 {
        font-size: 24px;
        font-weight: 600;
        color: rgba(0, 74, 173, 0.9);
        margin-bottom: 20px;
        margin-left: 300px;
    }

.news-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

    .news-cards .card {
        flex: 1;
        min-width: 400px;
        max-width: 320px;
        border: 1px solid #ccc;
        border-radius: 4px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

        .news-cards .card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .news-cards .card h3 {
            margin: 10px 15px 5px;
        }

        .news-cards .card p {
            margin: 0 15px 15px;
            font-size: 14px;
            color: #555;
        }

        .news-cards .card button {
            display: block;
            width: calc(100% - 30px);
            margin: 0 auto 15px;
            padding: 10px;
            background: #d6a758;
            border: none;
            border-radius: 12px;
            color: #131212;
            font-weight: bold;
            cursor: pointer;
        }

/* Online Payment Section */
.online-payment {
    background: #295b9e;
    padding: 50px 20px;
    color: #fff;
    height: 170px;
}

.payment-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

    .payment-content h2 {
        font-size: 60px;
        font-weight: bold;
        color: #dfb55e;
        margin: 0;
    }

    .payment-content span {
        color: #dfb55e;
    }

.btn-blej {
    padding: 18px 80px;
    font-size: 22px;
    font-weight: bold;
    background: #dfb55e;
    border: none;
    border-radius: 20px;
    color: #295b9e;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-blej:hover {
        background: #caa245;
    }

/* Aksident Info Section */
.aksident-info {
    padding: 40px 30px;
}

.aksident-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.video-box {
    width: 750px;
    height: 300px;
}

    .video-box img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

.info-box {
    flex: 1 1 400px;
}

    .info-box h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .info-box p {
        font-size: 20px;
        line-height: 1.7;
        color: #333;
    }

/* Anetaret Section */
.anetaret-section {
    padding: 0px 20px;
    background: #e0e0e0;
}

.anetaret-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 5px;
    margin-bottom: 30px;
}

    .anetaret-header h1 {
        color: #0a2f87;
        margin-left: 25px;
        font-weight: 700;
        padding-bottom: 10px;
    }

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 10px;
}

    .logos img {
        max-height: 65px;
        max-width: 400px;
        object-fit: contain;
        margin: 0 15px;
        flex: 1 1 150px;
        filter: drop-shadow(0 0 1px rgba(0,0,0,0.1));
    }

/* Three Cards */
.three-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #fff;
}

.bks-overlay-card {
    position: relative;
    width: 380px;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .bks-overlay-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .bks-overlay-card .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 63, 128, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .bks-overlay-card .overlay h3 {
            color: white;
            font-size: 20px;
            font-weight: 700;
            text-align: center;
        }
