body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative; /* تحديد الـ position للعنصر body */
  font-family: Arial, sans-serif;
  text-align: right;
  
}


  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 15px;
    box-sizing: border-box;
    z-index: 3; /* قيمة z-index أعلى ليظهر فوق كل شيء */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(0, 0, 0);
   padding-left: 7%;
   padding-right: 7%;
   box-shadow: 1px 1px 30px #111;
  }

  .logo img {
    cursor: pointer;
    height: 50px;
  }

  .navbar {
    display: flex;
  }

  .navbar a {
    text-decoration: none;
    color: white;
    margin: 0 15px;
    transition: color 0.3s;
  }

  .navbar a:hover {
    color: #002fff;
  }

  .menu-icon {
    cursor: pointer;
    display: none;
    font-size: 24px;
  }

  .sidebar {
    position: fixed;
    top: 46px;
    left: -250px;
    width: 160px;
    height: 100%;
    background: rgb(0, 0, 0);
    /* box-shadow: 2px 2px 10px #023f53; */
    transition: left 0.3s, background 0.3s, box-shadow 0.3s;
    overflow-y: auto;
    padding-top: 60px;
    z-index: 1;
    margin-top: 0px;

  }

  .sidebar a {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
    border-radius: 2px;
    border-bottom: 2px #000;}

  .sidebar a:hover {
    background: #02688b;
    color: white;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }

  @media (max-width: 10000px) {
    .navbar {
      display: none;
    }

    .menu-icon {
      display: block;
    }
  }
  .img1{
height:30px;
  }

  .main-section {
    height: 100vh;
    background: url('img/background.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    transition: background 0.5s ease-in-out;
    width: 100%;
}
@media (max-width: 420px) {
    .main-section {
        height: 100vh;
        background: url('img/background.jpg') center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-align: center;
        transition: background 0.5s ease-in-out;
    }
  }
.main-section h1 {
    font-size: 2.5em; /* تكبير العنوان */
    font-family: 'YourPreferredHeadingFont', sans-serif; /* خط العنوان */
    color: #ffcc00; /* لون العنوان */
    margin-bottom: 10px;
}

.main-section p {
    font-size: 17px;
    font-family: 'YourPreferredParagraphFont', sans-serif;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: system-ui ,sans-serif,cursive;
    background-color: #00000083;
    padding: 20px;
   
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5em;
    text-decoration: none;
    color: #fff;
    background-color: #4CAF50;
    /* border: 2px solid #3f3f3f; */
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    font-family: 'YourPreferredButtonFont', sans-serif;
    box-shadow: 2px 2px 20px #000;
 transition: all 0.9s ease;
}

.cta-btn:hover {
background-color: #011402; 
border-color: #021b03; 
color: #eeff00; 

}
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: antiquewhite;
}

.card {
  width: 280px;
  max-width: 80%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  margin: 20px;
}

.avatar {
  width: 100%;
  height: 391px;
  background-color: #3498db;
  border-radius: 15px 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8vw;
  color: #fff;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info {
text-align: center;
padding: 20px;
flex-grow: 1;
}

h2 {
margin-bottom: 10px;
color: #2c3e50; /* لون العنوان */
font-size: 5vw;
}

.job-title,
.degree,
.education {
margin: 8px 0;
color: #34495e; /* لون النصوص */
font-size: 16px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* نوع الخط */
}

@media screen and (max-width: 600px) {
h2 {
font-size: 8vw;
}

.job-title,
.degree,
.education {
font-size: 14px;
}
}


.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 10px;
  background-color: #3b5998;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icons a:hover {
  background-color: #4867aa;
}

.social-icons a:nth-child(2) {
  background-color: #00acee;
}

.social-icons a:nth-child(2):hover {
  background-color: #42a1f0;
}

.social-icons a:nth-child(3) {
  background-color: #25D366;
}

.social-icons a:nth-child(3):hover {
  background-color: #007bb5;
}

.social-icons a:nth-child(4) {
  background-color: #bc2a8d;
}

.social-icons a:nth-child(4):hover {
  background-color: #e4405f;
}

@media screen and (max-width: 350px) {
  .card {
      width: 90%;
  }
  .avatar {
      font-size: 6vw;
  }
  h2 {
      font-size: 8vw;
  }
  .social-icons a {
      width: 20px;
      height: 20px;
      font-size: 14px;
      margin: 0 5px;
  }
}

#booking-section {
  text-align: center;
 
  min-height: 100vh;
  background: url('img/background2.jpg') center/cover no-repeat;

  color: #fff;
}

      .plans-container {
          display: flex;
          justify-content: space-around;
          flex-wrap: wrap;
         
      }

      .plan {
          border: 2px solid #ccc;
          border-radius: 10px;
          padding: 20px;
          width: 300px;
          transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
          background-color: #fff;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          margin: 10px;
      }
      @media screen and (max-width: 800px) {
        .plan {
margin-bottom: 80px;
      }
    }
      .plan-icons {
          font-size: 24px;
          margin-bottom: 10px;
          color: #2ecc71;
      }

      .plan h3 {
          font-size: 20px;
          margin-bottom: 10px;
          color: #333;
      }

      .price {
          font-size: 18px;
          color: #e74c3c;
      }

      .discount del {
          color: red;
      }

      .plan p {
          color: #555;
      }

      .plan a {
          display: inline-block;
          margin-top: 10px;
          padding: 10px 20px;
          text-decoration: none;
          background-color: #3498db;
          color: #fff;
          border-radius: 5px;
          transition: background-color 0.3s ease-in-out;
          box-shadow: 2px 2px 2px #111;
          transition: all 0.5s ease;
      }
      .plan a:hover {
  background-color: #061824;
  color: #fff;
}


      .plan:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
          
      }
      footer {
        background-color: #000000;
        color: #fff;
        bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
    
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-content p {
        margin: 0;
        padding-left: 30px;
        padding-right: 30px;
      
    }

    a {
      text-decoration: none;
      color: #3498db;
      transition: color 0.3s ease;
  }
  
  a:hover {
      color: #e74c3c;
  }
  
  .footer-content a {
      color: #fff;
  }
  
  .footer-content a:hover {
      border-bottom: 1px solid #fff;
  }
  
