.hero-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.hero-content li {
     text-align: right;
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffffff;
}
@media (max-width: 420px) {
  .hero-content ul {
    list-style-position: inside;
    padding-left: 0;
  }

  .hero-content li {
    color: #ffffff;
     text-align: center;
  }
}


.service-title {
    text-align: center;
    color: #333333;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 20px;
}
.service-title1 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}
.lines-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    margin-top: 30px;

}

.line {
    width: 50px;
    height: 4px;
    background: linear-gradient(to bottom, #1d3e6e, #121212);
    border-radius: 2px;
}

.line.middle {
    width: 80px;
}


/* about */
.container-about {
    width: 85%;
    max-width: 1200px;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 0 auto;
}
.row-about {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.column-about {
    width: 50%;
    padding: 10px;
}
.column-about img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.column-text {
    width: 50%;
    font-size: 18px;
    color: #000000;
}
.column-text p {
  text-align: right; 
margin-bottom: 4px;
  padding: 0;      
}
.column-text ul {
      list-style-position: inside;
  list-style-type:disc ; 
  padding-left: 10px;
}

.column-text li {
text-align: right;
font-size: 16px;
margin-bottom: 8px;

}
@media (max-width: 768px) {
  .column-about, .column-text {
    width: 100%;
    text-align: right;
  }

  .column-text p, .column-text li {
    text-align: right;
  }
}

/* about */

/* ✅  service */

.container1 {
    width: 100%;
    text-align: center;
    background:  #1d3e6e;
    padding: 20px 20px;
    /* margin-bottom: 10px; */
    margin-top: 10px;
}
.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    max-width: 1000px;
    height: auto;
    margin: auto;
}
.section-title {
    font-size: 36px;
    margin: 20px 0;
    color: #333;
    font-weight: bold;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #1d3e6e;
    text-decoration: none;
  color: inherit;

   
}
.service-card-in{
    justify-content: center; 
    display: flex;
    align-items: center;
    gap: 10px; 

}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card i {
  
    font-size: 40px;
    color: #1d3e6e;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #666;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color:#ff305b;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
    background: linear-gradient(to top, #1d3e6e, #121212);
    transform: translateY(-3px);
}


/* service */

/* feedback */

.slideshow-container {
    width: 100%;
    position: relative;
    background:  #1d3e6e;
    direction: rtl; 
  }
  
  .mySlides {
    display: none;
    padding: 80px;
    text-align: center;
  }

  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; 
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 24px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    user-select: none;
    z-index: 10;
  }
  
  .next {
    position: absolute;
    right: 10px;

  }
  
  .prev {
    left: 10px;
}

  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: white;
  }
  
  .dot-container {
      text-align: center;
      padding: 20px;
      background: #EAEAEA;
  }
  
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  .author {
    color: #ffffff;
}

/* feedback */


.contact-container {
    max-width: 800px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px; /* تحسين العرض على الشاشات الصغيرة */
}

.contact-row {
    display: flex;
    gap: 20px;
}

.contact-box {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-box i {
    font-size: 30px;
    color: #d67d3e;
    margin-bottom: 10px;
}

.contact-box h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.contact-box p {
    font-size: 14px;
    color: #777;
}



/* contact */

/* الخريطة */
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    text-align: center;
}

/* media query for index page */

/* 768 */
@media screen and (max-width: 768px) {
   
    .service {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 80%;
    }


    .title h1{
        font-size: 25px; 
    }

    .row-about {
        flex-direction: column;
    }

    .column-about, .column-text {
        width: 100%;
        text-align: center;
    }
    .contact-row {
        flex-direction: column;
    }

}


/* 480 */
@media screen and (max-width: 480px) {


/* service */
.services-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
    .service-item {
        width: 100%;
    }

    .service-title {
        font-size: 28px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .title h1{
        font-size: 22px; 
    }

    .container-about {
        padding: 10px;
    }

    .column-text {
        font-size: 16px;
        text-align: center;
    }
    
    .row-about {
        margin-bottom: 10px;
    }
    .contact-container {
        padding: 0 10px;
    }
}

