/* =========================================
   Redesigned Premium About Page
   ========================================= */

:root {
    --primary: #5AAC4E;
    --primary-dark: #2e6b26;
    --secondary: #0D210B;
    --accent: #E8F5E9;
    --text-body: #555555;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* General Resets & Typography */
.about-page-wrapper {
    font-family: var(--font-body);
    color: var(--text-body);
    overflow-x: hidden;
}

.about-page-wrapper h1,
.about-page-wrapper h2,
.about-page-wrapper h3,
.about-page-wrapper h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

/* 1. Modern Hero Section */
/* 1. Services Model Hero Section (Adapted for About Page) */
.new-about-hero {
    background: linear-gradient(135deg, rgba(90, 172, 78, 0.95), rgba(35, 72, 33, 0.95)),
        url('../img/hero/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 100px;
    position: relative;
    overflow: hidden;
}

.new-about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: moveBackground 25s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(60px, 60px) rotate(360deg);
    }
}

.new-about-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, white, transparent);
}

.hero-content-wrapper {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.new-about-hero h1 {
    font-size: 72px;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    letter-spacing: -2px;
}

.new-about-hero .lead-text {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

/* 2. About Content - Split Layout (No changes needed here, keeping previous refined styles) */
.about-split-section {
    padding: 100px 0;
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    padding-right: 30px;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(90, 172, 78, 0.4);
    text-align: center;
}

.experience-badge span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-badge small {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text-content {
    padding-left: 20px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.about-text-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.about-text-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

/* 3. Pulse Diagnosis & Methods - Icon Grid */
.diagnosis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.diagnosis-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.diagnosis-item:hover {
    transform: translateY(-5px);
    background: var(--accent);
}

.diagnosis-item i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}

.diagnosis-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--secondary);
}

/* 4. Founder / Visionary Section */
.founder-section {
    padding: 100px 0;
    background: #f4fdf2;
    position: relative;
    overflow: hidden;
}

.founder-card {
    background: var(--white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 50px;
}

.founder-img {
    flex: 0 0 350px;
    position: relative;
}

.founder-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-info h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.founder-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    display: block;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.achievement-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.achievement-box strong {
    display: block;
    font-size: 24px;
    color: var(--secondary);
}

.achievement-box span {
    font-size: 14px;
    color: #666;
}

/* 5. Therapies - Tag Cloud */
.therapies-section {
    padding: 100px 0;
    text-align: center;
}

.therapies-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.therapy-tag {
    background: var(--white);
    border: 1px solid #eee;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    color: var(--text-body);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.therapy-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(90, 172, 78, 0.3);
    border-color: var(--primary);
}

/* 6. Mission & Vision - Modern Cards */
.mv-section {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
}


.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}


/* 5. Simple Treatment List (Text Based) */
.treatment-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.treatment-item-row {
    display: flex;
    align-items: flex-start;
    background: #fdfdfd;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.treatment-item-row:hover {
    background: #f8fcf8;
    border-color: var(--primary);
    transform: translateX(5px);
}

.t-icon {
    flex: 0 0 35px;
    height: 35px;
    color: var(--primary);
    font-size: 18px;
    /* Very small icon */
    background: rgba(90, 172, 78, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 2px;
}

.t-content {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.t-content strong {
    color: var(--secondary);
    font-weight: 600;
    margin-right: 5px;
    display: inline-block;
}

@media (max-width: 768px) {
    .treatment-list-grid {
        grid-template-columns: 1fr;
    }
}


/* 6. Mission & Vision */
.mv-section {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mv-card h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .new-about-hero {
        background-attachment: scroll;
    }

    .new-about-hero h1 {
        font-size: 42px;
    }

    .founder-card {
        flex-direction: column;
        padding: 30px;
    }

    .founder-img {
        width: 100%;
    }

    .about-image-wrapper {
        margin-bottom: 50px;
        padding-right: 0;
    }

    .experience-badge {
        bottom: -20px;
        right: 20px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .diagnosis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .new-about-hero {
        padding: 120px 0 60px;
    }

    .experience-badge {
        padding: 20px;
    }

    .therapies-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}