﻿.custom-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .custom-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.statistics-section {
    background: #ffffff;
    padding: 70px 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-card {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .stat-card h2 {
        color: var(--primary-green);
        font-size: 52px;
        margin-bottom: 15px;
    }

    .stat-card span {
        font-size: 17px;
        color: var(--text);
    }
.about-preview {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #eef9f5;
    color: var(--primary-green);
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 17px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}
.products-section {
    background: #f8fbfd;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.product-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: .35s;
    box-shadow: var(--shadow-sm);
}

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-lg);
    }

    .product-card img {
        width: 140px;
        margin: auto;
        margin-bottom: 30px;
    }

    .product-card h3 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .product-card p {
        line-height: 1.8;
        margin-bottom: 30px;
        min-height: 120px;
    }

    .product-card:nth-child(1) {
        border-top: 6px solid var(--primary-green);
    }

    .product-card:nth-child(2) {
        border-top: 6px solid var(--secondary-blue);
    }

    .product-card:nth-child(3) {
        border-top: 6px solid #4F46E5;
    }
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.service-card {
    padding: 40px;
    border-radius: 25px;
    background: white;
    text-align: center;
    transition: .35s;
    box-shadow: var(--shadow-sm);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.service-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--primary-green),var(--secondary-blue));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 34px;
}

.service-card h3 {
    margin-bottom: 20px;
}

.service-card p {
    line-height: 1.8;
}

.services-button {
    text-align: center;
    margin-top: 60px;
}
.workflow-section {
    background: #f8fbfd;
}

.workflow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.workflow-item {
    width: 150px;
    text-align: center;
}

.workflow-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    background: linear-gradient(135deg,var(--primary-green),var(--secondary-blue));
    box-shadow: var(--shadow-sm);
    transition: .3s;
}

    .workflow-circle:hover {
        transform: scale(1.1);
    }

.workflow-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.workflow-item p {
    font-size: 14px;
    line-height: 1.6;
}

.workflow-line {
    width: 45px;
    height: 4px;
    background: var(--primary-green);
    margin-top: 34px;
}
.clients-section {
    background: #fff;
}

.client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.client-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.client-slider:hover .client-track {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 220px;
    height: 120px;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .client-logo:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .client-logo img {
        width: 150px;
        max-height: 120px;
        object-fit: contain;
        transition: .35s;
    }

    .client-logo:hover img {
        transform: scale(1.08);
    }

@keyframes marquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
.testimonials-section {
    background: #f8fbfd;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    text-align: center;
}

    .testimonial-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-lg);
    }

.testimonial-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    margin-bottom: 20px;
}

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-stars {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial-card p {
    line-height: 1.9;
    margin-bottom: 25px;
    min-height: 120px;
}

.testimonial-card h4 {
    margin-bottom: 8px;
}

.testimonial-card span {
    color: var(--primary-green);
    font-weight: 600;
}
/*=========================================
    CTA
==========================================*/

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg,#0A3D62,#00A86B);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -150px;
        right: -120px;
    }

    .cta-section::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        bottom: -120px;
        left: -80px;
    }

.cta-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.cta-content {
    color: white;
}

    .cta-content .section-tag {
        background: rgba(255,255,255,.18);
        color: white;
    }

    .cta-content h2 {
        color: white;
        font-size: 48px;
        margin: 20px 0;
    }

    .cta-content p {
        font-size: 18px;
        line-height: 1.9;
        margin-bottom: 35px;
        color: #f3f3f3;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-outline {
    border: 2px solid white;
    color: white;
}

    .cta-outline:hover {
        background: white;
        color: #0A3D62;
    }

.cta-image {
    text-align: center;
}

    .cta-image img {
        width: 100%;
        max-width: 500px;
        animation: floatImage 6s ease-in-out infinite;
    }