
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  background-color: #FFF4EB;
  color: #685F57;

  padding-top: 80px;


}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */
.main-header {
  background-color: #FFF4EB;
  padding: 20px 0;
  border-bottom: 2px solid #FF9226;
}
.main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: white; /* أو #FFF4EB حسب ألوانك */
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* ظل بسيط */
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
 display: flex;
 align-items: center;
 gap: 10px;
}
.logo p{
   color: #FF9226;
   font-size: 25px;
   font-weight: bold;
}
.logo img{
    width: 60px;
    height: 50px;
  
}
.navbar ul {
   list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.navbar ul li {
  position: relative;
}
.navbar a {
  text-decoration: none;
  color: #FF9226;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 22px;
   padding: 8px 12px;
  display: block;
}
.navbar a:hover {
  border: 1px solid #FF9226;
  background-color: #FF9226;
  color: #685F57;
  padding: 10px;
  border-radius: 5px;
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #753f08;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  z-index: 999;
  min-width: 220px;
   flex-direction: column;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  text-align: right;
}

.dropdown-menu li a:hover {
  background-color: #ddcfa7;
}
/* زر الموبايل */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* إظهار زر الهامبرجر فقط في الشاشات الصغيرة */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .navbar {
    display: none; /* نخفي النافبار افتراضياً */
    width: 100%;
    background-color: #FFF4EB;
  }
  .navbar.active {
    display: block;
  }
  .navbar ul {
    flex-direction: column;
    gap: 0;
  }
  .navbar ul li {
    border-bottom: 1px solid #FF9226;
  }
  .navbar ul li a {
    padding: 15px;
    font-size: 20px;
  }
  /* تعديل الدروب داون في الموبايل */
  .dropdown-menu {
    position: static;
    background-color: #007ca6;
    border-radius: 0;
    display: none;
  }
  .dropdown-menu.active {
    display: block;
  }
}
.dropdown-menu {
  display: none !important; /* تأكيد إنها مقفولة دائمًا */
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #753f08;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  z-index: 999;
  min-width: 220px;
  flex-direction: column;
}

.dropdown-menu.active {
  display: block !important;
}

/* الموبايل */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    background-color: #007ca6;
    border-radius: 0;
    display: none !important;
  }

  .dropdown-menu.active {
    display: block !important;
  }
}



/* الزر الأساسي */
.social-circle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #FF9226;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.social-circle:hover {
  transform: rotate(20deg);
}

/* الدائرة */
.circle-icons {
  position: fixed;
  bottom: 60px;
  left: 60px;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
}

.circle-icons .icon {
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: #FFF4EB;
  color: #FF9226;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0);
}

/* أماكن الأيقونات لما تتفتح */
.circle-icons.active .fb { transform: translate(-80px, -80px) scale(1); opacity: 1; }
.circle-icons.active .ig { transform: translate(0, -110px) scale(1); opacity: 1; }
.circle-icons.active .wa { transform: translate(80px, -80px) scale(1); opacity: 1; }
.circle-icons.active .tt { transform: translate(110px, 0px) scale(1); opacity: 1; }

/* سماح بالضغط لما تتفتح */
.circle-icons.active {
  pointer-events: auto;
}

.circle-icons .icon:hover {
  cursor: pointer;
  color: #685F57;
  background-color: #FF9226;
}


/* ===== Hero Section ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* الخلفية */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* الأوفرلي الباهت */
.slide .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 244, 235, 0.6);
  top: 0;
  left: 0;
}

/* صناديق النص */
.text-boxes {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 5; /* فوق الصورة والoverlay */
  max-width: 500px;
  color: #FF9226;
}
.text-box {
  display: none;
  animation: fadeIn 1s ease forwards;
}
.text-box.active {
  display: block;
}
.text-box h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.text-box h2 {
  font-size: 23px;
}
.text-box button {
  padding: 10px 20px;
  font-size: 22px;
  background-color: #FF9226;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.text-box button:hover {
  background-color: #c56b10;
}
.text-box button a{
    color: #685F57;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
  
}

/* Responsive */
@media (max-width: 768px) {
  .text-boxes {
    top: 60%;
    right: 50%;
    transform: translate(50%, -50%);
    text-align: center;
    margin-bottom:25px;
     max-width: 900px;
  }
  .text-box h1 {
    font-size: 25px;
    font-weight: bold;
  }
  .text-box h2 {
    font-size: 14px;
    font-weight: bold;
  }
    .slide {
/* ميديا كويري للموبايل */
     background-position: 5% center;
  }
}

.top-boxes {
  background-color: #FF9226;
  border-radius: 10px;
  color: white;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 10px 10%;
  font-family: 'Cairo', sans-serif;
  flex-wrap: wrap;
  margin: 0 30px;
  position: absolute;
  bottom: -140px; /* يركب فوق السيكشن */
  right: 5%;
  z-index: 10;
}
.branches-box, .phone-box {
  background-color: #FFF4EB;
  color: #685F57;
  padding: 12px 20px;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  font-weight: bold;
  min-width: 180px;
  text-align: right;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
   background-color: #FFF4EB;
  color: #685F57;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-weight: bold;
  cursor: pointer;
}

