/*
 * Page     : About Us
 * File     : css/desktop/pages/pageabout.css
 * Loaded by: page-about-us.php (mobile + desktop)
 */

/* ── Section backgrounds ────────────────── */
.orange-section-bg { background: #fbf9fa; }

/* ══════════════════════════════════════════
   WHO WE ARE
   ══════════════════════════════════════════ */
.who-we-are-section {
    padding: 30px 20px;
    background: #ffffff;
}

.who-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-image-wrap { position: relative; }

.who-image-border {
    position: absolute;
    top: -24px; left: -24px;
    width: 100%; height: 100%;
    border: 4px solid rgba(255,153,51,0.3);
    border-radius: 20px;
    z-index: -1;
}

.who-glow-circle {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 130px; height: 130px;
    background: radial-gradient(circle, #ff9933, #d4af37);
    opacity: 0.25;
    filter: blur(40px);
}

.who-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.who-experience-box {
    position: absolute;
    bottom: -30px; right: -30px;
    background: var(--np-saffron, #F37420);
    color: #fff;
    padding: 24px;
    border-radius: 20px;
    max-width: 220px;
    border: 4px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.who-exp-years {
    font-size: 32px;
    font-weight: bold;
}

.who-exp-text {
    font-size: 14px;
    margin-top: 6px;
}

.who-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #fff3e6;
    border: 1px solid rgba(255,153,51,0.4);
    border-radius: 50px;
    color: #ff9933;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.who-text {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.who-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.who-feature-card {
    background: linear-gradient(135deg, #fff7ed, #fff);
    border-left: 4px solid #ff9933;
    padding: 16px 18px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.who-feature-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--np-text-dark, #3E2723);
}

.who-feature-text {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .who-grid { grid-template-columns: 1fr; }
    .who-main-image { height: 280px; }
    .who-experience-box { bottom: -20px; right: 0; max-width: 160px; padding: 14px; }
    .who-exp-years { font-size: 22px; }
}

/* ══════════════════════════════════════════
   PANDIT QUOTE
   ══════════════════════════════════════════ */
.pandit-quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.pandit-quote-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-left: 8px solid #ff9933;
    position: relative;
    overflow: hidden;
}

.pandit-quote-bg {
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: linear-gradient(135deg, rgba(255,153,51,0.15), transparent);
    border-bottom-left-radius: 100%;
}

.pandit-quote-content {
    position: relative;
    z-index: 1;
}

.pandit-quote-mark {
    font-size: 64px;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 10px;
}

.pandit-quote-sanskrit {
    font-size: 28px;
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
    font-family: 'Noto Sans', sans-serif;
}

.pandit-quote-meaning {
    font-size: 20px;
    color: #800020;
    font-weight: 600;
    margin-bottom: 18px;
}

.pandit-quote-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff9933, #d4af37);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.pandit-quote-text {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .pandit-quote-box { padding: 24px 18px; }
    .pandit-quote-mark { font-size: 44px; }
    .pandit-quote-sanskrit { font-size: 20px; }
    .pandit-quote-meaning { font-size: 16px; }
    .pandit-quote-text { font-size: 15px; }
}
