﻿.hero-section {
    position: relative;
    background: url('/img/computer-technic.png') no-repeat center right;
    background-size: cover;
    padding: 10px 0;
}

    /* Dark overlay for readability */
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(3, 9, 60, 0.95) 40%, rgba(3, 9, 60, 0.7) 60%, rgba(3, 9, 60, 0.3) 100% );
    }

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

/* Text styles */
.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #6da8ff;
    font-weight: 600;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 20px 0;
}

    .hero-title span {
        color: #2f7bff;
    }

.hero-text {
    color: #cbd5ff;
    margin-bottom: 20px;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .hero-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

        .hero-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #2f7bff;
        }
.partners-section {
    background: #0a36c7;
    padding: 40px 0;
    overflow: hidden;
}

.partners-title h5 {
    color: #fff;
    font-weight: 600;
    margin-left: 40px;
    margin-bottom: 20px;
}

/* Slider */
.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

    .partners-track img {
        background: #fff;
        padding: 15px 30px;
        margin: 0 15px;
        border-radius: 12px;
        height: 70px;
        object-fit: contain;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover (optional) */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}
.help-section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

    .help-section .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #002366;
        margin-bottom: 40px;
    }

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-items: center;
}

.help-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 280px;
}

    .help-card:hover {
        transform: translateY(-5px);
    }

    .help-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #0033cc;
    }

    .help-card ul {
        list-style-type: disc;
        padding-left: 20px;
        text-align: left;
    }

        .help-card ul li {
            margin-bottom: 8px;
            color: #333;
            font-size: 16px;
        }
