/* ==================== Products Showcase Section (White / Light Theme) ==================== */
.products-section {
    position: relative;
    background: #f8fafc;
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.products-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 450px;
    background: radial-gradient(ellipse at center, rgba(21, 94, 254, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.products-section .sec-head {
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.products-section .sec-head .sub-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    padding-left: 0;
    margin-bottom: 16px;
}

.products-section .sec-head .sub-title-dots {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    height: 16px;
}

.products-section .sec-head .sub-title-dots span {
    position: static;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #155efe;
}

.products-section .sec-head .sub-title h6 {
    color: #155efe;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 15px;
    letter-spacing: 4px;
    font-weight: 600;
}

.products-section .sec-head .main-title {
    color: #0f172a;
    font-weight: 700;
    line-height: 1;
}

.products-section .sec-head p {
    color: #475569;
    max-width: 680px;
    margin: 15px auto 0;
    font-size: 16px;
    line-height: 1.6;
}

.products-grid {
    position: relative;
    z-index: 1;
}

.product-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.product-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4db, #155efe, #8e2de2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 94, 254, 0.3);
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(21, 94, 254, 0.15) inset;
    background: #ffffff;
}

.product-card:hover .product-card-glow {
    opacity: 1;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.product-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tool-icon {
    background: linear-gradient(135deg, #00b4db, #0083b0);
    color: #ffffff;
}

.seo-icon {
    background: linear-gradient(135deg, #155efe, #00d2ff);
    color: #ffffff;
}

.module-icon {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    color: #ffffff;
}

.product-badge {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-cyan {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.badge-blue {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.badge-purple {
    background: #faf5ff;
    color: #7e22ce;
    border: 1px solid #e9d5ff;
}

.product-body {
    flex-grow: 1;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-title a {
    color: #0f172a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.product-title a:hover {
    color: #155efe;
}

.product-tagline {
    font-size: 12px;
    color: #155efe;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.product-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
}

.product-highlights {
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #334155;
    font-weight: 500;
}

.highlight-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.product-footer {
    margin-top: 8px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.product-btn svg {
    transition: transform 0.3s ease;
    color: #155efe;
}

.product-btn:hover {
    background: #155efe;
    border-color: #155efe;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(21, 94, 254, 0.35);
}

.product-btn:hover svg {
    transform: translate(4px, -4px);
    color: #ffffff;
}

@media (max-width: 991px) {
    .products-section {
        padding: 60px 0;
    }
    .product-card {
        margin-bottom: 30px;
    }
}

/* ==================== Spacing for Upwork Section ==================== */
.upwork-showcase-container {
    margin-top: 75px;
    padding-top: 10px;
}

@media (max-width: 991px) {
    .upwork-showcase-container {
        margin-top: 45px;
    }
}

@media (max-width: 575px) {
    .products-section .sec-head .main-title {
        font-size: 24px;
        line-height: 1.35;
    }
    .product-desc {
        margin-bottom: 14px;
    }
    .product-highlights {
        margin-bottom: 0;
        padding-top: 14px;
        gap: 8px;
    }
    .product-footer {
        margin-top: 0;
    }
}



