/* style.css - Component specific styles */
/* 3. Hero Section (Full Screen) - Animated Slider */
.hero-slider-section {
    position: relative;
    padding-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroFade 15s infinite;
}

.slide-1 { animation-delay: 0s; }
.slide-2 { animation-delay: 5s; }
.slide-3 { animation-delay: 10s; }

@keyframes heroFade {
    0% { opacity: 0; transform: scale(1); z-index: 1; }
    5% { opacity: 1; transform: scale(1.01); z-index: 1; }
    30% { opacity: 1; transform: scale(1.04); z-index: 1; }
    35% { opacity: 0; transform: scale(1.05); z-index: 0; }
    100% { opacity: 0; transform: scale(1.05); z-index: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
}

/* Slide Content Animations */
.hero-slide .hero-content { padding-top: 100px; }
.slide-up-1, .slide-up-2, .slide-up-3, .slide-up-4, .slide-up-5 { opacity: 0; }

@keyframes contentSlideUp {
    0% { opacity: 0; transform: translateY(30px); }
    3% { opacity: 0; transform: translateY(30px); }
    8% { opacity: 1; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(0); }
    35% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 0; transform: translateY(-20px); }
}

.hero-slide .slide-up-1, 
.hero-slide .slide-up-2, 
.hero-slide .slide-up-3,
.hero-slide .slide-up-4,
.hero-slide .slide-up-5 {
    animation: contentSlideUp 15s infinite;
}

.slide-1 .slide-up-1 { animation-delay: 0s; }
.slide-1 .slide-up-2 { animation-delay: 0.2s; }
.slide-1 .slide-up-3 { animation-delay: 0.4s; }
.slide-1 .slide-up-4 { animation-delay: 0.6s; }
.slide-1 .slide-up-5 { animation-delay: 0.8s; }

.slide-2 .slide-up-1 { animation-delay: 5s; }
.slide-2 .slide-up-2 { animation-delay: 5.2s; }
.slide-2 .slide-up-3 { animation-delay: 5.4s; }
.slide-2 .slide-up-4 { animation-delay: 5.6s; }
.slide-2 .slide-up-5 { animation-delay: 5.8s; }

.slide-3 .slide-up-1 { animation-delay: 10s; }
.slide-3 .slide-up-2 { animation-delay: 10.2s; }
.slide-3 .slide-up-3 { animation-delay: 10.4s; }
.slide-3 .slide-up-4 { animation-delay: 10.6s; }
.slide-3 .slide-up-5 { animation-delay: 10.8s; }

.hero-container { 
    position: relative;
    z-index: 2;
    display: block; 
}

.hero-content {
    max-width: 700px;
}

.text-white { color: var(--white) !important; }
.text-light { color: rgba(255, 255, 255, 0.8) !important; }
.text-gradient-light {
    background: linear-gradient(135deg, #67e8f9, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.pill-badge.dark-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(13, 148, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

.hero-text { font-size: 1.25rem; margin-bottom: 40px; color: var(--text-gray); }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 0; }

.hero-stats { display: flex; align-items: center; padding-top: 30px; border-top: 1px solid var(--border-color); }
.hero-stats-dark { border-top: 1px solid rgba(255, 255, 255, 0.2); }

.stat-item { display: flex; align-items: center; gap: 16px; }
.stat-icon { width: 50px; height: 50px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); box-shadow: var(--shadow-sm); }
.hero-stats-dark .stat-icon { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); color: var(--white); }
.stat-text { display: flex; flex-direction: column; }
.stat-text strong { color: var(--text-dark); font-size: 1.1rem; }
.stat-text span { font-size: 0.9rem; color: var(--text-light); }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* 4. Why Choose Us Section */
.why-choose-us {
    background-color: #ffffff;
    padding: 80px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.feature-box {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    text-align: center;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-main);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.feature-box:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}
