@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --primary: #0d6efd;
  --secondary: #198754;
  --accent: #6f42c1;
  --light: #f8f9fa;
  --dark: #212529;
  --gradient-1: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
  --gradient-2: linear-gradient(135deg, #0dcaf0 0%, #198754 100%);
  --gradient-medical: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
  --primary-font: "Inter", sans-serif;
}

body {
  font-family: var(--primary-font);
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

header {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.logo svg {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-medical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links .nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: 1px solid transparent;
  margin: 0 0.2rem;
}
.nav-links .nav-link:hover {
  color: var(--primary);
  background: rgba(13, 110, 253, 0.05);
  border-color: rgba(13, 110, 253, 0.2);
}
.nav-links .nav-link.active {
  color: #fff;
  background: var(--gradient-medical);
  border-color: var(--primary);
}
.nav-links .nav-link.btn {
  color: white;
  background: var(--primary);
  border: 1px solid var(--primary);
}
.nav-links .nav-link.btn:hover {
  background: #0b5ed7;
  border-color: #0a58ca;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  border: none;
  background: transparent;
  padding: 4px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s ease;
  border-radius: 3px;
  display: block;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

#hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-medical);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.medical-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.pulse-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  animation: pulse 2s ease-in-out infinite;
}
.pulse-dot:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.pulse-dot:nth-child(2) {
  top: 40%;
  right: 20%;
  animation-delay: 0.5s;
}
.pulse-dot:nth-child(3) {
  bottom: 30%;
  left: 30%;
  animation-delay: 1s;
}
.pulse-dot:nth-child(4) {
  top: 60%;
  right: 15%;
  animation-delay: 1.5s;
}
.pulse-dot:nth-child(5) {
  bottom: 20%;
  right: 35%;
  animation-delay: 2s;
}

.health-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.health-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0, transparent 70%);
  animation: breathe 8s ease-in-out infinite;
}
.health-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.health-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.health-circle:nth-child(3) {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.medical-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  animation: float 15s ease-in-out infinite;
}
.medical-icon:nth-child(1) {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}
.medical-icon:nth-child(2) {
  top: 70%;
  right: 10%;
  animation-delay: 5s;
}
.medical-icon:nth-child(3) {
  bottom: 30%;
  left: 50%;
  animation-delay: 10s;
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
  position: relative;
}
.hero-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-align: center;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: var(--primary);
  color: white;
}

.cta-button-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}
.cta-button-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: #fff;
  color: var(--primary);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--dark);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

#about {
  padding: 5rem 0;
}

.about-floating-cards {
  margin-bottom: 4rem;
}

.floating-card {
  background: #fff;
  border-radius: 25px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}
.floating-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent) 0, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.floating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.floating-card:hover::before {
  opacity: 0.05;
}
.floating-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  position: relative;
}

.icon-wrapper {
  width: 100%;
  height: 100%;
  background: var(--gradient-medical);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  animation: morphShape 8s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}

.floating-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 600;
}
.floating-card p {
  color: #666;
  line-height: 1.6;
}

.stats-banner {
  background: var(--gradient-medical);
  border-radius: 30px;
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
  animation: slidePattern 20s linear infinite;
}

.stat-block {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.feature-showcase {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.03) 0, rgba(13, 202, 240, 0.03) 100%);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.feature-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(13, 110, 253, 0.02) 20px, rgba(13, 110, 253, 0.02) 40px);
  animation: slidePattern 30s linear infinite;
}

.hospital-image {
  font-size: 15rem;
  color: var(--primary);
  opacity: 0.1;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
  transition: left 0.5s ease;
}
.feature-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0, rgba(13, 202, 240, 0.05) 100%);
}
.feature-list li:hover::before {
  left: 100%;
}

.feature-check {
  width: 35px;
  height: 35px;
  background: var(--gradient-medical);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.feature-list li:hover .feature-check {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

#services {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0, rgba(13, 202, 240, 0.05) 100%);
  padding: 5rem 0;
}

.practice-layout {
  margin-top: 3rem;
}

.timeline-track {
  position: relative;
  padding: 2rem 0;
  height: 100%;
}

.timeline-progress {
  position: absolute;
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: rgba(13, 110, 253, 0.1);
  transform: translateX(-50%);
}
.timeline-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gradient-medical);
  animation: fillTimeline 3s ease forwards;
}

