* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2c5aa0;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #2c5aa0;
    width: 20px;
}

.contact-info a {
    color: #2c5aa0;
    text-decoration: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background: #1e3f73;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.doctor-main-photo {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #2c5aa0;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-main-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-with-image {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.doctor-about-photo {
    width: 280px;
    height: 350px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #2c5aa0;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-about-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.3);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.skills h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 30px;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.skill {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fbff;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.skill i {
    font-size: 1.5rem;
    color: #2c5aa0;
}

.skill span {
    font-weight: 500;
    color: #333;
}

/* Qualifications Section */
.qualifications {
    padding: 80px 0;
    background: #f8fbff;
}

.qualifications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2c5aa0;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #2c5aa0;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #2c5aa0;
}

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    font-size: 1rem;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: #fff;
}

.experience h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.experience-card {
    background: #f8fbff;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid #2c5aa0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.15);
}

.experience-card h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.experience-card .company {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.experience-card .duration {
    color: #666;
    font-size: 0.95rem;
}

/* Research Section */
.research {
    padding: 80px 0;
    background: #f8fbff;
}

.research h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

.research-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.publications h3,
.activities h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.publication-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #2c5aa0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.publication-item h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.publication-item p {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.activities ul {
    list-style: none;
}

.activities li {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Appointment Section */
.appointment {
    padding: 80px 0;
    background: #fff;
}
/* Empowerment Section */
.empowerment {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ed 100%);
    padding: 80px 0;
}

.empowerment-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.empowerment-images {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.empowerment-photo {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.empowerment-photo:hover {
    transform: scale(1.05);
}

.ribbon-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(194, 59, 109, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.empowerment-text {
    flex: 1 1 auto;
    max-width: 500px;
}

.empowerment-text h2 {
    font-size: 2.5rem;
    color: #c23b6d;
    font-weight: 600;
    line-height: 1.3;
}

.appointment h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.appointment-info h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.appointment-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fbff;
    border-radius: 8px;
}

.contact-item i {
    color: #2c5aa0;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: #333;
    font-weight: 500;
}

.appointment-form {
    background: #f8fbff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section i {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
}

/* Google AdSense Styling */
.adsense-container {
    background: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    margin-top: 0;
}

.adsense-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.adsense-wrapper::before {
    content: "Advertisement";
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* AdSense responsive styling */
.adsbygoogle {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .doctor-main-photo {
        width: 250px;
        height: 250px;
    }
    
    .about-text-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .empowerment-content {
        flex-direction: column;
        gap: 30px;
    }

    .empowerment-images {
        gap: 20px;
        flex-direction: column;
    }

    .empowerment-photo {
        width: 200px;
        height: 240px;
    }

    .ribbon-img {
        width: 150px;
    }

    .empowerment-text {
        text-align: center;
    }

    .empowerment-text h2 {
        font-size: 1.8rem;
    }

    .doctor-about-photo {
        width: 250px;
        height: 300px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .research-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 5px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .adsense-container {
        padding: 15px 0;
    }
    
    .adsense-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .appointment-form {
        padding: 25px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}