* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7fbff;
    color: #1f2937;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  .logo {
    color: #000000;
    font-size: 1.9rem;
    position: relative;
    top: 0px;   /* move down */
    left: 0px;  /* move right */
 

  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #0f766e;
  }
  
  .hero {
    padding: 70px 0;
    background: linear-gradient(to right, #e0f7fa, #f8fdff);
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0px;
    color: #000000;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
  }
  
  .btn {
    display: inline-block;
    background: #0f766e;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #a0067c;
  }
  
  .hero-image {
    flex: 1;
  }
  
  .hero-image img {
    width: 150%;
    display: block;
    margin-left: 0;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(232, 227, 227, 0.12);
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0f172a;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .card {
    background: rgb(206, 235, 237);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(233, 239, 240, 0.817);
    transition: transform 0.ss;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card h3 {
    margin-bottom: 12px;
    color: #000000;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
  }
  
  .about-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }
  
  .doctor-card {
    text-align: center;
  }
  
  .doctor-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .contact-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    max-width: 700px;
    margin: auto;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  
  .footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
  }
  
  @media (max-width: 768px) {
    .nav {
      flex-direction: column;
      gap: 15px;
    }
  
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .hero-text h2 {
      font-size: 2.2rem;
    }
  
    .about-content {
      grid-template-columns: 1fr;
    }
    .hero-quote {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
}
  }
  .hero-quote {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
  }
  .service-category {
    margin-bottom: 50px;
  }
  
  .category-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #0f766e;
    text-align: left;
    padding: 0 20px;

  }
  
  .mini-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  
  .mini-card {
    background: white;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .mini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }
  
  .mini-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #0f172a;
  }
  
  .mini-card p {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.6;
  }
  
  .note-card {
    background: linear-gradient(to right, #e0f7fa, #f8fdff);
    border: 1px solid #b6e3ea;
    box-shadow: 0 0 12px rgba(15, 118, 110, 0.25);
    animation: glowPulse 2.5s ease-in-out infinite;
  }
  .doctor-about-card {
    max-width: 700px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  
  .doctor-about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0f766e;
  }
  
  .doctor-about-card p {
    color: #334155;
    line-height: 1.8;
    font-size: 1rem;
  }
  .doctor-about-card p {
    color: #334155;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
  }
  html[dir="rtl"] body {
    direction: rtl;
  }
  
  html[dir="rtl"] .nav {
    flex-direction: row-reverse;
  }
  
  html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
  }
  
  html[dir="rtl"] .hero-text,
  html[dir="rtl"] .doctor-about-card,
  html[dir="rtl"] .about-content,
  html[dir="rtl"] .contact-box,
  html[dir="rtl"] .category-title {
    text-align: right;
  }
  html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .nav {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-text,
html[dir="rtl"] .doctor-about-card,
html[dir="rtl"] .about-content,
html[dir="rtl"] .contact-box,
html[dir="rtl"] .category-title {
  text-align: right;
}
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 20px;
  }
  
  .lang-link {
    text-decoration: none;
    color: #0f766e;
    border: 1px solid #0f766e;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .lang-link:hover,
  .lang-link.active {
    background-color: #0f766e;
    color: white;
  }


  