/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    transition: color 0.3s;
}

nav.scrolled .logo {
    color: #1f2937;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
    font-weight: 500;
}

nav.scrolled .nav-links a {
    color: #4b5563;
}

.nav-links a:hover {
    color: #ec4899;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s;
}

nav.scrolled .mobile-toggle span {
    background: #1f2937;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #ec4899 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(60px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: #ec4899;
    top: 10%;
    right: 5%;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: 10%;
    left: 5%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
}

.badge {
    display: inline-block;
    margin-top: 5.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 2rem;
    color: #dbeafe;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #e0e7ff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ec4899;
    color: white;
}

.btn-primary:hover {
    background: #db2777;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background: #3b82f6;
    color: white;
}

.btn-secondary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.scroll-indicator {
    margin-top: 3rem;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: linear-gradient(135deg, #eff6ff 0%, #fce7f3 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #3b82f6);
    margin: 0 auto 1rem;
}

.divider.light {
    background: linear-gradient(90deg, #fda4af, #93c5fd);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: #dbeafe;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card.pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.value-card.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.value-card.purple {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
}

/* Qualifications Section */
.qual-section {
    margin-bottom: 3rem;
}

.qual-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.qual-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.qual-icon.blue {
    background: #3b82f6;
}

.qual-icon.pink {
    background: #ec4899;
}

.qual-icon.purple {
    background: #8b5cf6;
}

.qual-header h3 {
    font-size: 1.8rem;
    color: #1f2937;
}

.qual-list {
    display: grid;
    gap: 1.5rem;
}

.qual-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s;
}

.qual-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.qual-card h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.qual-card .institute {
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.qual-card .year {
    color: #9ca3af;
    font-size: 0.95rem;
}

.qual-card .description {
    color: #6b7280;
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cert-item {
    color: #4b5563;
    padding: 0.5rem 0;
}

/* Clinics Section */
.clinics-list {
    display: grid;
    gap: 2rem;
}

.clinic-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.clinic-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.clinic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinic-content {
    padding: 2rem;
}

.clinic-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.clinic-content h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.clinic-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item p, .info-item a {
    color: #4b5563;
    font-size: 0.95rem;
}

.info-item a {
    color: #ec4899;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Portfolio Section */
.achievements-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.achievement-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.achievement-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.achievement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.achievement-header h3 {
    color: #1f2937;
}

.achievement-header .year {
    color: #3b82f6;
    font-weight: 600;
}

.achievement-content p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.impact-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
    border-radius: 10px;
    font-size: 0.9rem;
}

.publications {
    margin-bottom: 3rem;
}

.publications h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.publication-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #3b82f6;
    transition: all 0.3s;
}

.publication-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.pub-year {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.publication-card h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.pub-journal {
    color: #3b82f6;
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
}

.stat-card.pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.stat-card.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.stat-card.purple {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
}

.stat-card.indigo {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card.pink .stat-number {
    color: #be185d;
}

.stat-card.blue .stat-number {
    color: #1e40af;
}

.stat-card.purple .stat-number {
    color: #6b21a8;
}

.stat-card.indigo .stat-number {
    color: #3730a3;
}

.stat-label {
    color: #4b5563;
}

/* Contact Section */
.section-contact {
    background: linear-gradient(135deg, #1e3a8a 0%, #7e22ce 50%, #be185d 100%);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper, .contact-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-wrapper h3, .contact-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    background: rgba(255, 255, 255, 0.25);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ec4899, #3b82f6);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
    width: 100%;
    background: #25d366;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.contact-box p {
    color: #dbeafe;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-label {
    color: #bfdbfe;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-detail a {
    color: white;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #ec4899;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: #ec4899;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ec4899;
}

.emergency {
    color: #ec4899 !important;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social p {
    color: #9ca3af;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons a:nth-child(1):hover {
    background: #1877f2;
}

.social-icons a:nth-child(2):hover {
    background: #e4405f;
}

.social-icons a:nth-child(3):hover {
    background: #0a66c2;
}

.social-icons a:nth-child(4):hover {
    background: #1da1f2;
}

.social-icons a:nth-child(5):hover {
    background: #8b5cf6;
}

.copyright {
    text-align: center;
    color: #6b7280;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .clinic-card {
        grid-template-columns: 1fr;
    }

    .publications-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 1rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: #1f2937;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .achievement-card {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
