/* ===================================
   About Section - Premium Dark Institutional
   =================================== */

.about-section {
    background-color: #050b18; /* Match your Hero Deep Navy */
    padding: 120px 0;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

/* Background Decoration */
.about-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-grid-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Text Side Styling */
.about-text-content h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4A90E2;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Feature Grid (Bento Style) */
.trust-indicators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #4A90E2;
    transform: translateY(-10px);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #4A90E2;
    transform: scaleX(0);
    transition: 0.4s ease;
    transform-origin: left;
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.trust-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-text-content { text-align: center; }
}