.products-showcase {
    overflow: hidden;
}

.tech-card {
    position: relative;
    height: auto;
    min-height: 400px;
    background: #fafafa;
    overflow: hidden;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06), 0 25px 50px rgba(0, 0, 0, .08);
    transition: .4s;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 35px rgba(0, 0, 0, .10),
        0 40px 70px rgba(0, 0, 0, .12);
}

.tech-content {
    position: relative;
    z-index: 2;
    width: 58%;
}

.tech-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 12px;
}

.tech-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #8d8d8d;
    margin-bottom: 35px;
}

.tech-content .page-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: none;
    color: #727272;
    border: none;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    margin-top: 55%;
    padding: 0;
}

.tech-content .page-link:hover {
    gap: 14px;
}

.tech-content .page-link:focus {
    outline: none;
    box-shadow: none;
}

.tech-image {
    position: absolute;
    right: -80px;
    bottom: -2px;
    width: 338px;
    z-index: 1;
    transition: .5s;
    transform: rotateZ(13deg);
}

.tech-card:hover .tech-image {
    transform: translate(-8px, -8px) scale(1.05);
}

/* Decorative Circle */

.tech-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f8f8, #ececec);
    right: -90px;
    bottom: -90px;
    z-index: 0;
}

.description-card {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.description-card::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(9, 87, 99, .05);
    border-radius: 50%;
    top: -150px;
    right: -120px;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(9, 87, 99, .1);
    color: #095763;
    font-weight: 600;
    margin-bottom: 20px;
}

.title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px;
}

.stat-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: #095763;
}

.stat-card:hover h3,
.stat-card:hover p {
    color: #fff;
}

.stat-card h3 {
    font-size: 38px;
    font-weight: 700;
    color: #095763;
    margin-bottom: 8px;
}

.stat-card p {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .description-card {
        padding: 20px;
    }

    .title {
        font-size: 32px;
        text-align: center;
    }

    .description {
        text-align: center;
    }
}