

        /* Doctor Profile Section */
        .doctor-profile {
            padding: var(--space-2xl) 0;
            background-color: var(--off-white);
        }

        .doctor-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 992px) {
            .doctor-card {
                flex-direction: row;
            }
        }

        .doctor-image {
            flex: 0 0 40%;
            position: relative;
            overflow: hidden;
            min-height: 500px;
        }

        .doctor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .doctor-card:hover .doctor-image img {
            transform: scale(1.05);
        }

        .doctor-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(15, 61, 46, 0.1), transparent);
            z-index: 1;
        }

        .doctor-info {
            flex: 0 0 60%;
            padding: var(--space-2xl);
        }

        .doctor-credentials {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            background: rgba(63, 167, 150, 0.1);
            color: var(--emerald);
            padding: var(--space-xs) var(--space-md);
            border-radius: 100px;
            font-size: var(--text-sm);
            font-weight: 600;
            margin-bottom: var(--space-lg);
        }

        .doctor-credentials i {
            font-size: var(--text-base);
        }

        .doctor-info h2 {
            margin-bottom: var(--space-lg);
            color: var(--deep-blue);
        }

        .doctor-bio p {
            font-size: var(--text-lg);
            line-height: 1.8;
            color: var(--gray-dark);
            margin-bottom: var(--space-lg);
        }

        /* Methodology Section */
        .methodology {
            padding: var(--space-3xl) 0;
            background-color: var(--beige);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--space-3xl);
        }

        .section-header h2 {
            margin-bottom: var(--space-md);
            color: var(--deep-blue);
        }

        .section-header p {
            font-size: var(--text-xl);
            color: var(--gray-dark);
            line-height: 1.8;
        }

        .methodology-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-xl);
            counter-reset: methodology-counter;
        }

        .methodology-card {
            background: white;
            padding: var(--space-2xl);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-soft);
            position: relative;
            transition: var(--transition-base);
        }

        .methodology-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .methodology-card::before {
            counter-increment: methodology-counter;
            content: counter(methodology-counter);
            position: absolute;
            top: -20px;
            left: -20px;
            width: 60px;
            height: 60px;
            background: var(--primary-teal);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-2xl);
            font-weight: 700;
            font-family: 'Arial', sans-serif;
            box-shadow: var(--shadow-soft);
        }

        .methodology-icon {
            width: 80px;
            height: 80px;
            background: rgba(63, 167, 150, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--emerald);
            font-size: var(--text-3xl);
            margin-bottom: var(--space-lg);
            transition: var(--transition-base);
        }

        .methodology-card:hover .methodology-icon {
            background: var(--emerald);
            color: white;
            transform: rotate(15deg);
        }

        .methodology-card h3 {
            font-size: var(--text-2xl);
            margin-bottom: var(--space-md);
            color: var(--deep-blue);
        }

        .methodology-card p {
            color: var(--gray-dark);
            line-height: 1.8;
        }

        /* Framework Section */
        .framework {
            padding: var(--space-3xl) 0;
            background-color: var(--off-white);
        }

        .framework-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-2xl);
            align-items: center;
        }

        .framework-text {
            padding-right: var(--space-xl);
        }

        .framework-text h2 {
            margin-bottom: var(--space-lg);
        }

        .framework-text p {
            font-size: var(--text-lg);
            line-height: 1.8;
            color: var(--gray-dark);
        }

