/* About Hero Banner */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    background: 
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("../assets/About\ _Page_Header.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    max-width: 900px;
}

/* Belief & Philosophy Section */
.belief-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Skip rendering of below-fold content until needed. */
.company-overview-section,
.mvq-section,
.business-focus-section {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.belief-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 70px;
    align-items: center;
}

.belief-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.25;
    margin: 0;
}

.belief-title h2 span {
    color: #f59e0b;
    display: block;
}

.belief-content p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 24px;
}

.belief-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .belief-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .belief-title h2 {
        font-size: 2.2rem;
    }
}

.company-overview-section {
    position: relative;
    padding: 120px 0;
    background-color: #f8fafc;
    background-image: url("../assets/World\ Map\ Background.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.relative-z10 {
    position: relative;
    z-index: 10;
}

.overview-grid-v2 {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 60px;
    align-items: center;
}

/* Left Content: Company Profile */
.overview-profile-box {
    position: relative;
    padding-right: 20px;
}

/* Faint Line-Art Map background in left card (~5% opacity green) */
.profile-bg-texture {
    position: absolute;
    top: 10%;
    right: 0;
    width: 90%;
    height: 80%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-bg-texture svg {
    width: 100%;
    height: 100%;
}

.lead-quote {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.7;
    color: #0f172a;
    background: rgba(241, 245, 249, 0.85);
    backdrop-filter: blur(8px);
    border-left: 4px solid #20C997;
    border-radius: 0 18px 18px 0;
    padding: 24px 28px;
    margin-bottom: 32px;
    font-style: italic;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.overview-description {
    position: relative;
    z-index: 2;
    font-size: 1.08rem;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 22px;
}

.overview-description strong {
    color: #0f172a;
    font-weight: 700;
}

/* Key Metrics Bar with Dimensional Gradient Circles */
.overview-metrics-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(32, 201, 151, 0.4);
}

.metric-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.metric-icon.circle-gradient-green {
    background: radial-gradient(circle at 30% 30%, rgba(32, 201, 151, 0.35), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(32, 201, 151, 0.4);
}

.metric-icon.circle-gradient-blue {
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.35), rgba(14, 116, 144, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.metric-item strong {
    display: block;
    font-size: 1.05rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 2px;
}

.metric-item span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* Right Content: Global Hub Card (SaaS Network Style) */
.global-hub-card {
    background: linear-gradient(145deg, #07172c 0%, #0c2547 50%, #113662 100%);
    border-radius: 32px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(7, 23, 44, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(32, 201, 151, 0.2);
    position: relative;
    overflow: hidden;
}

/* Background Constellation Dot-Matrix Texture */
.hub-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.global-hub-card::after {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(32, 201, 151, 0.18) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hub-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hub-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(32, 201, 151, 0.3), rgba(11, 94, 215, 0.2));
    border: 1px solid rgba(32, 201, 151, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(32, 201, 151, 0.2);
}

.hub-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.hub-header span {
    font-size: 0.92rem;
    color: #4FD1C5;
    font-weight: 500;
}

/* Interactive Live Network Map Visual */
.global-network-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 16px 20px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.network-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Animated Radiating Arcs */
.arc-line {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 6 8;
    animation: radar-arc-flow 2.5s linear infinite;
}

.arc-usa { stroke: #4FD1C5; opacity: 0.85; animation-duration: 3s; }
.arc-uae { stroke: #fbbf24; opacity: 0.85; animation-duration: 2s; }
.arc-africa { stroke: #c084fc; opacity: 0.85; animation-duration: 2.5s; }

@keyframes radar-arc-flow {
    0% { stroke-dashoffset: 28; }
    100% { stroke-dashoffset: 0; }
}

/* Radar Ping Nodes & Glowing Dots */
.radar-ping {
    fill: none;
    stroke-width: 1.5;
    opacity: 0;
    transform-origin: center;
}

.ping-usa { stroke: #4FD1C5; animation: radar-ping-anim 3s ease-out infinite 0s; }
.ping-uae { stroke: #fbbf24; animation: radar-ping-anim 3s ease-out infinite 0.7s; }
.ping-india { stroke: #60a5fa; animation: radar-ping-anim 2.5s ease-out infinite 1.2s; }
.ping-india-outer { stroke: #20C997; stroke-width: 1; animation: radar-ping-anim 2.5s ease-out infinite 1.8s; }
.ping-africa { stroke: #c084fc; animation: radar-ping-anim 3s ease-out infinite 1.5s; }

@keyframes radar-ping-anim {
    0% { transform: scale(0.4); opacity: 0.9; }
    70% { transform: scale(1.6); opacity: 0.2; }
    100% { transform: scale(2.2); opacity: 0; }
}

.node-dot { stroke: #ffffff; stroke-width: 1.5; }
.green-dot { fill: #10b981; filter: drop-shadow(0 0 6px #10b981); }
.amber-dot { fill: #f59e0b; filter: drop-shadow(0 0 6px #f59e0b); }
.blue-dot { fill: #3b82f6; filter: drop-shadow(0 0 8px #3b82f6); }
.purple-dot { fill: #a855f7; filter: drop-shadow(0 0 6px #a855f7); }

.node-label {
    font-size: 11px;
    font-weight: 700;
    fill: #e2e8f0;
    text-anchor: middle;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.hq-label {
    fill: #4FD1C5;
    font-size: 12px;
    font-weight: 800;
}

/* Global Footprint Country Cards List */
.hub-locations-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hub-location-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 16px 22px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hub-location-card:hover, .hub-location-card.active-hub:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #20C997;
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hub-location-card.active-hub {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

/* Circular Location Badges matching UI Screenshot */
.location-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

.badge-us { color: #4FD1C5; border-color: rgba(45, 212, 191, 0.4); background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.25), transparent); }
.badge-in { color: #93c5fd; border-color: rgba(59, 130, 246, 0.5); background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent); font-size: 16px; font-weight: 800; }
.badge-ae { color: #fcd34d; border-color: rgba(245, 158, 11, 0.4); background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.25), transparent); }
.badge-af { color: #e9d5ff; border-color: rgba(168, 85, 247, 0.4); background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.25), transparent); font-size: 18px; }

.location-details {
    flex: 1;
}

.location-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.location-details p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin: 0;
}

/* Status Pills */
.location-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.location-tag.head { background: rgba(16, 185, 129, 0.25); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.5); }
.location-tag.hq   { background: rgba(59, 130, 246, 0.3); color: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.6); }
.location-tag.hub  { background: rgba(245, 158, 11, 0.25); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.5); }
.location-tag.dist { background: rgba(168, 85, 247, 0.25); color: #d8b4fe; border: 1px solid rgba(168, 85, 247, 0.5); }

/* Mission Vision Quality Section - Reference Design */
.mvq-section {
    padding: 100px 0 120px;
    background: #f8fafc;
}

.mvq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.mvq-card {
    position: relative;
    background: #ffffff;
    border-radius: 32px 32px 20px 20px;
    padding: 35px 30px 45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin-top: 45px;
    display: flex;
    flex-direction: column;
}

.mvq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Pin / Target Header Graphic */
.card-pin-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -80px;
    margin-bottom: 25px;
}

.pin-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 2;
    position: relative;
    border: 5px solid #ffffff;
}

/* Downward Arrow Pointer */
.pin-arrow {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    margin-top: -6px;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.12));
}

/* Orange Theme - VISION */
.mvq-card.orange .pin-circle { background: linear-gradient(135deg, #ff9f43 0%, #ff5252 100%); }
.mvq-card.orange .pin-arrow  { border-top: 28px solid #ff5252; }
.mvq-card.orange .card-bottom-chevron { background: linear-gradient(135deg, #ff9f43 0%, #ff5252 100%); }

/* Green Theme - MISSION */
.mvq-card.green .pin-circle  { background: linear-gradient(135deg, #20c997 0%, #10b981 100%); }
.mvq-card.green .pin-arrow   { border-top: 28px solid #10b981; }
.mvq-card.green .card-bottom-chevron  { background: linear-gradient(135deg, #20c997 0%, #10b981 100%); }

/* Blue Theme - COMMITMENT TO QUALITY */
.mvq-card.blue .pin-circle   { background: linear-gradient(135deg, #0b5ed7 0%, #2563eb 100%); }
.mvq-card.blue .pin-arrow    { border-top: 28px solid #2563eb; }
.mvq-card.blue .card-bottom-chevron   { background: linear-gradient(135deg, #0b5ed7 0%, #2563eb 100%); }

.mvq-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mvq-card p {
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.mvq-card ul.mvq-highlights {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    text-align: left;
}

.mvq-card ul.mvq-highlights li {
    font-size: 0.95rem;
    color: #334155;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    line-height: 1.6;
}

.mvq-card ul.mvq-highlights li:last-child {
    border-bottom: none;
}

.mvq-card ul.mvq-highlights strong {
    color: #0f172a;
}

/* Bottom Chevron Tail Accent */
.card-bottom-chevron {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 26px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Business Focus Section */
.business-focus-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.business-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.business-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.biz-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.biz-icon.respiratory { background: #e0f2fe; color: #0284c7; }
.biz-icon.diabetic { background: #dcfce7; color: #16a34a; }
.biz-icon.immunity { background: #fef3c7; color: #d97706; }
.biz-icon.wellness { background: #f3e8ff; color: #9333ea; }

.business-card-header h3 {
    font-size: 1.4rem;
    color: #1e293b;
}

.business-card-header span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.product-list {
    list-style: none;
}

.product-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.6;
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list strong {
    color: #0f172a;
}

.product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
    background: #f1f5f9;
    color: #475569;
}

.product-tag.ayush { background: #dcfce7; color: #15803d; }

@media (max-width: 1100px) {
    .overview-grid-v2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .overview-profile-box {
        padding-right: 0;
    }
    .mvq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .business-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .overview-metrics-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .global-hub-card {
        padding: 24px 18px;
    }
    .hub-location-card {
        padding: 14px 16px;
        gap: 12px;
    }
    .location-details h4 {
        font-size: 1rem;
    }
    .location-details p {
        font-size: 0.78rem;
    }
    .location-tag {
        padding: 4px 10px;
        font-size: 10px;
    }
    .about-hero h1 {
        font-size: 2.4rem;
    }
}

/* Respect users who prefer reduced motion. */
@media (prefers-reduced-motion: reduce) {
    .arc-line,
    .radar-ping {
        animation: none;
    }

    .metric-item,
    .mvq-card,
    .hub-location-card {
        transition: none;
    }
}