/* General Styles */
/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #444;
  background: #fff;
} */

h1, h2, h3, h4, h5 {
  font-weight: bold;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.section-title p {
  margin: 0 auto;
  font-size: 16px;
  color: #6c757d;
  width: 70%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 20px;
}



.round-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0056b3;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.round-photo:hover {
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
  transform: scale(1.05);
}

/* Make stars yellow */
.rating i {
  color: #ffc107;
  font-size: 1.2rem;
}

/* Card hover effect */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}




/* Social Links */
.social a {
  margin-right: 10px;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social a:hover {
  color: #ffc107;
}

/* Animation: Appear on Scroll */
.team-member.show {
  opacity: 1;
  transform: translateY(0);
}



footer{
  background-color: black;
  color: #fff;
}
.footer-last{
  border-top: 1px solid white;
}
.useful ul li, .our-services ul li{
  list-style-type: none;
}

.socials-links{
  display: flex;
 column-gap: 40px;
}
.socials a i{
  font-size: 35px;
}
.socials{
  justify-items: end;
}
