/* ===================================================
   ABOUT US PAGE LAYOUT CORE STYLING
=================================================== */
.about-page-wrapper {
    background-color: #f8fafc; /* Fine smooth corporate light canvas background */
    padding-top: 100px;         /* SAFE MARGIN: Anti-overlap blocker underneath header */
    font-family: 'Inter', sans-serif !important;
}

/* Hero Heading Layout styles */
.about-hero-section {
    padding: 60px 24px;
    background: radial-gradient(circle at 15% 15%, #f0f9ff 0%, #ffffff 70%);
}

.about-main-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-main-title span {
    color: #0ea5e9;
}

.about-sub-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    max-width: 720px;
    margin-top: 15px;
}

/* ===================================================
   MULTI SECTOR CHIPS / TILES MATRIX
=================================================== */
.about-section-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}

.about-section-subtitle {
    font-size: 15px;
    margin-top: 4px;
}

.about-sector-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-icon {
    font-size: 26px;
    margin-bottom: 20px;
}

.about-sector-card h5 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.about-sector-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Interactive Card Scale Effect on Hover */
.about-sector-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.04);
    transform: translateY(-4px);
}

/* ===================================================
   PREMIUM RESELLER METRICS GRAPHIC BLOCK
=================================================== */
.about-earning-banner {
    background-color: #ffffff;
}

.earning-glass-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.earning-title {
    font-family: 'Outfit', sans-serif !important;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.earning-amount {
    font-family: 'Outfit', sans-serif !important;
    color: #f59e0b; /* Golden neon text representation for maximum focus */
    font-size: 24px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 15px;
}

.earning-desc {
    color: #94a3b8;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Vyapar Style Action Buttons Core layout */
.about-cta-red {
    background-color: #e11d48;
    color: #ffffff !important;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
    transition: all 0.25s ease;
}

.about-cta-red:hover {
    background-color: #be123c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.35);
}

/* ===================================================
   REFERRAL AND PRIORITY DEDICATED SUPPORT GRID
=================================================== */
.about-feature-box {
    background-color: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    height: 100%;
    transition: transform 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.border-left-orange { border-left: 5px solid #ea580c; }
.border-left-blue { border-left: 5px solid #0ea5e9; }

.box-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-orange { background-color: #ffedd5; color: #ea580c; }
.icon-blue { background-color: #e0f2fe; color: #0284c7; }

.box-content-reverse {
    display: flex;
    gap: 20px;
}

.about-feature-box h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.about-feature-box p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.about-feature-box:hover {
    transform: translateY(-2px);
}

/* Media Responsive Adaptive Rules */
@media (max-width: 992px) {
    .about-page-wrapper { padding-top: 110px; }
    .about-main-title { font-size: 30px; }
    .earning-glass-box { padding: 30px 25px; }
    .earning-title { font-size: 22px; }
    .earning-amount { font-size: 19px; }
    .box-content-reverse { flex-direction: column; }
    .about-feature-box { flex-direction: column; }
}