.products-section {
    position: relative;
    overflow: hidden;
    background: #060e1a;
}

.products-section .grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 60px 60px;
}

.products-section .blur-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.products-section .blur-blue {
    top: 0;
    left: 20%;
    background: rgba(37, 99, 235, 0.15);
}

.products-section .blur-green {
    bottom: 0;
    right: 20%;
    background: rgba(16, 185, 129, 0.15);
}

.products-section .container {
    position: relative;
    z-index: 2;
}

/* HEADER */
.products-section .section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.products-section .span-badge {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.products-section .heading {
    color: var(--white);
}

.products-section .heading span {
    background: linear-gradient(to right, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-section .features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.products-section .feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-section .feature span {
    font-size: 14px;
    color: #9ca3af;
}

.products-section .feature svg {
    color: var(--primary-color);
    width: 16px;
    height: 16px;
}

/* CARDS */
.products-section .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.products-section .card {
    background: #0d1b2e;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.products-section .card:hover {
    background: #112338;
}

.products-section .card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.products-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.5s;
}

.products-section .card:hover img {
    transform: scale(1.08);
}

.products-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, #0d1b2e);
}

.products-section .tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.products-section .icon-box {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.products-section .icon-box i {
    width: 20px;
    height: 20px;
}

.products-section .card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.products-section .card-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.products-section .card-title {
    color: var(--white);
    margin-bottom: 14px;
}

.products-section .card-text {
    color: #9ca3af;
    margin-bottom: 24px;
}

.products-section .list {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.products-section .list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--para-white);
    font-size: 14px;
}

.products-section .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.products-section .stats {
    display: flex;
    gap: 15px;
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 22px;
}

.products-section .stat {
    flex: 1;
    text-align: center;
}

.products-section .stat h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 700;
}

.products-section .stat p {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

.products-section .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: none;
    border-radius: 14px;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.products-section .btn:hover {
    opacity: 0.9;
}

.products-section .btn i {
    width: 16px;
    height: 16px;
    transition: 0.3s;
}

.products-section .btn:hover i {
    transform: translateX(4px);
}

/* COLORS */
.products-section .blue {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

.products-section .blue .tag {
    background: #2563eb;
}

.products-section .blue .icon-box {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-color);
}

.products-section .blue .card-subtitle,
.products-section .blue .stat h4 {
    color: var(--primary-color);
}

.products-section .blue .dot {
    background: linear-gradient(to right, #2563eb, #06b6d4);
}

.products-section .blue .stats {
    background: rgba(37, 99, 235, 0.1);
}

.products-section .blue .btn {
    background: linear-gradient(to right, #2563eb, #06b6d4);
}

/* GREEN */
.products-section .green {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

.products-section .green .tag {
    background: #10b981;
}

.products-section .green .icon-box {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.products-section .green .card-subtitle,
.products-section .green .stat h4 {
    color: #34d399;
}

.products-section .green .dot {
    background: linear-gradient(to right, #10b981, #14b8a6);
}

.products-section .green .stats {
    background: rgba(16, 185, 129, 0.1);
}

.products-section .green .btn {
    background: linear-gradient(to right, #10b981, #14b8a6);
}

/* ORANGE */
.products-section .orange {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.15);
}

.products-section .orange .tag {
    background: #f97316;
}

.products-section .orange .icon-box {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.products-section .orange .card-subtitle,
.products-section .orange .stat h4 {
    color: #fb923c;
}

.products-section .orange .dot {
    background: linear-gradient(to right, #f97316, #fbbf24);
}

.products-section .orange .stats {
    background: rgba(249, 115, 22, 0.1);
}

.products-section .orange .btn {
    background: linear-gradient(to right, #f97316, #fbbf24);
}

/* FOOTER */
.products-section .bottom {
    margin-top: 70px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.products-section .bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.products-section .bottom p a {
    color: var(--primary-color);
    font-weight: 600;
}

.products-section .outline-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    transition: 0.3s;
}

.products-section .outline-btn i {
    width: 14px;
    height: 14px;
}

.products-section .outline-btn:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

/* RESPONSIVE */

@media(max-width:991px) {
    .products-section .cards {
        grid-template-columns: 1fr;
    }

}


@media(max-width:567px) {

    .products-section .section-top {
        margin-bottom: 50px;
    }

    .products-section .features {
        gap: 15px;
    }
}