.timeline-points {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.timeline-point {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.futuristic-label {
  position: relative;
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 50px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  z-index: 5;
  min-width: 200px;
  text-align: center;
}
.futuristic-label::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: var(--gradient-medical);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.timeline-point.active .futuristic-label, .timeline-point:hover .futuristic-label {
  animation: zoomPulse 0.6s ease-in-out;
  color: white;
}
.timeline-point.active .futuristic-label::before, .timeline-point:hover .futuristic-label::before {
  opacity: 1;
}
.timeline-point.active .timeline-indicator, .timeline-point:hover .timeline-indicator {
  transform: translateX(-50%) scale(1.3);
  background: var(--primary);
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
}

.label-text {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.timeline-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-point.active .timeline-indicator {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
}

.practice-content-area {
  display: grid;
  gap: 2rem;
}

.practice-card-new {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.practice-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-medical);
}
.practice-card-new:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.practice-icon-new {
  width: 60px;
  height: 60px;
  background: var(--gradient-medical);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.practice-info h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.practice-duration {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

.practice-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practice-benefits {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.benefit-tag {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0, rgba(13, 202, 240, 0.1) 100%);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.benefit-tag:hover {
  background: var(--gradient-medical);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

#doctors {
  padding: 5rem 0;
}

.resource-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.8rem 2rem;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 25px;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gradient-medical);
  color: #fff;
  border-color: transparent;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.resource-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.resource-image {
  height: 250px;
  background: var(--gradient-medical);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-thumbnail {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  position: relative;
  z-index: 1;
}
.resource-thumbnail.doctor-1, .resource-thumbnail.doctor-2, .resource-thumbnail.doctor-3, .resource-thumbnail.doctor-4, .resource-thumbnail.doctor-5, .resource-thumbnail.doctor-6, .resource-thumbnail.doctor-7, .resource-thumbnail.doctor-8, .resource-thumbnail.doctor-9 {
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-thumbnail.doctor-1 img, .resource-thumbnail.doctor-2 img, .resource-thumbnail.doctor-3 img, .resource-thumbnail.doctor-4 img, .resource-thumbnail.doctor-5 img, .resource-thumbnail.doctor-6 img, .resource-thumbnail.doctor-7 img, .resource-thumbnail.doctor-8 img, .resource-thumbnail.doctor-9 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.resource-body {
  padding: 1.5rem;
}
.resource-body h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.resource-body p {
  color: #666;
  margin-bottom: 1rem;
}

.doctor-specialty {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--gradient-medical);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

#contact {
  background: var(--gradient-medical);
  padding: 5rem 0;
  color: #fff;
}

.contact-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  color: var(--dark);
}
@media (max-width: 767px) {
  .contact-wrapper {
    padding: 1rem;
  }
}

.contact-info {
  padding: 1rem;
}
.contact-info h3 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
  transition: left 0.5s ease;
}
.info-item:hover {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0, rgba(13, 202, 240, 0.05) 100%);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(13, 110, 253, 0.1);
}
.info-item:hover::before {
  left: 100%;
}
.info-item:hover .info-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-medical);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.info-text h4 {
  margin-bottom: 0.25rem;
  color: var(--primary);
  font-weight: 600;
}
.info-text p {
  color: #666;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gradient-medical);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-link:hover {
  transform: translateY(-3px);
  background: var(--primary);
}

.contact-form {
  padding: 1rem;
}
.contact-form h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease;
  font-family: inherit;
  color: var(--dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 0;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.submit-btn {
  background: var(--gradient-medical);
  color: #fff;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
  background: var(--dark);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 3rem;
    transition: right 0.3s ease;
    gap: 1rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.active {
    right: 0;
    opacity: 1;
    pointer-events: all;
  }
  .nav-links .nav-item {
    width: 80%;
  }
  .nav-links .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin: 0;
    display: block;
    box-sizing: border-box;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .practice-layout {
    grid-template-columns: 1fr;
  }
  .timeline-track {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .cta-button,
  .hero-buttons .cta-button-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  .resource-tabs {
    flex-direction: column;
  }
  .tab-btn {
    width: 100%;
  }
}
.visting-card {
  width: 100%;
  background-color: #fff;
  padding: 40px 60px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .visting-card {
    padding: 20px 30px;
  }
}
.visting-card .qr-code {
  width: 80px;
}
.visting-card .logo-visting {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.visting-card .logo-visting svg {
  width: 40px;
  height: 40px;
}
.visting-card .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-medical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.visting-card .deatils-cantidate {
  margin-left: 100px;
}
@media (max-width: 575px) {
  .visting-card .deatils-cantidate {
    margin-left: 0px;
  }
}
.visting-card .deatils-cantidate .title {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
}
@media (max-width: 575px) {
  .visting-card .deatils-cantidate .title {
    font-size: 25px;
  }
}
.visting-card .deatils-cantidate .sub-tilte {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 575px) {
  .visting-card .deatils-cantidate .sub-tilte {
    font-size: 16px;
  }
}
.visting-card .deatils-cantidate .sub-tilte::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 50%;
  left: 0;
  height: 2px;
  background: #666;
}
.visting-card .deatils-cantidate .contact-deatail {
  margin-top: 10px;
}
.visting-card .deatils-cantidate .contact-deatail li {
  display: flex;
  gap: 10px;
  align-items: self-start;
  margin-bottom: 10px;
}
.visting-card .deatils-cantidate .contact-deatail li span {
  color: #666;
}
.visting-card .deatils-cantidate .contact-deatail li span:first-child {
  color: var(--primary);
}
.visting-card .deatils-cantidate .contact-deatail li span a {
  text-decoration: none;
  color: #666;
}
.visting-card .deatils-cantidate .contact-deatail li span a:hover {
  color: var(--primary);
}
.visting-card .candidate-image {
  position: relative;
  display: inline-block;
}
@media (max-width: 575px) {
  .visting-card .candidate-image {
    margin-bottom: 20px;
  }
}
.visting-card .candidate-image .img-container {
  position: relative;
  display: inline-block;
}
.visting-card .candidate-image .img-container img {
  width: 100%;
  height: auto;
  border-radius: 5px 100px 5px 100px;
  display: block;
}
.visting-card .candidate-image .img-container::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
  border-top-right-radius: 100px;
}
.visting-card .candidate-image .img-container::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid var(--primary);
  border-left: 4px solid var(--primary);
  border-bottom-left-radius: 100px;
}

/* =========================================
   🌍 RTL (Right-to-Left) Support Styles
   ========================================= */
body.rtl {
  direction: rtl;
  text-align: right;
}

/* -------- Common Layout Fixes -------- */
body.rtl header,
body.rtl footer,
body.rtl section,
body.rtl div,
body.rtl p,
body.rtl li {
  direction: rtl;
}

/* -------- Navbar -------- */
body.rtl .nav-links {
  flex-direction: row-reverse;
}

body.rtl .nav-link {
  text-align: right;
}

body.rtl .menu-toggle span {
  transform-origin: right;
}

/* -------- Hero Section -------- */
body.rtl .hero-content {
  text-align: right;
}

/* -------- About Section -------- */
body.rtl .floating-card {
  text-align: right;
}

/* -------- Contact Info -------- */
body.rtl .info-item {
  flex-direction: row-reverse;
}

body.rtl .info-icon {
  margin-left: 0;
  margin-right: 1rem;
}

body.rtl .info-text h4,
body.rtl .info-text p {
  text-align: right;
}

/* -------- Contact Form -------- */
body.rtl .form-group label {
  text-align: right;
}

/* -------- Visiting Card -------- */
body.rtl .visting-card {
  text-align: right;
}

body.rtl .visting-card .deatils-cantidate {
  margin-right: 100px;
  margin-left: 0;
}

@media (max-width: 575px) {
  body.rtl .visting-card .deatils-cantidate {
    margin-right: 0;
  }
}
/* -------- Contact Details List -------- */
body.rtl .contact-deatail li {
  flex-direction: row-reverse;
}

body.rtl .contact-deatail li span:first-child {
  margin-left: 10px;
}

/* -------- Timeline & Practice Section -------- */
body.rtl .timeline-progress {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

body.rtl .timeline-indicator {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

body.rtl .practice-card-new {
  text-align: right;
}

body.rtl .practice-header {
  flex-direction: row-reverse;
}

/* -------- Doctors Section -------- */
body.rtl .resource-body h3,
body.rtl .resource-body p {
  text-align: right;
}

/* -------- Feature List -------- */
body.rtl .feature-list li {
  flex-direction: row-reverse;
  text-align: right;
}

body.rtl .feature-check {
  margin-left: 0;
  margin-right: 1rem;
}

/* -------- Footer -------- */
body.rtl footer {
  text-align: center;
}

/* -------- Buttons & Hover Animations -------- */
body.rtl .cta-button:hover,
body.rtl .cta-button-outline:hover,
body.rtl .benefit-tag:hover {
  transform: translateY(-3px);
}

/* -------- Gradient Hover Direction Fix -------- */
body.rtl .info-item::before,
body.rtl .feature-list li::before {
  left: auto;
  right: -100%;
}

body.rtl .info-item:hover::before,
body.rtl .feature-list li:hover::before {
  right: 100%;
  left: auto;
}/*# sourceMappingURL=visting-card9.css.map */