/* About Page - Page-Specific Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.4), rgba(221, 160, 221, 0.4)), #f8f9fa;
    padding: 140px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-banner img {
    width: 100%;
    height: 60vh;
    object-fit: fill;
    object-position: center;
    display: block;
}

/* Meet Dr. Hope Section */
.meet-doctor {
    padding: 80px 0;
    background: white;
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.doctor-image {
    position: relative;
}

.doctor-image img {
    width: 100%;
    height: 500px;
    object-fit: fill;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.doctor-text h2 {
    color: #ff69b4;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.doctor-text p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.doctor-text .highlight {
    color: #ff69b4;
    font-weight: 600;
}

/* Qualifications Section */
.qualifications {
    background: #f8f9fa;
    padding: 80px 0;
}

.qualifications h2 {
    text-align: center;
    color: #ff69b4;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 300;
}

.qualifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.qualifications-image {
    text-align: center;
}

.qualifications-image img {
    width: 100%;
    height: 500px;
    object-fit: fill;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.qualifications-text p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.qualifications-list {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.qualifications-list h3 {
    color: #ff69b4;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.qualifications-list ul {
    list-style: none;
}

.qualifications-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.qualifications-list li::before {
    content: "✓";
    color: #ff69b4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Bridging Medicine Section */
.bridging-medicine {
    padding: 80px 0;
    background: white;
}

.bridging-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bridging-text h2 {
    color: #ff69b4;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.3;
}

.bridging-text p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.bridging-image img {
    width: 100%;
    height: 450px;
    object-fit: fill;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Professional Registration Section */
.registration {
    background: linear-gradient(135deg, #ff69b4, #dba6db);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.registration h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 300;
}

.registration-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.registration-logo {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.registration-logo:hover {
    transform: translateY(-5px);
}

.registration-logo img {
    height: 80px;
    width: auto;
    object-fit: fill;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .doctor-content,
    .qualifications-content,
    .bridging-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .doctor-text h2,
    .bridging-text h2 {
        font-size: 2rem;
    }

    .registration-logos {
        gap: 30px;
    }
}
