/* Premium About Page Enhancements */

/* Badges & Accents */
.section-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 1.25rem;
}

.section-tag-badge.center-badge {
    margin: 0 auto 1.25rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(13, 148, 136, 0.6);
}

/* =========================================
   1. Company Overview Section (About Webotrex)
   ========================================= */
.company-overview-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

.overview-content {
    max-width: 620px;
}

.overview-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.overview-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 1.25rem;
}

.overview-text.lead-text {
    font-size: 1.125rem;
    color: var(--slate-800);
}

.overview-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(13, 148, 136, 0.12);
}

.pill-icon {
    width: 17px;
    height: 17px;
    color: var(--brand-primary);
    flex-shrink: 0;
}

/* Visual Showcase Frame */
.overview-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-showcase-frame {
    position: relative;
    width: 100%;
    max-width: 540px;
    border-radius: 1.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}

.visual-glow-backdrop {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, rgba(2, 132, 199, 0.08) 45%, transparent 70%);
    border-radius: 2.25rem;
    z-index: -1;
    filter: blur(25px);
}

.overview-showcase-img {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    display: block;
    object-fit: cover;
}

.floating-metric-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.top-right-card {
    top: -1.25rem;
    right: -1rem;
    animation: floatSlow 5s ease-in-out infinite alternate;
}

.bottom-left-card {
    bottom: -1.25rem;
    left: -1rem;
    animation: floatSlow 5s ease-in-out infinite alternate;
    animation-delay: 2.5s;
}

.metric-icon-wrap {
    width: 32px;
    height: 32px;
    background: rgba(13, 148, 136, 0.12);
    color: var(--brand-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.metric-pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--brand-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.metric-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--slate-400);
}

.metric-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-900);
}

@keyframes floatSlow {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

/* =========================================
   2. Our Mission Section
   ========================================= */
.about-mission-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.mission-hero-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 2rem;
    padding: 3.5rem 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 3.5rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mission-hero-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, rgba(2, 132, 199, 0.1) 40%, transparent 70%);
    pointer-events: none;
}

.mission-quote-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.mission-quote-icon svg {
    width: 100%;
    height: 100%;
}

.mission-statement {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.35;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.mission-statement-sub {
    font-size: 1.1875rem;
    line-height: 1.75;
    color: var(--slate-200);
    margin-bottom: 1rem;
    max-width: 860px;
}

.mission-statement-detail {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--slate-400);
    max-width: 860px;
    margin: 0;
}

.mission-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mission-pillar-card {
    background: white;
    padding: 2.25rem;
    border-radius: 1.5rem;
    border: 2px solid var(--slate-100);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mission-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(13, 148, 136, 0.12);
    border-color: rgba(13, 148, 136, 0.3);
}

.pillar-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-icon-box svg {
    width: 26px;
    height: 26px;
}

.pillar-icon-box.icon-teal {
    background: rgba(13, 148, 136, 0.1);
    color: var(--brand-primary);
}

.pillar-icon-box.icon-blue {
    background: rgba(2, 132, 199, 0.1);
    color: var(--brand-secondary);
}

.pillar-icon-box.icon-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--brand-accent);
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.pillar-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--slate-600);
    margin: 0;
}

/* =========================================
   3. Founded by Srujan Shetty Section
   ========================================= */
.about-founder-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.founder-card-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 2.25rem;
    border: 1px solid var(--slate-200);
    padding: 3.5rem;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.06);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

.founder-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    line-height: 1.2;
    font-family: var(--font-display);
}

.founder-role-tag {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.founder-bio-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 1.25rem;
}

.founder-quote-box {
    position: relative;
    padding: 1.35rem 1.75rem;
    background: white;
    border-radius: 1.15rem;
    border: 1px solid var(--slate-200);
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.quote-accent-bar {
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 4px;
    background: linear-gradient(to bottom, var(--brand-primary), var(--brand-secondary));
    border-radius: 0 4px 4px 0;
}

.founder-quote-box .quote-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--slate-800);
    font-style: italic;
    margin: 0;
}

.founder-journey-pipeline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px dashed var(--slate-300);
    border-radius: 1rem;
    width: fit-content;
    flex-wrap: wrap;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.journey-step .step-num {
    width: 24px;
    height: 24px;
    background: var(--slate-100);
    color: var(--slate-600);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-step .step-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--slate-700);
}

.journey-step.highlight .step-num {
    background: var(--brand-primary);
    color: white;
}

.journey-step.highlight .step-label {
    color: var(--brand-primary);
}

.journey-connector svg {
    width: 18px;
    height: 18px;
    color: var(--slate-400);
}

.founder-image-wrapper {
    position: relative;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
    border: 1px solid var(--slate-200);
}

.founder-visual-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-visual-img:hover {
    transform: scale(1.02);
}

.founder-badge-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.founder-avatar-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-avatar-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.badge-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
}

.badge-sub {
    font-size: 0.75rem;
    color: var(--slate-300);
}

/* =========================================
   Approach & Services Grid Styling
   ========================================= */
.approach-section {
    padding: 5rem 0;
    background: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid var(--slate-100);
    transition: all 0.3s ease;
    position: relative;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.approach-number {
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(5, 150, 105, 0.08);
    line-height: 1;
}

.approach-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.approach-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-600);
}

/* Services Overview Grid Enhancement */
.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-overview-card {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 2px solid var(--slate-100);
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-overview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.service-overview-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--slate-600);
}

/* =========================================
   Responsive Breakpoints
   ========================================= */
@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }

    .mission-pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .founder-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .overview-title {
        font-size: 2.75rem;
    }

    .mission-statement {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 4.5rem;
    }

    .founder-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }

    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .overview-title {
        font-size: 3rem;
    }

    .founder-section-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 767px) {
    .founder-card-container {
        padding: 2rem 1.5rem;
    }

    .mission-hero-banner {
        padding: 2.5rem 1.5rem;
    }

    .mission-statement {
        font-size: 1.5rem;
    }

    .top-right-card, .bottom-left-card {
        display: none;
    }
}