*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Ropa Sans", sans-serif;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}


body {
     font-family: "Beiruti", sans-serif;
    color: black;
    direction: rtl;
    background: #092242;
}

header{
    display: flex;
    text-align: center;
    justify-content: space-between;
    padding: 5px 50px;
    position: relative;
    align-items: center;
    
}
.logo_nav{
    height: 60px;
    width: 90px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
}


.sidebar {
  position: fixed;
  top: 0;
  right: -300px; /* مخفي خارج الشاشة */
  width: 280px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.3);
  transition: right 0.3s ease;
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
  direction: rtl; /* لأن المحتوى عربي */

  
}
.sidebar nav ul {
  display: flex;
  flex-direction: column; /* هنا بنخليهم تحت بعض */
  gap: 15px; /* مسافة بين كل لينك والتاني */
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar nav li {
  text-align: right; /* عشان المحتوى عربي */
}

.sidebar nav a {
  color: #bc8037; /* أو أي لون يناسب تصميمك */
  text-decoration: none;
  font-size: 16px;
  padding: 10px 5px;
  display: block; /* دي مهمة عشان ياخد اللينك العرض الكامل */
  border-bottom: 1px solid #eee;
}

.sidebar nav a:hover {
  background-color: #f9f9f9;
  border-radius: 4px;
}


.sidebar.active {
  right: 0;
}

.close-sidebar {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  float: left;
  margin-bottom: 20px;
  color: #bc8037;
}


/* افتراضيًا مخفي */
.menu-toggle {
  display: none;
   z-index: 9999;
  position: relative;
  cursor: pointer;
}

/* فقط يظهر على الموبايل */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #bc8037;
  }

  /* باقي التنسيقات للموبايل */
  .links_nav {
    display: none;
  }

  .logo_nav {
    height: 45px;
    width: auto;
  }
}

.dropdown_container {
  position: relative;
  z-index: 1000;
}