.framework-visual {
    position: relative;
    min-height: 400px;
    background: url('../images/header/dna.png') center/cover no-repeat;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}



        /* Longevity Section */
        .longevity {
            padding: var(--space-3xl) 0;
            background-color: var(--beige);
        }

        .longevity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-xl);
        }

        .longevity-card {
            background: white;
            padding: var(--space-2xl);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-soft);
            text-align: center;
            transition: var(--transition-base);
        }

        .longevity-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .longevity-icon {
            width: 70px;
            height: 70px;
            background: rgba(63, 167, 150, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--emerald);
            font-size: var(--text-2xl);
            margin: 0 auto var(--space-lg);
            transition: var(--transition-base);
        }

        .longevity-card:hover .longevity-icon {
            background: var(--emerald);
            color: white;
            transform: scale(1.1);
        }

        .longevity-card h3 {
            font-size: var(--text-xl);
            margin-bottom: var(--space-md);
            color: var(--deep-blue);
        }

        /* Community Section */
        .community {
            padding: var(--space-3xl) 0;
            background-color: var(--off-white);
        }

        .community-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .community-content h2 {
            margin-bottom: var(--space-lg);
        }

        .community-content p {
            font-size: var(--text-lg);
            line-height: 1.8;
            color: var(--gray-dark);
        }

        .community-stats {
            display: flex;
            justify-content: center;
            gap: var(--space-2xl);
            margin-top: var(--space-2xl);
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: var(--text-4xl);
            font-weight: 700;
            color: var(--primary-teal);
            line-height: 1;
            margin-bottom: var(--space-xs);
        }

        .stat-label {
            font-size: var(--text-sm);
            color: var(--gray-mid);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Philosophy Section */
        .philosophy {
            padding: var(--space-3xl) 0;
            background-color: var(--beige);
        }

        .philosophy-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-2xl);
            align-items: center;
        }

        .philosophy-text {
            padding-right: var(--space-xl);
        }

        .philosophy-text h2 {
            margin-bottom: var(--space-lg);
        }

        .philosophy-text p {
            font-size: var(--text-lg);
            line-height: 1.8;
            color: var(--gray-dark);
        }

        .philosophy-quote {
            background: white;
            padding: var(--space-2xl);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-soft);
            position: relative;
            border-left: 4px solid var(--emerald);
        }

        .philosophy-quote blockquote {
            font-size: var(--text-xl);
            font-style: italic;
            color: var(--gray-dark);
            line-height: 1.8;
            margin-bottom: var(--space-md);
        }

        .philosophy-quote cite {
            font-weight: 600;
            color: var(--primary-teal);
            font-style: normal;
        }

        .philosophy-quote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 6rem;
            color: rgba(63, 167, 150, 0.1);
            font-family: 'Arial', sans-serif;
            font-weight: 900;
        }

        /* CTA Section */
        .about-cta {
            padding: var(--space-3xl) 0;
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-light) 100%);
            color: white;
            text-align: center;
        }

        .about-cta h2 {
            color: white;
            margin-bottom: var(--space-lg);
        }

        .about-cta p {
            font-size: var(--text-xl);
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto var(--space-xl);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-md) var(--space-xl);
            background: white;
            color: var(--primary-teal);
            text-decoration: none;
            border-radius: var(--border-radius-sm);
            font-weight: 600;
            font-size: var(--text-lg);
            transition: var(--transition-base);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .fade-in-delay-1 {
            animation-delay: 0.2s;
        }

        .fade-in-delay-2 {
            animation-delay: 0.4s;
        }

        .fade-in-delay-3 {
            animation-delay: 0.6s;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            :root {
                --text-5xl: 2.5rem;
                --text-4xl: 2rem;
                --space-3xl: 4rem;
            }
        }

        @media (max-width: 992px) {
            .doctor-card {
                flex-direction: column;
            }
            
            .doctor-image {
                min-height: 400px;
            }
            
            .framework-content,
            .philosophy-content {
                grid-template-columns: 1fr;
            }
            
            .framework-text,
            .philosophy-text {
                padding-right: 0;
                margin-bottom: var(--space-xl);
            }
            
            .community-stats {
                gap: var(--space-xl);
            }
        }

        @media (max-width: 768px) {
            :root {
                --text-5xl: 2rem;
                --text-4xl: 1.75rem;
                --space-3xl: 3rem;
                --space-2xl: 2.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.75rem;
            }
            
            .methodology-grid,
            .longevity-grid {
                grid-template-columns: 1fr;
            }
            
            .doctor-info {
                padding: var(--space-xl);
            }
            
            .community-stats {
                flex-direction: column;
                gap: var(--space-lg);
            }
        }

        @media (max-width: 576px) {
            :root {
                --text-lg: 1rem;
                --text-xl: 1.125rem;
                --space-lg: 1.5rem;
            }
            
            .about-hero h1 {
                font-size: var(--text-4xl);
            }
            
            .about-hero-description {
                font-size: var(--text-lg);
            }
            
            .methodology-card,
            .longevity-card {
                padding: var(--space-xl);
            }
        }
        
 
    .about-img {
    background-image:
        linear-gradient(
            100deg,
            rgba(15, 61, 46, 0.75),
            rgba(15, 61, 46, 0.65),
            rgba(15, 61, 46, 0.35)
        ),
        url('images/header/pricing2.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 📱 Mobile Screen */
@media (max-width: 768px) {
    .about-img {
        background-image:
            linear-gradient(
                100deg,
                rgba(15, 61, 46, 0.85),
                rgba(15, 61, 46, 0.75),
                rgba(15, 61, 46, 0.45)
            ),
            url('images/mrkhan0.webp');
    }
}

