﻿/* Fade-in and scroll animation */
.fade-in {
    animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.7s cubic-bezier(.4,0,.2,1);
}

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

/* Hero Block */
.hero-block {
    position: relative;
    background: linear-gradient(120deg, #0d6efd 0%, #20c997 100%);
    color: #fff;
    padding: 5rem 0 4rem 0;
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.hero-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #e0f7fa;
    margin-bottom: 2.5rem;
}

.hero-cta {
    font-size: 1.15rem;
    padding: 0.8rem 2.2rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(13,110,253,0.13);
    transition: background 0.2s, box-shadow 0.2s;
}

    .hero-cta:hover {
        background: #20c997;
        color: #fff;
        box-shadow: 0 8px 32px rgba(32,201,151,0.18);
    }

.hero-shape {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: url('/images/wave-shape.svg') no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
}

/* Services Block */
.services-block {
    background: #f8fafd;
    padding: 4rem 0 3rem 0;
}

.block-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.service-card {
    background: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 4px 24px rgba(0,51,102,0.07);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: pointer;
    border: none;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .service-card:hover {
        transform: translateY(-10px) scale(1.035);
        box-shadow: 0 12px 36px rgba(32,201,151,0.12);
    }

.service-icon {
    font-size: 2.7rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon.crm {
        color: #0d6efd;
    }

    .service-icon.erp {
        color: #20c997;
    }

    .service-icon.pos {
        color: #ff9800;
    }

.service-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.7rem;
}

.service-card p {
    color: #444;
    font-size: 1.07rem;
    flex: 1;
}

/* About/Why Us Block */
.about-block {
    padding: 4rem 0 3rem 0;
    background: linear-gradient(120deg, #fff 70%, #e3fcec 100%);
}

    .about-block .block-title {
        color: #20c997;
    }

.about-text {
    font-size: 1.15rem;
    color: #333;
    max-width: 700px;
    margin: 1.5rem auto 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .service-card {
        min-height: 280px;
    }

    .about-block, .services-block {
        padding: 2.5rem 0 2rem 0;
    }
}

@media (max-width: 575px) {
    .hero-block {
        padding: 3rem 0 2rem 0;
    }

    .block-title {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 1.2rem 0.7rem;
        min-height: 180px;
    }
}
.clients-block {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.clients-logos {
    gap: 2.5rem;
}
.client-logo {
    max-width: 120px;
    max-height: 60px;
    margin: 1rem;
    filter: grayscale(0.2);
    opacity: 0.8;
    transition: filter 0.2s, opacity 0.2s;
}
.client-logo:hover {
    filter: none;
    opacity: 1;
}
.pricing-block {
    background: #f8fafd;
    padding: 4rem 0 3rem 0;
}
.pricing-card {
    background: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 4px 24px rgba(0,51,102,0.07);
    padding: 2.2rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
    margin: 0 auto;
    max-width: 380px;
}
.special-offer {
    border: 2.5px solid #20c997;
    box-shadow: 0 8px 32px #20c99722;
}
.pricing-badge {
    background: #20c997;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem;
    padding: 0.4rem 1.4rem;
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    box-shadow: 0 2px 12px #20c99722;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003366;
    margin: 2.2rem 0 1.2rem 0;
}
.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 1.2rem;
    margin-right: 0.7rem;
    vertical-align: middle;
}
.new-price {
    color: #20c997;
    font-size: 2.2rem;
    font-weight: 900;
    margin-right: 0.4rem;
}
.currency {
    font-size: 1.1rem;
    color: #003366;
    margin-right: 0.4rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem 0;
    color: #003366;
    font-size: 1.08rem;
    text-align: right;
}
.pricing-features li {
    margin-bottom: 0.7rem;
    font-weight: 600;
    position: relative;
    padding-right: 1.6rem;
}
.pricing-features li:before {
    content: "✔";
    color: #20c997;
    font-size: 1.1rem;
    position: absolute;
    right: 0;
    top: 0.1rem;
}
.pricing-note {
    font-size: 1.1rem;
    color: #20c997;
    font-weight: 700;
}
.contact-form .form-control {
    border-radius: 0.7rem;
    border: 1.5px solid #e3eafc;
    background: #f8fafc;
    font-size: 1.07rem;
    margin-bottom: 0.7rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px #0d6efd22;
    background: #fff;
}
.btn-success {
    background: #20c997;
    border: none;
    color: #fff;
}
.btn-success:hover {
    background: #17a085;
}
@media (max-width: 991px) {
    .clients-block, .pricing-block { padding: 2.5rem 0 2rem 0; }
}
@media (max-width: 575px) {
    .client-logo { max-width: 80px; max-height: 36px; }
    .pricing-card { padding: 1.2rem 0.7rem; }
}
.clients-block {
    background: #fff;
    padding: 4rem 0 3rem 0;
}

.clients-logos {
    gap: 2.5rem;
}

.client-logo {
    max-width: 120px;
    max-height: 60px;
    margin: 1rem;
    filter: grayscale(0.2);
    opacity: 0.8;
    transition: filter 0.2s, opacity 0.2s;
}

    .client-logo:hover {
        filter: none;
        opacity: 1;
    }

.pricing-block {
    background: #f8fafd;
    padding: 4rem 0 3rem 0;
}

.pricing-card {
    background: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 4px 24px rgba(0,51,102,0.07);
    padding: 2.2rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
    margin: 0 auto;
    max-width: 380px;
}

.special-offer {
    border: 2.5px solid #20c997;
    box-shadow: 0 8px 32px #20c99722;
}

.pricing-badge {
    background: #20c997;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem;
    padding: 0.4rem 1.4rem;
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    box-shadow: 0 2px 12px #20c99722;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003366;
    margin: 2.2rem 0 1.2rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 1.2rem;
    margin-right: 0.7rem;
    vertical-align: middle;
}

.new-price {
    color: #20c997;
    font-size: 2.2rem;
    font-weight: 900;
    margin-right: 0.4rem;
}

.currency {
    font-size: 1.1rem;
    color: #003366;
    margin-right: 0.4rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem 0;
    color: #003366;
    font-size: 1.08rem;
    text-align: right;
}

    .pricing-features li {
        margin-bottom: 0.7rem;
        font-weight: 600;
        position: relative;
        padding-right: 1.6rem;
    }

        .pricing-features li:before {
            content: "✔";
            color: #20c997;
            font-size: 1.1rem;
            position: absolute;
            right: 0;
            top: 0.1rem;
        }

.pricing-note {
    font-size: 1.1rem;
    color: #20c997;
    font-weight: 700;
}

.contact-form .form-control {
    border-radius: 0.7rem;
    border: 1.5px solid #e3eafc;
    background: #f8fafc;
    font-size: 1.07rem;
    margin-bottom: 0.7rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .contact-form .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 2px #0d6efd22;
        background: #fff;
    }

.btn-success {
    background: #20c997;
    border: none;
    color: #fff;
}

    .btn-success:hover {
        background: #17a085;
    }

@media (max-width: 991px) {
    .clients-block, .pricing-block {
        padding: 2.5rem 0 2rem 0;
    }
}

@media (max-width: 575px) {
    .client-logo {
        max-width: 80px;
        max-height: 36px;
    }

    .pricing-card {
        padding: 1.2rem 0.7rem;
    }
}
.contact-block {
    background: linear-gradient(120deg, #e3fcec 60%, #f8fafd 100%);
    padding: 5rem 0 4rem 0;
}

.contact-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 40px #20c99722;
    max-width: 540px;
    margin: 0 auto;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
    animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #20c997 60%, #0d6efd 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 24px #20c99733;
}

.contact-form {
    margin-top: 2rem;
}

.contact-input {
    border-radius: 0.7rem;
    border: 1.5px solid #e3eafc;
    background: #f8fafc;
    font-size: 1.07rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 0.8rem 1rem;
    margin-bottom: 0.2rem;
}

    .contact-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 2px #0d6efd22;
        background: #fff;
        outline: none;
    }

.contact-btn {
    border-radius: 2rem;
    padding: 0.7rem 2.2rem;
    font-size: 1.13rem;
    font-weight: 600;
    box-shadow: 0 2px 12px #20c99722;
    transition: background 0.2s, box-shadow 0.2s;
}

    .contact-btn:hover {
        background: #0d6efd;
        color: #fff;
        box-shadow: 0 6px 24px #0d6efd33;
    }

.contact-footer {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.contact-mail-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.18s;
}

    .contact-mail-link:hover {
        color: #20c997;
    }

@media (max-width: 991px) {
    .contact-card {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
}

@media (max-width: 575px) {
    .contact-card {
        padding: 1rem 0.2rem 0.7rem 0.2rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}
.pricing-block {
    background: linear-gradient(120deg, #f8fafd 60%, #e3fcec 100%);
    padding: 5rem 0 4rem 0;
}

.single-pricing-card {
    background: #fff;
    border-radius: 1.7rem;
    box-shadow: 0 8px 40px #20c99722;
    max-width: 410px;
    margin: 0 auto;
    padding: 2.7rem 2rem 2.5rem 2rem;
    text-align: center;
    position: relative;
    animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
    border: 2.5px solid #20c997;
}

.pricing-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #20c997 60%, #0d6efd 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin: 0 auto 1.1rem auto;
    box-shadow: 0 4px 24px #20c99733;
}

.pricing-badge {
    background: #20c997;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem;
    padding: 0.4rem 1.4rem;
    position: absolute;
    top: -1.1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    box-shadow: 0 2px 12px #20c99722;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 1.2rem;
    margin-top: 0.7rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003366;
    margin: 0.7rem 0 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 1.2rem;
    margin-right: 0.6rem;
    vertical-align: middle;
}

.new-price {
    color: #20c997;
    font-size: 2.2rem;
    font-weight: 900;
    margin-right: 0.2rem;
}

.currency {
    font-size: 1.1rem;
    color: #003366;
    margin-right: 0.2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem 0;
    color: #003366;
    font-size: 1.08rem;
    text-align: right;
}

    .pricing-features li {
        margin-bottom: 0.7rem;
        font-weight: 600;
        position: relative;
        padding-right: 1.6rem;
    }

        .pricing-features li:before {
            content: "✔";
            color: #20c997;
            font-size: 1.1rem;
            position: absolute;
            right: 0;
            top: 0.1rem;
        }

.pricing-btn {
    border-radius: 2rem;
    padding: 0.7rem 2.2rem;
    font-size: 1.13rem;
    font-weight: 600;
    box-shadow: 0 2px 12px #20c99722;
    transition: background 0.2s, box-shadow 0.2s;
}

    .pricing-btn:hover {
        background: #0d6efd;
        color: #fff;
        box-shadow: 0 6px 24px #0d6efd33;
    }

.pricing-note {
    font-size: 1.1rem;
    color: #20c997;
    font-weight: 700;
    margin-top: 1.3rem;
}

@media (max-width: 575px) {
    .single-pricing-card {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }

    .pricing-title {
        font-size: 1.1rem;
    }

    .pricing-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}
.pricing-block {
    background: linear-gradient(120deg, #f8fafd 60%, #e3fcec 100%);
    padding: 5rem 0 4rem 0;
}

.pricing-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 40px #0d6efd13;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.22s, box-shadow 0.22s;
    border: 2px solid #e3eafc;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .pricing-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 12px 36px #0d6efd22;
        border-color: #20c997;
    }

    .pricing-card .pricing-icon {
        width: 62px;
        height: 62px;
        background: #e3eafc;
        color: #0d6efd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 1.1rem auto;
        box-shadow: 0 2px 12px #0d6efd11;
    }

    .pricing-card.featured {
        border: 2.5px solid #20c997;
        box-shadow: 0 8px 40px #20c99722;
        z-index: 2;
    }

    .pricing-card .pricing-icon.featured {
        background: linear-gradient(135deg, #20c997 60%, #0d6efd 100%);
        color: #fff;
    }

.pricing-badge {
    background: #20c997;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem;
    padding: 0.4rem 1.4rem;
    position: absolute;
    top: -1.1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    box-shadow: 0 2px 12px #20c99722;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 1.2rem;
    margin-top: 0.7rem;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #003366;
    margin: 0.7rem 0 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.new-price {
    color: #20c997;
    font-size: 2rem;
    font-weight: 900;
    margin-right: 0.2rem;
}

.currency {
    font-size: 1.1rem;
    color: #003366;
    margin-right: 0.2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem 0;
    color: #003366;
    font-size: 1.08rem;
    text-align: right;
    width: 100%;
}

    .pricing-features li {
        margin-bottom: 0.7rem;
        font-weight: 600;
        position: relative;
        padding-right: 1.6rem;
    }

        .pricing-features li:before {
            content: "✔";
            color: #20c997;
            font-size: 1.1rem;
            position: absolute;
            right: 0;
            top: 0.1rem;
        }

.pricing-btn {
    border-radius: 2rem;
    padding: 0.7rem 2.2rem;
    font-size: 1.13rem;
    font-weight: 600;
    box-shadow: 0 2px 12px #20c99722;
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: auto;
}

    .pricing-btn:hover {
        background: #0d6efd;
        color: #fff;
        box-shadow: 0 6px 24px #0d6efd33;
    }

.pricing-card.featured .pricing-btn {
    background: #20c997;
    color: #fff;
    border: none;
}

    .pricing-card.featured .pricing-btn:hover {
        background: #0d6efd;
    }

.pricing-note {
    font-size: 1.1rem;
    color: #20c997;
    font-weight: 700;
    margin-top: 1.3rem;
}

@media (max-width: 991px) {
    .pricing-card {
        min-height: 0;
    }
}

@media (max-width: 575px) {
    .pricing-card {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }

    .pricing-title {
        font-size: 1.1rem;
    }
}
.clients-block {
    background: linear-gradient(120deg, #fff 70%, #e3fcec 100%);
    padding: 4rem 0 3rem 0;
}

.clients-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.client-logo-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px #20c99711;
    padding: 1.3rem 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.18s, transform 0.18s;
    min-width: 120px;
    min-height: 80px;
}

    .client-logo-card:hover {
        box-shadow: 0 8px 32px #0d6efd22;
        transform: translateY(-8px) scale(1.05);
        background: #e3eafc;
    }

.client-logo-img {
    max-width: 110px;
    max-height: 54px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.98);
    opacity: 0.85;
    transition: filter 0.2s, opacity 0.2s;
}

.client-logo-card:hover .client-logo-img {
    filter: none;
    opacity: 1;
}

@media (max-width: 991px) {
    .clients-logos-row {
        gap: 1.2rem;
    }

    .client-logo-card {
        padding: 0.7rem 1.2rem;
        min-width: 80px;
        min-height: 50px;
    }

    .client-logo-img {
        max-width: 70px;
        max-height: 32px;
    }
}
.about-block {
    padding: 4rem 0 3rem 0;
    background: linear-gradient(120deg, #fff 70%, #e3fcec 100%);
}

.block-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #20c997;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.15rem;
    color: #333;
    max-width: 700px;
    margin: 1.5rem auto 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.about-features-row {
    margin-top: 2.5rem;
}

.about-feature-card {
    background: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 4px 24px #0d6efd13;
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem;
}

    .about-feature-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 8px 32px #20c99722;
    }

.about-feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px #20c99722;
}

.about-feature-card h5 {
    font-size: 1.13rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.7rem;
}

.about-feature-card p {
    color: #444;
    font-size: 1.02rem;
    flex: 1;
}

@media (max-width: 991px) {
    .about-feature-card {
        min-height: 0;
    }
}

@media (max-width: 575px) {
    .about-feature-card {
        padding: 1.2rem 0.7rem;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
.service-card-modern {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 40px #0d6efd13;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: transform 0.22s, box-shadow 0.22s;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #e3eafc;
}

    .service-card-modern:hover {
        transform: translateY(-10px) scale(1.045);
        box-shadow: 0 12px 36px #20c99722;
        border-color: #20c997;
    }

.service-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto 1.1rem auto;
    box-shadow: 0 4px 24px #0d6efd22;
    transition: background 0.2s, color 0.2s;
}

.bg-primary {
    background: #0d6efd;
}

.bg-success {
    background: #20c997;
}

.bg-info {
    background: #17a2b8;
}

.service-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.7rem;
    margin-top: 0.3rem;
}

.service-desc {
    color: #444;
    font-size: 1.07rem;
    flex: 1;
}

@media (max-width: 991px) {
    .service-card-modern {
        min-height: 0;
    }

    .service-icon-circle {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .service-card-modern {
        padding: 1.2rem 0.7rem;
    }

    .service-title {
        font-size: 1rem;
    }
}
.hero-block {
    position: relative;
    background: linear-gradient(120deg, #0d6efd 0%, #20c997 100%);
    color: #fff;
    padding: 5.5rem 0 4rem 0;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-height: 400px;
}

.hero-content {
    flex: 1;
    min-width: 0;
    text-align: start;
    max-width: 520px;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1.3rem;
    line-height: 1.18;
    text-shadow: 0 4px 24px rgba(0,0,0,0.06);
    color: #fff;
}

.hero-lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: #e0f7fa;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 430px;
}

.hero-cta {
    font-size: 1.18rem;
    padding: 0.85rem 2.5rem;
    border-radius: 2rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(13,110,253,0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
    position: relative;
    z-index: 2;
}

    .hero-cta.pulse {
        animation: pulseBtn 1.3s infinite alternate;
    }

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 #20c99744;
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 8px #20c99722;
        transform: scale(1.04);
    }
}

.hero-cta:hover {
    background: #20c997;
    color: #fff;
    box-shadow: 0 8px 32px rgba(32,201,151,0.18);
    transform: scale(1.06);
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-visual img {
        width: 100%;
        height: auto;
        border-radius: 1.5rem;
     
        opacity: 0.98;
        animation: fadeIn 1.5s cubic-bezier(.4,0,.2,1);
    }

.hero-shape {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: url('/images/wave-shape.svg') no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
}


@media (max-width: 991px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2.2rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero-block {
        padding: 3rem 0 2rem 0;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-visual img {
        max-width: 220px;
    }
}
