/* About Page Specific Styles */
.about-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #fdfcfd 0%, #f3e8ff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-story-section {
    padding: 80px 0;
    background: #fff;
}

.founder-journey {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image-container {
    position: relative;
}

.founder-image-container img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #8B5CF6;
    color: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag {
    color: #8B5CF6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}

.about-h2 {
    font-size: 2.8rem;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Reality Grid */
.reality-section {
    padding: 80px 0;
    background: #f9fafb;
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.reality-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.reality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    border-color: #e5e7eb;
}

.reality-card i {
    font-size: 1.5rem;
    color: #ef4444;
    margin-bottom: 20px;
}

.reality-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #111827;
}

.reality-card p {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Education Cards */
.education-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff, #f5f3ff);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.edu-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.edu-card:hover {
    background: #8B5CF6;
    color: #fff;
    transform: scale(1.05);
}

.edu-card i {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #8B5CF6;
}

.edu-card:hover i {
    color: #fff;
}

.edu-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: #111827;
    color: #fff;
    position: relative;
    border-radius: 40px;
    margin: 40px 20px;
    overflow: hidden;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.philosophy-section::before {
    content: '“';
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 10rem;
    color: rgba(139, 92, 246, 0.1);
    font-family: serif;
}

.founder-quote {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
}

.founder-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.founder-sig {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

/* NRI Care Specific */
.nri-care-highlight {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.nri-care-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.nri-care-image img {
    width: 100%;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .founder-journey, .nri-care-highlight {
        grid-template-columns: 1fr;
    }
    .about-h2 {
        font-size: 2rem;
    }
    .philosophy-section {
        margin: 20px 10px;
        padding: 60px 20px;
    }
    .founder-quote {
        font-size: 1.4rem;
    }
}