.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.feature-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* 5. About Preview */
.about-container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-image-wrapper { position: relative; cursor: pointer; }
.doctor-img { border-radius: 30px; box-shadow: var(--shadow-lg); width: 100%; position: relative; z-index: 2; aspect-ratio: 1/1; object-fit: cover; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.decoration-circle { position: absolute; width: 100%; height: 100%; border: 2px dashed var(--primary-color); border-radius: 30px; top: 20px; left: -20px; z-index: 1; transition: all 0.5s ease; }

.about-image-wrapper:hover .doctor-img { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 50px rgba(13, 148, 136, 0.2); }
.about-image-wrapper:hover .decoration-circle { top: 30px; left: -30px; border-color: var(--primary-dark); transform: rotate(-5deg); }

.doctor-highlights { display: flex; flex-direction: column; gap: 16px; }
.dh-item { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 1.1rem; color: var(--text-dark); }
.dh-item svg { color: var(--primary-color); width: 24px; height: 24px; }

/* 6. Pediatric Services (Compact Image Gallery) */
.services-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.svc-gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}
.svc-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.svc-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.4s ease;
}
.svc-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 24px;
    color: var(--white);
    display: flex; flex-direction: column; justify-content: flex-end;
    height: 100%;
    z-index: 2;
}
.svc-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
    transition: all 0.4s ease;
}
.svc-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    transition: transform 0.4s ease;
}
.svc-hidden-text {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.svc-hidden-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.svc-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary-light);
    font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: gap 0.3s ease;
}
.svc-link:hover { gap: 12px; color: var(--white); }

/* Hover Effects */
.svc-gallery-card:hover .svc-bg-img { transform: scale(1.1); }
.svc-gallery-card:hover .svc-overlay { background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(13, 148, 136, 0.85) 60%, rgba(0, 0, 0, 0.3) 100%); }
.svc-gallery-card:hover .svc-icon { background: var(--white); color: var(--primary-color); transform: translateY(-5px); }
.svc-gallery-card:hover .svc-hidden-text { max-height: 150px; opacity: 1; margin-top: 8px; }
.svc-gallery-card:hover h3 { transform: translateY(-3px); }

/* 7. Critical Care & Specialized Services */
.critical-care-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}
.cc-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(8, 51, 68, 0.95), rgba(13, 148, 136, 0.85));
    z-index: 1;
}
.relative-z { position: relative; z-index: 2; }
.text-gradient-light {
    background: linear-gradient(135deg, #a7f3d0, #fef08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cc-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cc-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(13, 148, 136, 0.3);
}
.cc-icon {
    width: 70px; height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--white);
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.2);
}
.cc-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.cc-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    transition: var(--transition);
}
.cc-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
}

@media (max-width: 1024px) {
    .cc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .critical-care-section { padding: 80px 0; background-attachment: scroll; }
    .cc-grid { grid-template-columns: 1fr; }
}

