:root {
  --main-bg: #6A1E27;
  --accent: #8A2F3D;
  --text-gold: #E1C47D;
  --section-bg: #7E3E44;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background-color: var(--main-bg);
  color: var(--white);
  direction: rtl;
}

/* ===== Top Navbar ===== */
.top-navbar {
  background-color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  flex-wrap: wrap;
}
.logo {
 display: flex;
 align-items: center;
  font-weight: bold;
  color: var(--text-gold);
 gap: 10px;

}
.logo p{
   font-size: 20px;
   font-weight: bold;
}
.logo img{
      background-color: rgba(255, 255, 255, 0.199); /* خلفية فاتحة شفافة */
      padding: 8px;
     border-radius: 16px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 50px;
  
}
.info-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
}

.info-item i {
  color: var(--text-gold);
}

.info-item a {
  color: var(--white);
  text-decoration: none;
}

/* ===== Main Navbar ===== */
.main-navbar {
  background-color: var(--section-bg);
  text-align: center;
  padding: 10px 0;
  position: sticky;
top: 0;
z-index: 999;

}

.main-navbar a {
  color: var(--white);
  text-decoration: none;
  margin: 0 15px;
  font-size: 16px;
  transition: color 0.3s;
}

.main-navbar a:hover {
  color: var(--text-gold);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .top-navbar {
    flex-direction: column;
    gap: 10px;
  }

  .main-navbar {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .main-navbar a {
    font-size: 14px;
    margin: 8px 0;
  }
}
/* CSS */
.social-icons {
  position: fixed;
  top: 40%;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  color: white;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.social-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.social-icons a.facebook {
  background: linear-gradient(35deg, #1877F2, #3b5998, #4c70ba);
}



.social-icons a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icons a.youtube {
  background: radial-gradient(circle at center, #ff0000 0%, #cc0000 100%);

}

.social-icons a.youtube:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
  .social-icons {
    top: auto;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 10px;
  }
  .social-icons a {
    width: 40px;
    height: 40px;
  }
}
/* Social icons - General */
.social-icons.extra-icons {
  position: fixed;
  top: 20%;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.social-icons.extra-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Hover effect */
.social-icons.extra-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

/* Colors */
.social-icons a.whatsapp {
   background: linear-gradient(50deg, #128C7E, #25D366, #54F2A6);
}

.social-icons a.tiktok {
  background: linear-gradient(45deg, #25F4EE, #FE2C55, #000000);
}

/* Responsive for small screens */
@media (max-width: 600px) {
  .social-icons.extra-icons {
    left: auto;
    right: 10px;
    top: auto;
    bottom: 10px;
    flex-direction: row;
  }
}


/* === Hero Section === */
.hero-section {
  position: relative;
  background-image: url("/css/background.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6); /* تغميق */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  justify-content: center;
  animation: fade-in 1.5s ease forwards;
}
/* النص يطلع من اليمين */

.hero-image img {
  width: 470px;
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transform: translateX(100px);
  opacity: 0;
  transition: all 1.5s ease-in-out;
  margin-top: 340px;
}

.hero-text {
  color: var(--white);
  max-width: 500px;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1.8s ease-in-out;
  
}

/* كلاس بيتضاف بالجافاسكربت */
.hero-image.animate img {
  transform: translateX(0);
  opacity: 1;
}

.hero-text.animate {
  transform: translateX(0);
  opacity: 1;
}

.hero-text h1 {
  font-size: 38px;
  color: whitesmoke;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 22px;
  line-height: 1.8;
   margin-top: 0;
  margin-bottom: 8px;

}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-top: 200px;
    transform: translateX(0);
    animation: fade-in 1s ease-out 1s forwards;
  }
  .hero-text .name-doctor{
    font-size: 32px;
}
.hero-image img {
  width: 320px;
  margin-top: -20px;
}

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

/* Animations */
@keyframes rise-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-left {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}
/* SECTION SERVICES */

.services-section {
  background-color: var(--section-bg);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.services-section .section-title {
  font-size: 2.5rem;
  color: var(--text-gold);
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--main-bg);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
   opacity: 0;
  transform: translateY(100px) scale(0.9);
  transition: all 1.2s ease-out;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* Active class added by JS */
.service-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.image-wrapper {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border: 6px solid var(--text-gold);
  border-radius: 50%;
  padding: 5px;
  box-sizing: border-box;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.service-card h3 {
  font-size: 1.4rem;
  margin: 10px 0;
  color: var(--white);
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #f9f9f9;
}

.read-more-btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: var(--text-gold);
  color: var(--main-bg);
}


.booking-banner {
  background-image: url('/css/background2.jpg'); /* استبدليها بصورتك */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 20px;
  margin: 50px auto;
  max-width: 1000px;
  border-radius: 20px;
  overflow: hidden;
}

.booking-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(106, 30, 39, 0.75); /* لون غامق شفاف من الهوية */
  z-index: 1;
}

.booking-banner .content-box {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.booking-banner h2 {
  font-size: 2rem;
  color: var(--text-gold);
  margin-bottom: 15px;
}

.booking-banner p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #fff;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to left, var(--text-gold), #ffffff);
  color: #6A1E27;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.whatsapp-btn i {
  font-size: 1.3rem;
}


.reviews-section {
  background-color: var(--section-bg);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.reviews-section .section-title {
  font-size: 2.5rem;
  color: var(--text-gold);
  margin-bottom: 30px;
}

.reel-preview {
  max-width: 700px;
  margin: 40px auto;
  padding: 10px;
}

.reel-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.reel-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 25px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.reel-thumbnail:hover {
  transform: scale(1.02);
}

.reel-thumbnail:hover .play-icon {
  background-color: rgba(0, 0, 0, 0.7);
}


.slider-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto 30px;
}
.clintes_logos{
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 20px;
}
/* clintes_logos*/
.clintes_logos{
    overflow: hidden;
    padding: 30px 0;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 10px;
    animation: slideLeft 25s linear infinite;
    width: max-content;
}

.slider-track img {
  width: 200px;
  height: 130px;
  border-radius: 10px;
    transition: filter 0.2s ease;
      object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.slider-track:hover{
    filter: grayscale(0%);
}

@keyframes slideLeft{
    0%{
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.more-btn {
  background-color: var(--text-gold);
  color: var(--main-bg);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.more-btn:hover {
  background-color: var(--white);
  color: var(--accent);
}



.procedure-section {
  background-color: var(--section-bg);
  padding: 50px 20px;
  color: var(--white);
  text-align: center;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1000px;
    opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease-out;
}
.procedure-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.procedure-title {
  font-size: 2rem;
  font-weight: bold;
  background-color: var(--main-bg);
  padding: 15px;
  color: white;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

.procedure-table {
  background-color: #f4f4f4;
  color: #000;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.row {
  display: flex;
  border-top: 1px solid #ddd;
}
.row :hover{
    background-color: #6A1E27;
}
.row:first-child {
  border-top: none;
}

.cell {
  flex: 1;
  padding: 15px 20px;
  font-size: 1rem;
  text-align: right;
}

.cell.label {
  background-color: #e6e6e6;
  font-weight: bold;
  width: 30%;
  min-width: 180px;
}

.before-after-section {
  background-color: var(--section-bg);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.before-after-title {
  font-size: 2.5rem;
  color: var(--text-gold);
  margin-bottom: 40px;
}

.before-after-container {
  max-width: 1200px;
  margin: auto;
}

.before-after-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.before-box, .after-box {
  position: relative;
  width: 45%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.before-box img, .after-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.before-after-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--main-bg);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
}
.cases-section{
  background-color: var(--section-bg);
}
.cases-btn{
  background-color: var(--text-gold);
  color: var(--main-bg);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  margin-right: 44%;
}

.cases-btn:hover {
  background-color: var(--white);
  color: var(--accent);
}

@media (max-width: 768px) {
  .before-box, .after-box {
    width: 100%;
  }
}



/* 🎨 ألوان وهوية */
:root {
  --main-bg: #6A1E27;
  --accent: #8A2F3D;
  --text-gold: #E1C47D;
  --section-bg: #7E3E44;
  --white: #ffffff;
}

/* 📦 ستايل السيكشن */
.articles-section {
  background-color: var(--section-bg);
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: var(--text-gold);
  margin-bottom: 40px;
}

.articles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* 🧩 كارت المقال */
.article-card {
  background-color: var(--white);
  color: var(--accent);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
  transform: scale(0.6) rotate(5deg);
  transition: all 1.2s ease;
  pointer-events: none; /* عشان مايتضغطش قبل ما يظهر */
}

.article-card.show {
   opacity: 1;
  transform: scale(1) rotate(0deg);
  pointer-events: auto;
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card h3 {
  font-size: 20px;
  margin: 15px 0 5px;
  color: var(--main-bg);
}

.article-card p {
  font-size: 15px;
  padding: 0 15px;
}

.read-more {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 10px 25px;
   background: linear-gradient(to left, var(--accent), #E1C47D);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .read-more {
    padding: 8px 18px;
    font-size: 14px;
  }
}


/* 🩺 سكشن الدكتور */
.final-call-section {
     background-color: var(--main-bg);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--main-bg); /* أو اللون المناسب */
  color: var(--text-gold);
}

.doctor-image-container {
  position: relative;
  max-width: 600px;
  margin: auto;
}

.doctor-image {
  max-width: 350px;   /* حجم مناسب متناسق مع النص */
  width: 90%;         /* عشان تتناسب مع الشاشات الصغيرة */
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);

  opacity: 0;
  transform: translateY(100px) scale(0.8);
  filter: blur(6px);
  transition: all 1.8s ease-in-out;
  margin: 20px auto 10px auto;
  display: block;
}

.doctor-image.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.doctor-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-gold);
}

/* موبايل */
@media (max-width: 768px) {
  .doctor-image {
    max-width: 90vw;
  }

  .doctor-text {
    font-size: 18px;
    padding: 0 10px;
  }
}


/* 🦶 الفوتر */
.main-footer {
  background: linear-gradient( 145deg, #3b030a, #dbc58b);
  color: var(--white);
  padding: 60px 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: var(--text-gold);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #6A1E27;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--text-gold);
}

.logo-col img {
  width: 150px;
}
.doctor-footer-info {
  margin-top: 15px;
  text-align: start;
}

.gradient-text {
  font-weight: bold;
  font-size: 28px;
}

.gradient-text.small {
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}

.map-col iframe {
  border-radius: 10px;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .doctor-text {
    font-size: 18px;
  }
  .doctor-footer-info {
    text-align: center;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-col img {
    margin: auto;
  }
}
 /*videosllllllllllllllllllllllllllllllllllllllllllhtml*/
 .videos-section {
  padding: 50px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #E1C47D;
  margin-bottom: 40px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.video-card img {
  width: 100%;
  display: block;
}
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  display: block;
  transform: translateY(60px);
  opacity: 0;
}

.video-card.show {
  transform: translateY(0);
  opacity: 1;
  transition: all 1s ease-in-out;
}

.video-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background-color: rgba(0,0,0,0.5);
  padding: 10px 15px;
  border-radius: 50%;
}


/* للأجهزة التابلت (أقل من 768px) */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .play-button {
    font-size: 30px;
    padding: 8px 12px;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* للموبايلات الصغيرة (أقل من 480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .play-button {
    font-size: 26px;
    padding: 6px 10px;
  }
}
/*result.htmlllllllllllllllllllllllllllllllllllllllllll*/
.gallery-section {
      padding: 50px 20px;
      text-align: center;
    }

    .gallery-title {
      font-size: 32px;
      color: #dbc58b;
      margin-bottom: 40px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transform: translateY(60px);
      opacity: 0;
      transition: all 1s ease;
    }

    .gallery-item.show {
      transform: translateY(0);
      opacity: 1;
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: 0.3s;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .gallery-title {
        font-size: 26px;
      }
    }

    @media (max-width: 480px) {
      .gallery-title {
        font-size: 22px;
      }
    }


    /*مقاالاتاااااااااااااااااااااااااااااااااااااااااااااااااااااااااا*/
    .article-section {
  background-color: #fdf6f6;
  padding: 60px 0;
}

.article {
  background-color: #fff;
  padding: 30px;
  border-right: 6px solid var(--main-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(50px);
}

.article h2 {
  color: var(--main-bg);
  margin-bottom: 20px;
  font-size: 28px;
}

.article h3 {
  color: var(--section-bg);
  margin-top: 25px;
  font-size: 20px;
}

.article p {
  line-height: 1.8;
  margin: 10px 0;
  color: #333;
}

.article .closing {
  font-weight: bold;
  color: var(--accent);
  margin-top: 30px;
  font-size: 18px;
}

/* Animation when in view */
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-doctor-section {
  background-color: #f8f5f5;
  padding: 80px 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.3s ease;
}

.about-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-image img {
  max-width: 350px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  color: var(--main-bg);
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p,
.about-text li {
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}

.about-text h3 {
  color: var(--section-bg);
  margin-top: 25px;
  font-size: 20px;
}

.about-text ul {
  padding-right: 20px;
  list-style-type: disc;
}

.highlight {
  margin-top: 20px;
  font-weight: bold;
  color: var(--accent);
}
     



.svc-section {
  padding: 40px 20px;
  background-color: var(--section-bg);
}

.svc-title {
  text-align: center;
  font-size: 32px;
  color: var(--text-gold);
  margin-bottom: 40px;
}

.svc-card {
  background-color: var(--accent);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
}

.svc-card-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-gold);
}

.svc-caption {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--white);
}

.svc-text {
  font-size: 15px;
  color: var(--white);
}

@media (max-width: 768px) {
  .svc-title {
    font-size: 26px;
  }

  .svc-card-title {
    font-size: 20px;
  }

  .svc-caption {
    font-size: 14px;
  }

  .svc-text {
    font-size: 14px;
  }
}