.branches-box .arrow {
  float: left;
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* القائمة المنسدلة */
.branches-dropdown {
  display: none;
  position: absolute;
  bottom: 110%;
  right: 0;
  background-color: #FFF4EB;
  border: 1px solid #FF9226;
  border-radius: 10px;
  padding: 10px;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10;
}
.branches-dropdown p {
  margin: 0;
  padding: 8px 5px;
  border-bottom: 1px solid #FF9226;
}
.branches-dropdown p:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .top-boxes {
    flex-direction: column;
    align-items: flex-end;
    margin-top:20% ;
  }

  .branches-box, .phone-box {
    width: 100%;
    margin-bottom: 10px;
    text-align: right;
  }

  .branches-dropdown {
    width: 100%;
    right: 0;
  }
}
/*.about-doctor/////////*/
.about-doctor {
  background-color: #FFF4EB;
  padding: 80px 5% 30px;
}

.about-doctor .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 120px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}
.about-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1.2;
  color: #685F57;
  text-align: right;
}

.about-content h2 {
  font-size: 32px;
  color: #FF9226;
  margin-bottom: 10px;
}

.about-content .welcome {
  font-size: 18px;
  margin-bottom: 20px;
  color: #685F57;
}

.about-content h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.qualifications {
  list-style: none;
  padding: 0;
}
.qualifications li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-right: 20px;
}
.qualifications li::before {
  content: "✔";
  color: #FF9226;
  position: absolute;
  right: 0;
}
/* الحالة المخفية قبل الظهور */
.hidden-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 3s ease;
}

.hidden-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 3s ease;
}

/* الحالة بعد الظهور */
.show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.about-doctor-btn{
    border: 2px solid #c56b10;
    background-color: #FF9226;
    color: #685F57;
    padding: 10px 20px;
    margin-right: 50%;
    font-size: 22px;
    font-weight: bold;
    margin-top: 5%;
}

