/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #14a085;
  --secondary-color: #0d7377;
  --accent-color: #d4af37;
  --light-accent: #1a4d4f;
  --white: #ffffff;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-700: #475569;
  --gray-800: #334155;
  --gray-900: #1e293b;
  --success: #10b981;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  border-radius: 2px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(20, 160, 133, 0.2);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(15, 23, 42, 0.98);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
}

.nav-brand span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-tertiary) 100%
  );
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(20, 160, 133, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(13, 115, 119, 0.15) 0%,
      transparent 50%
    );
  color: var(--white);
  padding-top: 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  padding: 2rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(20, 160, 133, 0.3);
  object-fit: cover;
  background: var(--bg-secondary);
}

.hero-text {
  text-align: left;
}

.hero-name {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-qualification {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.hero-specialization {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-location {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-tagline {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
}

.scroll-indicator span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--white);
  margin: 0 auto;
  position: relative;
  animation: scrollDown 2s infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

@keyframes scrollDown {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(10px);
  }
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.highlight-text {
  background: var(--light-accent);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 2rem;
}

/* Education Section */
.education-section {
  padding: 6rem 0;
  background: var(--white);
}

.timeline {
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  opacity: 0.3;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 120px;
  height: 120px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  padding: 2rem;
  background: var(--bg-tertiary);
  border-radius: 12px;
  margin: 0 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20, 160, 133, 0.2);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.institution {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.academic-honors {
  margin-top: 4rem;
}

.honors-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.honor-card {
  background: var(--bg-tertiary);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(20, 160, 133, 0.2);
}

.honor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.honor-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.honor-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.honor-card p {
  color: var(--text-secondary);
}

/* Experience Section */
.experience-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.experience-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.exp-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--bg-tertiary);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(20, 160, 133, 0.2);
}

.exp-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
}

.exp-period {
  min-width: 150px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  padding-top: 0.5rem;
}

.exp-details h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.exp-institution {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.exp-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Expertise Section */
.expertise-section {
  padding: 6rem 0;
  background: var(--white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.expertise-card {
  background: var(--bg-tertiary);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid rgba(20, 160, 133, 0.2);
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
  background: var(--bg-secondary);
}

.expertise-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.expertise-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.expertise-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Achievements Section */
.achievements-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.achievement-card {
  background: var(--bg-tertiary);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(20, 160, 133, 0.2);
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.achievement-card.highlight-stat {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
}

.achievement-card.highlight-stat h3,
.achievement-card.highlight-stat p {
  color: var(--white);
}

.achievement-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.achievement-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.achievement-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: var(--white);
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto 4rem;
  position: relative;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.testimonial-slide {
  display: none;
  padding: 3rem;
  background: var(--bg-tertiary);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(20, 160, 133, 0.2);
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-content {
  text-align: center;
}

.testimonial-rating {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: var(--bg-tertiary);
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.testimonial-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-tertiary);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20, 160, 133, 0.2);
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Consultation Section */
.consultation-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.clinics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.clinic-card {
  background: var(--bg-tertiary);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(20, 160, 133, 0.2);
}

.clinic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.clinic-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.clinic-location {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.clinic-timing {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.clinic-fee {
  color: var(--text-primary);
  font-weight: 500;
}

.consultation-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Media Section */
.media-section {
  padding: 6rem 0;
  background: var(--white);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.media-card {
  background: var(--bg-tertiary);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(20, 160, 133, 0.2);
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.media-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.media-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.media-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-tertiary);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20, 160, 133, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.contact-details p {
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
  background: var(--bg-primary);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(20, 160, 133, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--gray-200);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--gray-200);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.social-media-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(20, 160, 133, 0.2);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateX(5px);
  border-color: var(--primary-color);
}

.social-link:hover span {
  color: var(--white);
}

.social-icon {
  font-size: 1.5rem;
  display: inline-block;
}

.social-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.social-link span:not(.social-icon) {
  color: var(--gray-200);
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(20, 160, 133, 0.2);
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: var(--bg-secondary);
    width: 100%;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s ease;
    gap: 1rem;
    border-top: 1px solid rgba(20, 160, 133, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    max-width: 300px;
    margin: 0 auto 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-name {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }

  .timeline-content {
    margin: 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .consultation-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .expertise-grid,
  .achievements-grid,
  .clinics-grid {
    grid-template-columns: 1fr;
  }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
  .expertise-card,
  .achievement-card,
  .clinic-card,
  .media-card {
    animation: fadeInUp 0.6s ease backwards;
  }

  .expertise-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .expertise-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .expertise-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  .expertise-card:nth-child(4) {
    animation-delay: 0.4s;
  }
  .expertise-card:nth-child(5) {
    animation-delay: 0.5s;
  }
  .expertise-card:nth-child(6) {
    animation-delay: 0.6s;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
