/* ==========================================================================
   1. ABOUT ME HERO GRID (Split Layout inspired by website design website expert designer.jpg)
   ========================================================================== */
.about-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 160px 6% 80px 6%;
}

.about-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-hero-left {
    text-align: left;
    position: relative;
    z-index: 2;
}

.about-hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-hero-left p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Image Container Frame mapped to website design website expert designer.jpg */
.about-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.profile-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 32px;
    padding: 10px;
    background: linear-gradient(145deg, var(--border-purple), rgba(126, 34, 206, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* ==========================================================================
   2. "WHY CHOOSE US" SIX-COLUMN STRUCTURAL GRID
   ========================================================================== */
.why-choose-section {
    padding: 100px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.choose-card {
    background: var(--card-purple);
    border: 2px solid var(--border-purple);
    padding: 40px 30px;
    border-radius: 24px;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.choose-card:hover {
    border-color: var(--accent-neon);
    transform: translateY(-5px);
}

/* Linear connector accent inspired by layout lines in website design website expert designer.jpg */
.card-num-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-line-num {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent-neon);
    font-family: monospace;
}

.card-line {
    height: 1px;
    background: linear-gradient(to right, var(--accent-violet), rgba(0, 0, 0, 0));
    flex-grow: 1;
}

.choose-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-pure);
}

.choose-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   3. METRIC PROGRESS WHEEL & COUNT COMPONENT
   ========================================================================== */
.metrics-wheel-section {
    padding: 100px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.metrics-container {
    background: linear-gradient(145deg, #160d29 0%, #0d061a 100%);
    border: 2px solid var(--border-purple);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Geometric Progress Frame */
.metrics-left-wheel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.radial-progress-box {
    width: 260px;
    height: 260px;
    position: relative;
}

.outer-glow-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--accent-neon) 0%, var(--accent-violet) 75%, var(--border-purple) 75%, var(--border-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}

.inner-dark-circle {
    width: 86%;
    height: 86%;
    background: #090314;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.wheel-big-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1;
}

.wheel-sub-text {
    font-size: 0.8rem;
    color: var(--accent-neon);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Numeric Side Panel Stack */
.metrics-right-stats {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.stat-counter-block {
    border-left: 3px solid var(--border-purple);
    padding-left: 25px;
    transition: 0.3s;
}

.stat-counter-block:hover {
    border-left-color: var(--accent-neon);
}

.stat-counter-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-counter-block p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================================
   4. ADAPTIVE VIEWPORT MEDIA INQUIRIES
   ========================================================================== */
@media (max-width: 1024px) {
    .about-hero-wrapper { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .about-hero-left { text-align: center; }
    .about-hero-left h1 { font-size: 2.8rem; }
    .about-hero-right { order: -1; } /* Puts your profile layout on top for crisp mobile tracking */
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .metrics-container { grid-template-columns: 1fr; gap: 50px; padding: 40px 30px; }
}

@media (max-width: 768px) {
    .about-hero-left h1 { font-size: 2.3rem; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .radial-progress-box { width: 220px; height: 220px; }
    .wheel-big-number { font-size: 2.6rem; }
    .stat-counter-block h2 { font-size: 2rem; }
}