
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

.poIU, .poiu {
    text-align: center;
    margin-bottom: 5px;
}
.poIU p, .poiu p {
    font-size: 36px;
    font-weight: bold;
    color:#405c64 ;
}

.lkj {
    text-align: center;
    margin-bottom: 30px;
}
.lkj p {
    font-size: 20px;
    color: #555;
}

.menu-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.menu-item {
    display: flex;
    flex-direction: row-reverse; /* الصورة يمين */
    align-items: center;
    justify-content: flex-start;
    width: 90%; /* عرض أكبر للشاشة */
    min-height: 180px; /* مستطيل أفقي */
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    margin: 10px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item img {
    width: 200px; /* أعرض */
    height: 150px; /* أقل ارتفاع */
    margin-left: 15px;
    border-radius: 10px;
    object-fit: cover;
}

.menu-item h5 {
    flex: 1;
    text-align: center;
  font-size:19px ;
    color: #bfbfbf;
    line-height: 1.6;
}

.menu-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .menu-item {
    flex-direction: row-reverse;
    width: 95%;
    min-height: 160px;
  }

  .menu-item img {
    width: 150px; /* تصغير الصورة للجوال */
    height:115px ;
  }

  .menu-item h5 {
    font-size: 14px;
    line-height: 1.4;
  }
}



.footer {
     background-color: #1c3c2e69;
    color: #333030;
    font-weight: 900;
  padding: 60px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.col h3 {
 font-size: 26px;
    margin-bottom: 17px;
    font-weight: 900;
}

.col p, .col li, .col a {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 25px;
    text-decoration: none;
}

.col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col li {
  margin-bottom: 6px;
}

.contact .title {
      font-size: 24px;
    margin-bottom: 17px;
    color: #232323;
}

.contact .number {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  
}

.social-icons a {
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #012a4a;
  font-size: 20px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #61a5c2;
  color: #fff;
}

.footer-bottom {
  background:#00000040 ;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.footer-bottom p {
  color: #fff;
 font-size: 17px;
    font-weight: 800;
}

.footer-logo {
  width: 60px;
  height: auto;
}

/* 📱 الجوال */
@media (max-width: 768px) {
  .footer {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .col {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* media query */

@media (max-width:800px) {
    nav ul{
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li:last-child{
        padding-bottom: 40px;
    }
    .menu-icon{
        display: block;
    }
    .hero-section{
        flex-direction: column;
        height: auto;
        padding-top: 40px;
        padding-bottom: 0;
    }
    .hero-section .left,.hero-section .right{
        width: 100%;
    }
    #heroSection,#blogsection,#testimonialSection,#trendSection,#blogsection{
        padding: 40px 2rem;
        padding-top: 80px;
    }
    nav{
        padding: 1rem 2rem;
    }
}

@media (max-width:500px) {
    .hero-section .left h1{
        font-size: 30px;
    }
    footer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 0;
    }
}









