
.about-container {
  padding: 20px;
  font-family: 'Times New Roman', Times, serif; 
}

.banner-image {
  width: 100%;
  height: 300px;
  background-image: url('https://celltel.ae/assets/frontend/images/about-banner.jpg');
  background-size: cover;
  background-position: center;
}

.about-content {
  text-align: center;
  padding: 20px;
}

.about-content h1 {
  font-size: 3rem;
  color: #d23232;
}

.about-content h4 {
  font-size: 1.7rem;
  color: rgb(73, 63, 222);
  font-family: Arial, Helvetica, sans-serif;
  margin-right: 2%;
}

.about-content p {
  color: black;
}

.about-content ul {
  list-style-type: disc;
  padding-left: 10px; 
  margin-left: 0;
}

.about-content ul li {
  font-size: 1rem;
  margin-bottom: 1px; 
  padding-right: 25%; 
}

.specialization-list {
  list-style-type: none;
  padding: 0;
}

.specialization-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.icon {
  margin-right: 10px;  
  color: #134679;
  font-size: 24px; 
}


.description-with-image {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.image-with-description {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.image-with-description.reverse {
  flex-direction: row-reverse;
}

.description-text {
  padding: 20px;
  max-width: 600px;
}

.description-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #d418be;
}

.description-text p {
  font-size: 16px;
}

.description-image {
  width: 80%;
  max-width: 300px;
  height: auto;
  margin: 10px;
  border-radius: 20%;
}


.footer {
  background-color:  #939191; 
  padding: 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.footer-logo-img {
  width: 75%;
  height: auto;
  border-radius: 12%;
}

.footer-text {
  flex: 2;
  text-align: right;
}

.footer-text p {
  margin: 5px 0;
  display: flex;
  align-items: center;
}

.footer-text a {
  text-decoration: none;
  color: black;
  margin: 0 10px;
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-text svg {
  margin-right: 10px;
  font-size: 18px;
  color: black;
}

.social-icon {
  font-size: 90%;
  color: black;
  margin-left: 100px;
}

.social-icon:hover {
  color: black;
}


@media (max-width: 768px) {
  /* About Page */
  .about-content h1 {
    font-size: 2rem;
  }

  .about-content h4 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 1.1rem;
  }

  
  .specialization-list li {
    font-size: 1rem;
  }

  
  .description-with-image {
    flex-direction: column;
  }

  .image-with-description {
    flex-direction: column;
    text-align: center;
  }

  .description-text {
    max-width: 100%;
    text-align: center;
  }

  .description-image {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
  }


  
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 20px;
   
  }

  .footer-text {
    text-align: center;
    margin-top: 20px;
  }

  .footer-text a {
    display: block;
    margin: 10px 0;
  }

  .social-icon {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  /* About Page */
  .about-content h1 {
    font-size: 1.5rem;
  }

  .about-content h4 {
    font-size: 1.3rem;
  }

  .about-content p {
    font-size: 1rem;
  }

 
  .specialization-list li {
    font-size: 0.9rem;
  }

 
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-img {
    width: 50%;
  }

  .footer-text a {
    margin: 5px 0;
  }

  .footer-text svg {
    margin-right: 8px;
    font-size: 16px;
  }
  .core-services-list li {
  background: #f9faff;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-left: 6px solid #0d6efd;
  border-radius: 12px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.core-services-list li:hover {
  transform: translateY(-3px);
  background-color: #e6f0ff;
}

}