.dropdown_btn {
  padding: 10px 20px;
  background:linear-gradient(to right,#977142,#fdcc97);
  color: #092242;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid #fdcc97;
}
.dropdown_btn:hover{
  background: #fdcc97;
  color: #f9f9f9;
  border: 2px solid #977142;
}
.gradient-text {
  background: linear-gradient(to right, #bc8037, #f5bf86); /* من لون فاتح لغامق */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dropdown_content {
  display: none;
  position: absolute;
  top: 100%; /* نزليه تحت الزرار بوضوح */
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 5px;
  z-index: 9999;
}

.dropdown_content a {
  display: block;
  padding: 12px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.dropdown_content a:hover {
  background-color: #f9f9f9;
}

.show {
  display: block !important;
}

.dropdown_service {
  position: relative;
  cursor: pointer;
}

.dropdown_service .dropdown_menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1000;
  width: 250px;
  max-height: 300px;
  overflow-y: auto;
  direction: rtl;
  text-align: right;
}

.dropdown_service .dropdown_menu li {
  padding: 8px 12px;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.dropdown_service .dropdown_menu li:last-child {
  border-bottom: none;
}
  
.show {
  display: block;
}
/* نخفي الزرار في الشاشات الكبيرة */


/*hero_section */
 .hero_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 5%;
  height: 70vh;
  background-image: url(/dr-zeyad/css/Vector\ Smart\ Object\ copy.png);
  background-position: center;
  background-size: contain;
   background-size: 10%;
  position: relative;
  gap: 30px;
  overflow: hidden;
}

.content_hero_section {
  text-align: center;
  flex: 1;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 1s ease-in-out;
}
.content_hero_section h2{
  font-size: 38px;
}
.content_hero_section h3{
  font-size: 40px;
}
.hero_image {
  flex: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 1.3s ease-in-out;
}

.hero_image img {
  max-width: 100%;
  width: 300px;
  border-radius: 15px;
}

/* الحركات عند ظهور السيكشن */
.hero_section.animate .content_hero_section {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero_section.animate .hero_image {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* الأزرار */
.hero_section_button button {
  background: linear-gradient(to right,#977142,#fdcc97);
  color: #092242;
  border: 2px solid #fdcc97;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
.hero_section_button button:hover {
  background: #fdcc97;
  color: #f9f9f9;
  border: 2px solid #977142;
}

/* ميديا كويري للموبايل */
@media (max-width: 768px) {
  .hero_section {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    text-align: center;
      background-size: 20%;
  }

  .hero_image {
    order: 1;
    margin-bottom: 20px;
  }

  .content_hero_section {
    order: 2;
    opacity: 0;
  }

  .hero_image.right {
    order: 3;
  }

  .hero_image img {
    width: 80%;
    max-width: 300px;
  }

  .content_hero_section h2 {
    font-size: 38px;
  }

  .content_hero_section h3 {
    font-size: 22px;
  }

  .hero_section_button button {
    width: 70%;
  }
}


/*about_section*/
.about_section{
  text-align: center;
  padding: 50px 10%;
   background-image: url(/css/Vector\ Smart\ Object\ copy.png);
    background-position:center;
    background-size: contain;
  }
.about_section h2,
.about_section p{
  
  font-size: 32px;
  font-style: italic;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.about_section h2,
.about_section p:hover{
  transform: scale(1.5); 
}
.about_section p{
  font-size:25px ;
  margin-top: 20px;
}
@media (max-width: 1024px){
  .about_section h2{
  font-size: 22px;
  font-style: italic;
  letter-spacing: 1px;
}
.about_section p{
  font-size: 18px;
}
}






/*about_section*/
.about_section{
  text-align: center;
  padding: 50px 10%;
   background-image: url(/dr-zeyad/css/Vector\ Smart\ Object\ copy.png);
    background-position:center;
    background-size: contain;
  }
.about_section h2,
.about_section p{
  
  font-size: 32px;
  font-style: italic;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.about_section h2,
.about_section p:hover{
  transform: scale(1.5); 
}
.about_section p{
  font-size:25px ;
  margin-top: 20px;
}
@media (max-width: 1024px){
  .about_section h2{
  font-size: 22px;
  font-style: italic;
  letter-spacing: 1px;
}
.about_section p{
  font-size: 18px;
}
}
/* services*/
.services{
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding: 20px ;
  padding-top: 5px;
  background-image: url(/dr-zeyad/css/Vector\ Smart\ Object\ copy.png);
  background-position:center;
  background-size: contain;
}
.service-card{
  position: relative;
  flex: 1;
  width: 350px;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 1.2s ease-in-out;
  will-change: transform, opacity;
  border: 2px solid #8f622a;


}
.service-card:hover{
  transform: scale(1.03);
}
.service-card.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.services a{
display: flex;
text-align: center;
color: #93570e;
padding-right: 120px;
padding-top: 20px;
}
.services a h3{
  font-size: 22px;
  text-decoration: underline;
}



/* إظهار القائمة لما تتفعل بكلاس */
.dropdown_service.active .dropdown_menu {
  display: block;
}

/* إظهار القائمة لما تتفعل بكلاس */
.dropdown_service.dropdown_open .dropdown_menu {
  display: block;
}
@media (max-width: 1024px){
  .services{
    display: flex;
    flex-direction: column;
  }
  .service-card h3{
  margin-top: 80px; 
  }
  .service-card{
    height: 220px;
    
  }
}

/*reviwes*/
.testimonials {
  padding: 60px 20px;
  text-align: center;
  direction: rtl; /* عشان المحتوى عربي */
   background-image: url(/dr-zeyad/css/Vector\ Smart\ Object\ copy.png);
    background-position:center;
    background-size: contain;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #977142;
}

.swiper-testimonial-swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  gap: 20px;
  animation: slide 25s linear infinite;
}

.swiper-slide-testimonial {
  background: #fdcc97;
  padding: 20px;
  border-radius: 10px;
  min-width: 280px;
  max-width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  position: relative;
  flex-shrink: 0;
  color: #f9f9f9;
  border: 2px solid #977142;
}

/* تأثير عند مرور الماوس */
.swiper-slide-testimonial:hover {
  background: #f9f9f9;
  color: #977142;
  transform: scale(1.05);
}

/* علامة اقتباس تظهر عند الهوفر */
.swiper-slide-testimonial::before {
  content: "❝";
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 40px;
  color: #ccc;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swiper-slide-testimonial:hover::before {
  opacity: 1;
}

/* أنيميشن التحريك */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*videos*/
.videos {
  width: 100%;
  min-height: 70vh;
  background-image: url(/dr-zeyad/css/Vector\ Smart\ Object\ copy.png);
     background-position:center;
    background-size: contain;
     background-size: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
  
}

.video-cover {
  position: relative;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.play-button {
  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;
}

.video-cover:hover .play-button {
  background-color: rgba(0,0,0,0.7);
}

.video_btn {
  padding: 20px 0;
  text-align: center;
  background-image: url(/css/Vector\ Smart\ Object\ copy.png);
  background-position: center;
  background-size: contain;
  width: 100%;
}

.watch_more_videos {
  padding: 14px 30px;
  transition: 0.3s ease;
  display: inline-block;
  background: linear-gradient(to right,#977142,#fdcc97);
  color: #092242;
  border: 2px solid #fdcc97;
  border-radius: 5px;
  font-weight: bold;
  margin-right: 10px;
}
.watch_more_videos:hover {
  background: #fdcc97;
  color: #f9f9f9;
  border: 2px solid #977142;
}

/* ✅ ميديا كويري للموبايل */
@media (max-width: 600px) {
  .play-button {
    font-size: 40px;
    padding: 15px 18px;
  }

  .watch_more_videos {
    padding: 12px 24px;
    font-size: 14px;
  }

  .video_btn {
    padding: 15px 0;
  }
}

/*articles*/
.articles{ 
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
   background-image: url(/dr-zeyad/css/Vector\ Smart\ Object\ copy.png);
    background-position:center;
    background-size: 10%;
}
.articles h2{
  font-size: 48px;
  color: #977142;
  text-decoration: underline;
}
.articles_grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.articles_card{
  background-color: #f1efec;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: right;
  border: 2px solid #8f622a;
}
.articles_card a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.articles_card:hover{
  transform: translateY(-5px);
}
.articles_card img{
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px solid #8f622a;
}
.articles_card h3{
  font-size: 25px;
  color: #092242;
  text-decoration: underline;

}
.articles_card p{
  font-size: 18px;
  color: #977142;
  margin: 10px 0;
}
.articles_card h5{
  font-size: 16px;
  font-weight: bold;
  color: #fdcc97;
  margin-top: 10px;
}
.articles_card h5:hover{
  text-decoration: underline;
}
/* Media Queries for responsiveness */

/* For tablets and below (max-width: 1024px) */
@media (max-width: 1024px) {
  .articles_grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
    gap: 20px; /* Smaller gap between cards */
  }

  .articles_card {
    padding: 15px; /* Adjust padding on smaller screens */
  }

  .articles_card h3 {
    font-size: 18px; /* Smaller heading for tablets */
  }

  .articles_card p {
    font-size: 14px; /* Smaller paragraph text for tablets */
  }

  .articles_card h5 {
    font-size: 14px; /* Adjust size for h5 text */
  }
}


/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .articles_grid {
    grid-template-columns: 1fr; /* كارد واحدة في الصف */
    gap: 20px;
  }

  .articles_card {
    padding: 15px;
  }

  .articles_titel h2 {
    font-size: 1.6rem;
  }

  .articles_card h3 {
    font-size: 18px;
  }

  .articles_card p {
    font-size: 14px;
  }

  .articles_card h5 {
    font-size: 14px;
  }
}


/*footer*/
.main-footer {
  background-image: url(/dr-zeyad/css/Vector\ Smart\ Object\ copy.png);
  background-position: center;
  background-size: contain;
  padding: 40px 20px 10px;
  font-family: 'Cairo', sans-serif;
  direction: rtl ;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-container{
  display: flex;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  flex-wrap: wrap;
  
}
.footer-column-logo-column{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-right: 25px;
}
.footer-column-logo-column img{
  max-width: 150px;
}
.footer-column-logo-column h3{
  color: #977142;
  font-weight: bold;
  font-size: 28px;
}
.footer-column-logo-column p{
  font-size: 20px;
  color: #977142;
  font-weight: bold;
  margin-top: -10px;
}
.social-icons{
  display: flex;
  gap: 20px;

}
.social-icons a{
  gap: 10px;
  font-size: 24px;
  color: #fdcc97;
  transition: transform 0.3 ease;
}
.social-icons a:hover{
  transform: scale(1.5);
  color: #977142;
}
.footer-tell i:hover{
  transform: scale(1.5);
  color: #977142;
}
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.footer-contact h3,
.footer-column h3,
.footer-map h3{
  font-size: 22Spx;
  color: #8f622a;
}
.footer-tell{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tell p a{
  color: #fdcc97;
  font-weight: bold;
}
.footer-column{
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
  text-align: center;
  align-items: center;
}
.footer-column ul{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  align-items: center;
  padding-right: 30px;

}
.footer-column ul li a{
  text-align: center;
  align-items: center;
  color: #fdcc97;
}
.footer-column ul li a:hover{
  color: #f9f9f9;
  text-decoration: underline;
}
.footer-map{
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}
.footer-adresse{
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.footer-adresse p{
  text-align: center;
  font-weight: bold;
  color: #fdcc97;
}
.footer-map iframe{
  text-align: center;
  color: #977142;
}
.footer-bottom{
  text-align: center;
  color: #977142;
}
@media (max-width: 768px){
  .footer-container{
    flex-direction: column;
    
  }

}
/*about.html*/
/*about.html section1*/
.doctor_intro {
  padding: 40px 20px;
   background: linear-gradient(to top,#fdcc97,#977142);
  text-align: center;
  border-radius: 30px;
  margin: 20px;

}

.doctor_intro .container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doctor_intro h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #60390a;
}

.doctor_intro .bio {
  font-size: 25px;
  color: #092242;
  font-weight: bold;
  line-height: 1.7;
  font-weight: bold;
}

.doctor_intro .certificates {
  list-style: disc;
  padding-right: 20px;
  color: whitesmoke;
  font-size: 15px;
  line-height: 1.8;
  font-weight: bold;
}
@media (max-width: 600px) {
  .doctor_intro h2 {
    font-size: 1.5rem;
  }

  .doctor_intro .bio,
  .doctor_intro .certificates {
    font-size: 14px;
  }
}

/*about.html section2*/
 .doctor_experience {
  padding: 50px 20px;
  background: linear-gradient(to left,#fdcc97,#8f622a);
  border-radius: 30px;
  margin: 20px;
}

.experience_container {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.experience_image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.experience_content {
  flex: 1;
  text-align: right;
}

.experience_content h3 {
  color: #0b3565;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.experience_content p {
  color: whitesmoke;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Animation CSS for .doctor_intro */
.doctor_intro {
  opacity: 0;
  transform: scale(0.95) translateY(50px);
  transition: all 1.5s ease-in-out;
}
.doctor_intro.animate_doctor_intro {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Animation CSS for .doctor_experience */
.doctor_experience {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1.8s ease-out;
}
.doctor_experience.animate_doctor_experience {
  opacity: 1;
  transform: translateX(0);
}
 @media (max-width: 768px) {
  .experience_container {
    flex-direction: column;
    text-align: center;
  }

  .experience_content {
    text-align: center;
  }

  .experience_content h3 {
    font-size: 1.5rem;
  }

  .experience_content p {
    font-size: 14px;
  }

  .experience_image img {
    max-width: 100%;
  }
}

/*videos.html/////////////////////////////////////////////////////////////////////*/
.videos_section {
  padding: 40px 20px;
  background-color: #092242;
  text-align: center;
  background-image: url(/css/Vector\ Smart\ Object\ copy.png);
  background-position: center;
  background-size: 10%;
}
  .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(14, 2, 107, 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(3, 33, 121, 0.3);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background-color: rgba(15, 10, 156, 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;
  }
}

/*articles_page*/
.articles_page{
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 30px 80px;
  background: #092242;
  
}
.articles_page h1{
  font-size: 48px;
  text-decoration: underline;
}
.baldness{
   display: flex;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #fdcc97; 
  padding: 30px;
  border-radius: 10px;
}
.baldness img{
  width: 100%;
  max-width: 700px;
  border: 2px solid #fdcc97; 
  border-radius: 10px;
  display: block;
  margin: 0 auto 25px;
}
.baldness h2{
  font-size: 38px;
  text-align: center;
  text-decoration: underline;
  color: #8f622a;
}
.baldness div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.baldness h3 {
  font-size: 38px;
  color: #fdcc97;
}
.baldness p {
  font-size: 20px;
  font-weight: 400;
  color: whitesmoke;
  padding:  5px 40px;
  color: #f9f9f9;
}
.baldness div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  color: #fdcc97;
}
.baldness div h4{
color: #8f622a;
}
.baldness div ul h5{
  font-size: 20px;
  padding-bottom: 10px;
  color: #f9f9f9;
}
.baldness div ul li{
  font-size: 18px;
  padding-right: 25px;
  padding-bottom: 5px;
}
.baldness div ul li::before{
  content: ".";
  font-size: 25px;
  font-weight: bold;
  padding: 10px;
  color: #977142;
}

.article_faq{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article_faq h3{
  margin-bottom: 10px;
}
.article_faq p{
  border-left: 4px solid #8f622a;
  margin-bottom: 10px;
}
.article_faq li{
  margin: -5px;
  padding-right: 5px;
}
.fractional {
   display: flex;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #fdcc97;
  padding: 30px;
  border-radius: 10px;
}
.fractional img{
   width: 100%;
  max-width: 700px;
  border: 2px solid #fdcc97; 
  border-radius: 10px;
  display: block;
  margin: 0 auto 25px;
}
.fractional h2 {
  font-size: 38px;
  text-align: center;
  text-decoration: underline;
  color: #8f622a;
}
.fractional div{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fractional h3{
  font-size: 38px;
  color: #fdcc97;
}
.fractional p {
  font-size: 20px;
  font-weight: 400;
  color: whitesmoke;
  padding:  5px 40px;
}
.fractional div ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  color: #fdcc97;
}
.fractional div ul h5{
  font-size: 20px;
  padding-bottom: 10px;
  color: #f9f9f9;
}
.fractional div ul li{
  font-size: 18px;
  padding-right: 25px;
  padding-bottom: 5px;
}
.fractional div ul li::before{
  content: ".";
  font-size: 25px;
  font-weight: bold;
  padding: 10px;
  color: #8f622a;
}
.fractional h6{
  font-size: 16px;
  color: #fdcc97;
}
.young {
   display: flex;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #fdcc97;
  padding: 30px;
  border-radius: 10px;
}
.young img {
   width: 100%;
  max-width: 700px;
  border: 2px solid #fdcc97;
  border-radius: 10px;
  display: block;
  margin: 0 auto 25px;
}
.young h2 {
  font-size: 38px;
  text-align: center;
  text-decoration: underline;
  color: #8f622a;
}
.young div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.young h3 {
  font-size: 38px;
  color: #fdcc97;
}
.young p {
  font-size: 20px;
  font-weight: 400;
  color: whitesmoke;
  padding:  5px 40px;
}
.young div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  color: #fdcc97;
}
.young div ul h5{
  font-size: 20px;
  padding-bottom: 10px;
  color: #f9f9f9;

}
.young div ul li{
  font-size: 18px;
  padding-right: 25px;
  padding-bottom: 5px;
}
.young div h4{
  color: #977142;
}
.young div ul li::before{
  content: ".";
  font-size: 25px;
  font-weight: bold;
  padding: 10px;
  color: #8f622a;
}
.young h6{
  font-size: 16px;
  color: #fdcc97;
}
.insummer{
   display: flex;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #fdcc97;
  padding: 30px;
  border-radius: 10px;
}
.insummer img {
   width: 100%;
  max-width: 700px;
  border: 2px solid #fdcc97;
  border-radius: 10px;
  display: block;
  margin: 0 auto 25px;
}
.insummer h2 {
  font-size: 38px;
  text-align: center;
  text-decoration: underline;
  color: #8f622a;
}
.insummer div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.insummer h3 {
  font-size: 38px;
  color: #fdcc97;
}
.insummer p {
  font-size: 20px;
  font-weight: 400;
  color: whitesmoke;
  padding:  5px 40px;
}
.insummer div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  color: #fdcc97;
}
.insummer div ul h5{
  font-size: 20px;
  padding-bottom: 10px;
  color: #f9f9f9;
}
.insummer div h5{
  color: #f9f9f9;
}
.insummer div ul li{
  font-size: 18px;
  padding-right: 25px;
  padding-bottom: 5px;
}
.insummer div ul li::before{
  content: ".";
  font-size: 25px;
  font-weight: bold;
  padding: 10px;
  color: #8f622a;
}
.insummer div h4{
  color: #977142;
}
.insummer h6{
  padding-top: -10px;
  font-size: 14px;
  color: #f9f9f9;
}
.winter{
   display: flex;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #fdcc97;
  padding: 30px;
  border-radius: 10px;
}
.winter img {
   width: 100%;
  max-width: 700px;
  border: 2px solid #fdcc97;
  border-radius: 10px;
  display: block;
  margin: 0 auto 25px;
}
.winter h2 {
  font-size: 38px;
  text-align: center;
  text-decoration: underline;
  color: #8f622a;
}
.winter div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.winter h3 {
  font-size: 38px;
  color: #fdcc97;
}
.winter p {
  font-size: 20px;
  font-weight: 400;
  color: whitesmoke;
  padding:  5px 40px;
}
.winter div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  color: #fdcc97;
}
.winter div h4{
  color: #977142;
}
.winter div h5{
  font-size: 20px;
  padding-bottom: 10px;
  color: #977142;
}
.winter div ul li{
  font-size: 18px;
  padding-right: 25px;
  padding-bottom: 5px;
}
.winter div ul li::before{
  content: ".";
  font-size: 25px;
  font-weight: bold;
  padding: 10px;
  color: #977142;
}
.winter h6{
  padding-top: -10px;
  font-size: 14px;
  color: #fdcc97;
}
.laser{
   display: flex;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #fdcc97;
  padding: 30px;
  border-radius: 10px;
}
.laser img {
   width: 100%;
  max-width: 700px;
  border: 2px solid #fdcc97;
  border-radius: 10px;
  display: block;
  margin: 0 auto 25px;
}
.laser h2 {
  font-size: 38px;
  text-align: center;
  text-decoration: underline;
  color: #8f622a;
}
.laser div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.laser h3 {
  font-size: 38px;
  color: #fdcc97;
}
.laser p {
  font-size: 20px;
  font-weight: 400;
  color: whitesmoke;
  padding:  5px 40px;
}
.laser div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  color: #fdcc97;
}
.laser div h4{
  color: #977142;
}
.laser div h5{
  font-size: 20px;
  padding-bottom: 10px;
  color: #977142;
}
.laser div ul li{
  font-size: 18px;
  padding-right: 25px;
  padding-bottom: 5px;
}
.laser div ul li::before{
  content: ".";
  font-size: 25px;
  font-weight: bold;
  padding: 10px;
  color: #8f622a;
}
.laser h6{
  padding-top: -10px;
  font-size: 14px;
  color: #f9f9f9;
}
.Q-Switched{
   display: flex;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #fdcc97;
  padding: 30px;
  border-radius: 10px;
}
.Q-Switched img {
   width: 100%;
  max-width: 600px;
  border: 2px solid #fdcc97;
  border-radius: 10px;
  display: block;
  margin: 0 auto 25px;
}
.Q-Switched h2 {
  font-size: 38px;
  text-align: center;
  text-decoration: underline;
  color: #8f622a;
}
.Q-Switched div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.Q-Switched h3 {
  font-size: 38px;
  color: #fdcc97;
}
.Q-Switched p {
  font-size: 20px;
  font-weight: 400;
  color: #f9f9f9;
  padding:  5px 40px;
}
.Q-Switched div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  color: #fdcc97;
}
.Q-Switched h4{
  color: #f9f9f9;
}
.Q-Switched div h4{
  color: #977142;
}
.Q-Switched div h5{
  font-size: 20px;
  padding-bottom: 10px;
  color: #977142;
}
.Q-Switched div ul li{
  font-size: 18px;
  padding-right: 25px;
  padding-bottom: 5px;
}
.Q-Switched div ul li::before{
  content: ".";
  font-size: 25px;
  font-weight: bold;
  padding: 10px;
  color: #8f622a;
}
.processor{
   display: flex;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #fdcc97;
  padding: 30px;
  border-radius: 10px;
}
.processor img {
   width: 100%;
  max-width: 600px;
  border: 2px solid #fdcc97;
  border-radius: 10px;
  display: block;
  margin: 0 auto 25px;
}
.processor h2 {
  font-size: 38px;
  text-align: center;
  text-decoration: underline;
  color: #8f622a;
}
.processor div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.processor h3 {
  font-size: 38px;
  color: #fdcc97;
}
.processor p {
  font-size: 20px;
  font-weight: 400;
  color: whitesmoke;
  padding:  5px 40px;
}
.processor div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  color: #fdcc97;
}
.processor div h4{
  color: #977142;
}
.processor div  h5{
  font-size: 20px;
  padding-bottom: 10px;
  color: #977142;
}
.processor div ul li{
  font-size: 18px;
  padding-right: 25px;
  padding-bottom: 5px;
}
.processor div ul li::before{
  content: ".";
  font-size: 25px;
  font-weight: bold;
  padding: 10px;
  color: #8f622a;
}

@media (max-width: 768px) {
  .contactsection {
    padding: 20px 15px;
  }

  .contactsection h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }

  .contactsection h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
  }

  .contactsection ul {
    padding-left: 20px;
  }

  .contactsection ul li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
  }

  .contactsection ul li::marker {
    font-size: 16px;
  }
}

/* قبل وبعد////////////////////////////////////////////////////////*/
.cases h2 {
  text-align: center;
  color: #8f622a;
  margin-bottom: 10px;
}

p.description {
  text-align: center;
  color: #f5bf86;
  margin-bottom: 40px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.case {
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.case:hover {
  transform: translateY(-5px);
}

.images {
  display: flex;
}

.images img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-left: 1px solid #eee;
}

.images img:first-child {
  border-left: none;
}

@media (max-width: 768px) {
  .images img {
  width: 100%;
  height: 350px;
  padding: 10px;
  object-fit: cover;
  border-left: 1px solid #eee;
}
}
/*servies_//////////////////////////////////////////////////*/
.servies_section_card{
  background: linear-gradient(135deg, #f5bf86, #754306);
  margin: 40px auto;
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 900px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(211, 173, 5, 0.498);
  transition: transform 0.3s ease;
}

.servies_section_card:hover {
  transform: translateY(-5px);
}
.servies_section_card h2{
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
  margin-top: 25px;
}

.servies_section_card span.highlight {
  
  font-size: 22px;
  font-weight: bold;
  color: whitesmoke; /* لون ملفت */
}
.servies_contant{
  margin: 40px auto;
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 900px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.main_title {
  font-size: 26px;
  margin: 10px 0;
  color: #f5bf86;
  padding-right: 20px;
}

 .subtitle {
  font-size: 16px;
  color: #e1dede;
  padding-right: 20px;
}
.servies_contant h4{
  margin-top: 25px;
  font-weight: bold;
}


.footer-bottom p ,
.footer-bottom a {
    color:whitesmoke ;
}
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  overflow-x: hidden; /* يشيل الاسكرول اللي بييجي من الجنب */
}

.container {
  max-width: 100%; 
  margin: 0 auto;     /* توسيط المحتوى */
  padding: 0 20px;    /* padding خفيف لو عايزة */
}