 .hero-section {
     position: relative;
     width: 100%;
     height: 350px;
     /* يمكنك تغييره حسب التصميم */
     overflow: hidden;
     display: flex;
     align-items: center;
 }

 .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
     float: right;
 }

 /* الخلفية */
 .hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 100, 0.5)),
         url('../images/123.png') center/cover no-repeat;
     z-index: 1;
 }

 /* صورة الولد */
 .hero-boy {
     position: absolute;
     bottom: 0;
     left: 10%;
     max-width: 280px;
     width: 50%;
     height: auto;
     z-index: 2;
 }

 /* النص */
 .hero-content {
     position: relative;
     z-index: 3;
     color: #fff;
     text-align: right;
     width: 58%;
     padding: 20px;
     direction: rtl;
     margin-right: 10%;
 }

 .hero-content h1 {
     font-size: 2rem;
     font-weight: bold;
 }

 .hero-content p {
     font-size: 1rem;
     line-height: 1.6;
 }

 /* متجاوب مع الشاشات الصغيرة */
 @media (max-width: 768px) {
     .hero-section {
         height: auto;
         flex-direction: column;
         text-align: center;
     }

     .hero-boy {
         display: none;
     }

     .hero-content {
         text-align: center;
         padding: 50px 10px;
         margin: 0px;
         width: 100% !important;
     }
 }

 .card-img img {
     object-fit: cover;
     min-height: 170px;
     height: 180px;
 }

 .card-info h3 {
     overflow: hidden;
     text-overflow: ellipsis;
     display: -webkit-box !important;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     text-align: center;
     font-size: 18px;
     height: 60px;
     display: flex;
     align-content: center;
     margin-bottom: 5px;
     margin-top: 5px;
 }

 .card-info p {
     display: -webkit-box !important;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2;
     overflow: hidden;
     text-overflow: ellipsis;
     line-height: 25px;
 }

 .card-feature-list-blog {
     margin-top: 15px !important;
     display: flex;
     justify-content: space-between;
     gap: 10px;
     flex-wrap: wrap;
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .card-feature-list-blog .category {
     font-weight: 600;
     background: #FFFCEC !important;
     border-color: #F1AB23 !important;
     color: #000;
     max-height: max-content;
     padding: 1px 10px;
     border: 1px solid;
     border-radius: 15px;
     font-size: 12px;
     margin: 0px 5px;
 }

 .card-feature-list-blog .created_at {
     font-size: 13px;
     font-weight: 500;
     color: #65666f;
     margin: 0px 10px;
     text-transform: lowercase;
 }

 .blog-button {
     display: flex;
     border-radius: 12px;
     color: var(--primary-color);
     border: 2px solid var(--primary-color);
     background: var(--white-color);
     padding: 7px;
     font-size: 15px;
     font-weight: 900;
     align-items: center;
     justify-content: center;
 }

 .blog-details h1 {
     font-size: 25px !important;
 }

 .blog-details h2 {
     font-size: 22px !important;
 }

 .blog-details h3 {
     font-size: 21px !important;
 }

 .blog-details h4 {
     font-size: 20px !important;
 }

 .blog-details h5 {
     font-size: 18px !important;
 }

 .blog-details h6 {
     font-size: 16px !important;
 }

 .blog-details p {
     font-size: 17px !important;
     line-height: normal;
 }

 table, .blog-details {
     width: 100%;
 }

 .about-school-wrap {
     padding: 50px 0 50px;
     overflow: hidden;
 }

 .about-school-wrap li {
     list-style-type: disc;
 }

 .about-school-wrap ol, ul {
     list-style: circle;
 }

 .about h1.after-ly, h2.after-ly {
     position: relative;
     padding-bottom: 20px;
     display: inline-block;
     font-size: 26px;
 }

 .faq-wrap {
     padding: 30px 0px;
 }

 .distinctive-school-wrap {
     padding: 50px 0px;
 }

 .distinctive-top h2 {
     margin-bottom: 44px;
 }

 .category-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
margin: 20px 0px;
  flex-wrap: wrap;
}
 .category-list li {

list-style-type: none !important;
}

.category-list li a {
  display: inline-block;
  padding: 10px 25px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ألوان مخصصة لكل عنصر */
.category-list li:nth-child(1) a {
  border-color: #00b894;
  color: #00b894;
}
.category-list li:nth-child(2) a {
  border-color: #be2edd;
  color: #be2edd;
}
.category-list li:nth-child(3) a {
  border-color: #0984e3;
  color: #0984e3;
}
.category-list li:nth-child(4) a {
  border-color: #e17055;
  color: #e17055;
}
.category-list li:nth-child(5) a {
  border-color: #2980b9;
  color: #2980b9;
}
.category-list li:nth-child(6) a {
  border-color: #000;
  color: #2980b9;
}

/* تأثير hover */
.category-list li a:hover {
  color: #000;
}

.about-school{
    display: flex;
    /* margin: auto; */
    /* text-align: center; */
    flex-direction: column;
    align-content: center;
    align-items: center;
}