/* 8. Growth Section */
.growth { background: linear-gradient(135deg, var(--bg-main) 0%, var(--secondary-light) 100%); }
.growth-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.modern-list { display: flex; flex-direction: column; gap: 24px; }
.ml-item { display: flex; align-items: flex-start; gap: 20px; background: var(--white); padding: 20px; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.ml-item:hover { transform: translateX(10px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.ml-icon { width: 50px; height: 50px; background: var(--primary-light); color: var(--primary-color); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ml-text h4 { margin-bottom: 4px; }
.ml-text p { margin: 0; font-size: 0.95rem; }

.image-stack { position: relative; }
.main-img { border-radius: 30px; box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.glass-float-card { position: absolute; bottom: -30px; right: -30px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); padding: 24px; border-radius: 24px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 20px; border: 1px solid var(--border-light); animation: float 5s infinite reverse; }
.gfc-icon { width: 50px; height: 50px; background: var(--secondary-light); color: var(--secondary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.gfc-content { display: flex; flex-direction: column; }
.gfc-content strong { font-family: 'Poppins', sans-serif; font-size: 1.2rem; color: var(--text-dark); }

/* 9. Common Concerns (Bubble Design) */
.bg-light-blue {
    background-color: #f0f9ff;
    position: relative;
    overflow: hidden;
}
.bubble-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}
.b-1 { width: 300px; height: 300px; background: rgba(13, 148, 136, 0.15); top: -50px; left: -50px; }
.b-2 { width: 400px; height: 400px; background: rgba(59, 130, 246, 0.1); bottom: -100px; right: -100px; }

.concerns-bubble-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.concern-bubble {
    background: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
.concern-bubble:hover {
    transform: translateY(-6px) scale(1.05);
    border-color: var(--primary-light);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.12);
}
.cb-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.concern-bubble:hover .cb-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(15deg);
}

/* 10. Why Choose */
.why-choose { background-color: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.feature-box { text-align: center; padding: 40px 24px; }
.fb-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary-light), var(--white)); color: var(--primary-color); border-radius: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.feature-box:hover .fb-icon { transform: rotate(10deg) scale(1.1); box-shadow: var(--shadow-md); }

/* 11. Location */
.location-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.info-card { display: flex; gap: 20px; background: var(--white); padding: 24px; border-radius: 20px; margin-bottom: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.info-card:hover { transform: translateX(10px); border-color: var(--primary-light); }
.ic-icon { width: 50px; height: 50px; background: var(--primary-light); color: var(--primary-color); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ic-text strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 4px; }
.ic-text p { margin: 0; }
.flex-buttons { display: flex; gap: 16px; }

.map-placeholder { height: 500px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.map-ripple { width: 80px; height: 80px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); margin-bottom: 20px; animation: ripple 2s infinite; }
.map-ripple svg { width: 32px; height: 32px; }
@keyframes ripple { 0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.2); } 100% { box-shadow: 0 0 0 30px rgba(13, 148, 136, 0); } }
.badge { display: inline-block; padding: 6px 12px; background: var(--bg-main); border-radius: 20px; font-size: 0.8rem; margin-top: 16px; }

/* 12. FAQ */
.faq-container { max-width: 800px; }
.accordion { padding: 10px; }
.accordion-item { border-bottom: 1px solid var(--border-color); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header { width: 100%; padding: 24px; background: none; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: var(--transition); }
.accordion-header span { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.15rem; color: var(--text-dark); }
.acc-icon-wrap { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-main); display: flex; align-items: center; justify-content: center; color: var(--text-gray); transition: var(--transition); }
.accordion-item.active .acc-icon-wrap { background: var(--primary-color); color: var(--white); transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.acc-inner { padding: 0 24px 24px; color: var(--text-gray); }

/* 13. Final CTA */
.cta-banner { background: linear-gradient(135deg, var(--text-dark), #1e293b); border-radius: 40px; padding: 80px 40px; text-align: center; color: var(--white); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-bg-shape { position: absolute; width: 300px; height: 300px; background: rgba(13, 148, 136, 0.4); border-radius: 50%; filter: blur(50px); top: -100px; right: -100px; z-index: 0; }
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { position: relative; z-index: 1; font-size: 1.15rem; color: var(--text-light); max-width: 600px; margin: 0 auto 30px; }
.cta-banner .cta-buttons { position: relative; z-index: 1; }
.justify-center { justify-content: center; }

/* ------------------------------------- */
/* 8.5 Our Doctors Section               */
/* ------------------------------------- */
.doctors-section {
    background-color: var(--white);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.doctor-glass-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3/4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--primary-light);
}

.doctor-glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(10, 102, 194, 0.25);
}

.dgc-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.doctor-glass-card:hover .dgc-bg-img {
    transform: scale(1.1) rotate(1.5deg);
}

.dgc-glass-panel {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    /* Calculate height so it hides body. 50px header + 20px padding bottom = roughly 70px visible */
    transform: translateY(calc(100% - 80px));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.doctor-glass-card:hover .dgc-glass-panel {
    transform: translateY(0);
    background: rgba(10, 102, 194, 0.75); /* Darken slightly to read white text */
    border-color: rgba(255, 255, 255, 0.5);
}

.dgc-header {
    height: 40px;
    margin-bottom: 20px;
}

.dgc-header h3 {
    color: var(--white);
    margin-bottom: 2px;
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    white-space: nowrap;
    font-weight: 700;
}

.dgc-spec {
    display: inline-block;
    color: var(--white);
    background: rgba(10, 102, 194, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: none;
    margin-top: 5px;
}

.dgc-body {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.doctor-glass-card:hover .dgc-body {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.dgc-body p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.dgc-social {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 15px;
}

.dgc-share-text {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Make icons visible by default instead of pop-in on hover */
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Pop In (Kept for hover transitions if needed, but opacity is already 1) */
.doctor-glass-card:hover .social-icons a {
    transform: translateY(-5px);
}

.doctor-glass-card:hover .social-icons a:nth-child(1) { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s; }
.doctor-glass-card:hover .social-icons a:nth-child(2) { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s; }
.doctor-glass-card:hover .social-icons a:nth-child(3) { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s; }

.social-icons a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.15) !important; /* Override the pop-in transform */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}




/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-container, .growth-container, .location-container, .overview-grid { grid-template-columns: 1fr; gap: 60px; }
    .vaccination-banner { flex-direction: column; text-align: center; }
    .doctors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .doctors-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 60px; }
    .hero-buttons { flex-direction: column; }
    .flex-buttons { flex-direction: column; }
}
