﻿.scheme-info-card {
    background: #fff8e1;
    border: 2px solid #b71c1c;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .scheme-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(183, 28, 28, 0.25);
    }

.scheme-pattern-finance,
.rate-interest {
    background: linear-gradient(to right, #7b1e1e, #b71c1c, #ffb300);
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    font-size:1.2rem;
    font-weight:bold;
}

.scheme-pattern-content,
.rate-content {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
}

.scheme-highlight-box {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ffcc80;
    transition: background 0.3s, transform 0.3s;
}

    .scheme-highlight-box:hover {
        background: #ffe082;
        transform: translateY(-3px);
    }

h5 {
    font-weight: bold;
    color: #7b1e1e;
}

.scheme-section {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4a0000;
}

.scheme-gls-background-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/ASSETS/WEBSITE/images/bg_scheme_gls.png') no-repeat center center/cover;
    animation: zoomAnimation 10s infinite alternate ease-in-out;
    z-index: 1;
}


@keyframes zoomAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.scheme-ils-background-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/ASSETS/WEBSITE/images/bg_scheme_ils.png') no-repeat center center/cover;
    animation: zoomAnimation 10s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes zoomAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.scheme-milch-background-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/ASSETS/WEBSITE/images/bg_scheme_milch.png') no-repeat center center/cover;
    animation: zoomAnimation 10s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes zoomAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.scheme-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

    .scheme-content h1 {
        font-size: 1.6rem;
        background: rgba(74, 0, 0, 0.75);
        padding: 12px 35px;
        border-radius: 10px;
        display: inline-block;
        border-bottom: 4px solid #ffb300;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

@media (max-width: 768px) {
    .scheme-content h1 {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
}
