/* Section Why Us Styles */

/* Section Layout */
#why-us {
    position: relative;
    padding-top: 60px;
    /* Reduced specific padding override */
    padding-bottom: 20px;
}

#canvas-container-section-why-us {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.why-us-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Grid Layout */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* Reduced gap */
    width: 100%;
    margin-top: 20px;
    /* Reduced top margin */
}

/* Holographic Card */
.usp-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Glass border */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 24px;
    /* Significantly reduced padding */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    /* Equal heights */
}

/* Hover Effect: Glow & Lift */
.usp-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 210, 255, 0.1);
    /* Subtle blue glow */
}

/* Animated Gradient Border on Hover */
.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    /* Border width */
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.usp-card:hover::before {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    opacity: 1;
}

/* Icons */
.usp-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    /* Reduced */
    font-size: 28px;
    color: var(--neon-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.usp-card:hover .usp-icon-wrapper {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--neon-blue);
    color: #fff;
    transform: rotate(5deg);
}

/* Typography */
.usp-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: 0.5px;
}

.usp-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
    font-weight: 300;
}

.usp-card .highlight {
    color: var(--neon-blue);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .usp-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .usp-card {
        padding: 30px;
    }
}