:root {
    /* Color Palette */
    --primary-color: #f77062; /* Soft Coral/Pink */
    --primary-dark: #fe5196;
    --secondary-color: #008080; /* Teal/Medical */
    --accent-color: #f9d423; /* Gold accent */
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-soft: #fef9f9;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-soft);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

/* Utilities */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(247, 112, 98, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(247, 112, 98, 0.15);
    z-index: -1;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title.center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(247, 112, 98, 0.3);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 112, 98, 0.4);
}

.btn.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: var(--shadow-soft);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    position: relative;
    background: radial-gradient(circle at top right, rgba(247, 112, 98, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(0, 128, 128, 0.05), transparent);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
}

.img-wrapper {
    position: relative;
    z-index: 1;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.experience-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.2;
}

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

/* About Section */
.about {
    padding: 8rem 0;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.education-card, .location-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.education-card:hover, .location-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.icon {
    width: 50px;
    height: 50px;
    background: rgba(247, 112, 98, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.details p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Experience Section */
.experience {
    padding: 8rem 0;
    background: var(--white);
}

.hospital-highlight {
    background: var(--bg-soft);
    border-radius: 40px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 4rem;
    box-shadow: var(--shadow-soft);
}

.hosp-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.role {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.duties {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.duties li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.duties i {
    color: var(--secondary-color);
}

.hosp-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.stat h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Services */
.services {
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.service-card.active i {
    color: var(--white);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}


/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 350px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
    z-index: 5;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-overlay.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-links {
    text-align: center;
}

.mobile-links li {
    margin: 2rem 0;
}

.mobile-links a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Contact */
.contact {
    padding: 8rem 0;
}

.contact-methods {
    margin-top: 3rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method i {
    font-size: 2rem;
    color: var(--primary-color);
}

.method-text span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background: #2d3436;
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .grid, .hero-content, .hospital-highlight {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .section-title {
        text-align: center;
    }
}
