/* Software Section */
.software-section {
    max-width: 1240px;
    width: 100%;
    margin: 30px auto;
    text-align: center;
    padding: 0 20px;
}

/* Title */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 36px;
    text-transform: uppercase;
    color: #0A2F2F;
    margin-bottom: 16px;
}

/* Description */
.software-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 24px;
    text-transform: uppercase;
    color: #3F5F5F;
    margin-bottom: 50px;
}

/* Logo marquee container */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

/* Track (for infinite scroll later) */
.logo-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: scroll 10s linear infinite;
}

/* Logo images (future ready) */
.logo-track img {
    height: 110px;
    object-fit: contain;
}

/* Button */
.learn-more-btn {
    width: 320px;
    height: 70px;
    background: #1B6F6F;
    border-radius: 40px;
    border: none;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.learn-more-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* Infinite scroll animation (ready) */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* ============Tablet Responsive============ */
@media (max-width: 768px) {

    .section-title {
        font-size: 44px;
    }

    .software-description {
        font-size: 20px;
    }

    .logo-track img {
        height: 42px;
    }

    .learn-more-btn {
        width: 280px;
        height: 64px;
        font-size: 18px;
    }
}
/* ============Mobile Responsive============ */
@media (max-width: 400px) {

    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .software-description {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 35px;
    }

    .logo-track {
        gap: 40px;
    }

    .logo-track img {
        height: 36px;
    }

    .learn-more-btn {
        width: 240px;
        height: 56px;
        font-size: 16px;
    }

    .software-section {
        margin: 80px auto;
    }
}