@media (max-width: 768px) {
  .about-doctor .container {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
  .about-content {
    text-align: center;
  }
  .qualifications li {
    padding-right: 0;
    text-align: center;
  }
  .about-doctor-btn{
    margin-top: 30%;  
  }
}


.specialties {
  background-color: #FFF4EB;
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  color: #FF9226;
  font-size: 36px;
  margin-bottom: 40px;
  text-decoration: underline;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.specialty-box {
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.specialty-box img {
  width: 50px;
  margin-bottom: 15px;
}

.specialty-box h3 {
  color: #FF9226;
  font-size: 20px;
  margin-bottom: 10px;
}

.specialty-box p {
  color: #685F57;
  font-size: 16px;
  line-height: 1.6;
}

.specialty-box .icon {
  font-size: 40px;
  color: #FF9226;
  margin-bottom: 15px;
}

/*important*/
/* السيكشن */
.important {
  padding: 60px 20px;
  background-color: #fff4eb;
  text-align: center;
}

/* العنوان الرئيسي */
.important h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #685f57;
  text-decoration: underline;
}

/* الحاوية الرئيسية للكروت */
.important_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* كل كارت */
.important_card {
  background-color: white;
  border: 2px solid #ff9226;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 100%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* أنيميشن الظهور */
  opacity: 0;
  transform: translateY(60px);
  animation: fadeSlideUp 1.4s ease forwards;
}

/* تأخير لكل كارت */
.important_card:nth-child(1) { animation-delay: 0.5s; }
.important_card:nth-child(2) { animation-delay: 1s; }
.important_card:nth-child(3) { animation-delay: 1.4s; }

/* الصورة */
.important_card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* عنوان الكارت */
.important_card h3 {
  font-size: 1.3rem;
  color: #ff9226;
  margin-bottom: 10px;
  text-align: center;
}

/* النص */
.important_card p {
  font-size: 1rem;
  color: #685f57;
  text-align: center;
  line-height: 1.6;
}

/* التجاوب مع الموبايل */
@media (max-width: 768px) {
  .important_cards {
    flex-direction: column;
    align-items: center;
  }
}

/* أنيميشن */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*reviews//////////////////////*/
.reviews-section {
  background: linear-gradient(135deg, #FFF4EB, #ffffff);
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #FF9226;
  margin-bottom: 40px;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  justify-content: center;
  position: relative;
}

.review-card {
  min-width: 250px;
  max-width: 300px;
  background-color: white;
  border: 2px solid #FF9226;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(50px);
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
}

.review-text {
  font-size: 18px;
  margin-bottom: 20px;
  color: #685F57;
}

.review-info {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: right;
  justify-content: right;
}

.review-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #FF9226;
}

.review-info h4 {
  margin: 0;
  color: #FF9226;
}

.stars {
  font-size: 16px;
  color: #FF9226;
}
@media (max-width: 768px) {
  .reviews-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/*medical-info-section///////////////// */
.medical-articles {
  background-color: #fff;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #685F57;
  margin-bottom: 60px;
}

.articles-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.article-card {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  background-color: #FFF4EB;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card img {
  width: 40%;
  object-fit: cover;
}

.article-content {
  padding: 20px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-content h3 {
  font-size: 22px;
  color: #FF9226;
  margin-bottom: 15px;
}

.article-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.article-content a {
  align-self: flex-start;
  color: #685F57;
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .article-card {
    display: flex;
    flex-direction: column;
  }
  .article-card img{
    width: 70%;
    margin-right: 16%;
    margin-top: 5%;
    border-radius: 10px;
  }
}
/*footer*/
.footer {
  background: linear-gradient(170deg, #c56b10, #ddcfa7);
  color: #685F57;
  padding: 40px 20px 20px;
  font-family: 'Cairo', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.footer-logo img{
    width: 60px;
}
.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.footer-logo p{
    font-weight: bold;
}

.footer-links h3,
.footer-social h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffcc00;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 10px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
  transform: scale(1.2);
}
.footer-social{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-social .social-icons{
    display: flex;
    gap: 20px;
    
    
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 14px;
  
}
.footer-bottom  a{
    color: #685F57;
  }


  /* service.html//////////////////////////////////////////////////////////*/
  .full-article {
  background-color: #fff4eb;
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.full-article h2 {
  text-align: center;
  color: #685f57;
  font-size: 45px;
  margin-bottom: 50px;
  margin-top: 20px;
  text-decoration: underline;
}

.article_section {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border-right: 5px solid #ff9226;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

.article_section.show {
  opacity: 1;
  transform: translateY(0);
}

.article_section h3 {
  color: #ff9226;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.article_section p {
  color: #685f57;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 15px;
  text-align: right;
}
/* تأثير مميز للكارت الأخير */
.article_section.last {
  border-right-color: #e87f15;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.article_section.last.show {
  opacity: 1;
  transform: scale(1);
}

/* تنسيق جملة الدكتور */
.doctor-cta {
  font-size: 1.2rem;
  color: #ff9226;
  font-weight: bold;
  background-color: #fff0e1;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  position: relative;
  text-align: center;
  animation: pulse 2s infinite;
}

.doctor-cta .icon {
  font-size: 1.5rem;
  margin-left: 8px;
  vertical-align: middle;
}

/* أنيميشن خفيف يخلي الجملة تلفت الانتباه */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .full-article {
    padding: 40px 15px;
  }

  .article_section {
    padding: 20px;
  }
}
/*video.htmlllllllllllllllllllllllllllllllllll*/
 .videos_titel {
    text-align: center;
    margin-bottom: 30px;
    color: #685F57;
    text-decoration: underline;
    margin-top: 30px;
  }
 .videos_section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    justify-content: center;
  }

  .video_card img {
    width: 300px;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
  }

  .video_card img:hover {
    transform: scale(1.05);
  }
  iframe {
    width: 100%;
    height: 160px;
    border: none;
    display: block;
  }

  /* المودال */
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.75);
    align-items: center;
    justify-content: center;
    padding: 20px;
  
  }
  .modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
  }
  .modal-content iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
  }
  .close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    user-select: none;
  }
  .close-btn:hover {
    color: #f44336;
  }

  /* عنوان تحت الفيديو */
  .video-title {
    padding: 10px;
    background: #fff;
    font-size: 14px;
    text-align: center;
    color: #222;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    user-select: none;
  }
/*about.htmllllllllllllllllllllllllllllllll*/
 .doctor-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      gap: 40px;
      background: linear-gradient(to left, #fef3e7, #ffe4d0);
    }

    .doctor-image {
      flex: 1 1 350px;
      text-align: center;
      transform: translateX(100px);
      opacity: 0;
      transition: all 2s ease;
    }

    .doctor-image img {
      width: 100%;
      max-width: 350px;
      border-radius: 20px;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    .doctor-info {
      flex: 1 1 500px;
      transform: translateX(-100px);
      opacity: 0;
      transition: all 2s ease;
    }

    .doctor-info h2 {
      font-size: 32px;
      color: #333;
      margin-bottom: 20px;
    }

    .doctor-info p {
      font-size: 18px;
      line-height: 1.9;
      color: #444;
      margin-bottom: 15px;
    }

    .doctor-info ul {
      margin: 0 0 20px;
      padding: 0 20px;
    }

    .doctor-info ul li {
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 8px;
      color: #555;
      list-style: disc;
    }

    .show {
      transform: translateX(0);
      opacity: 1;
    }

    @media (max-width: 768px) {
      .doctor-section {
        flex-direction: column;
        text-align: center;
      }

      .doctor-info {
        padding: 20px;
      }
    }
    
    
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  overflow-x: hidden; /* يشيل الاسكرول اللي بييجي من الجنب */
}

.container {
  max-width: 100%; 
  margin: 0 auto;     /* توسيط المحتوى */
  padding: 0 20px;    /* padding خفيف لو عايزة */
}
