@font-face {
  font-family: 'Cairo';
  src: url('https://egy4server.com/fonts/Cairo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
  font-family: 'Playfair Display', serif;
}


.text-red{
  color: red;
}

.bg-logo {
  background-color: rgba(0, 66, 88, 1); /* Light blue with 50% opacity */
}
.navbar-nav .nav-link{
  color:white !important;
}

/* social media icons */

.social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  background: white;
  padding: 5px;
  border: 1px solid blue;
  border-radius: 5px;
}

.social-icons a {
  display: block;
  margin: auto;
}
/* end social media icons */

/* carousel */

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Change opacity as needed */
  z-index: 1;
}

.carousel-item h1,
.carousel-item h2,
.carousel-item button {
  position: relative;
  z-index: 2;

}
.center-carousel{
  margin-bottom: 150px;
}

/* end carousel */

/* what we do */
.value-icon, .mission-icon, .vision-icon, .quality-icon {
	font-size: 60px;
	color: #17A2B8;
	margin-bottom: 20px;
}

.value-icon:hover, .mission-icon:hover, .vision-icon:hover, .quality-icon:hover {
	cursor: pointer;
	color: #007BFF;
}

.value-title, .mission-title, .vision-title, .quality-title {
	font-weight: bold;
	font-size: 24px;
	color: #17A2B8;
	margin-bottom: 20px;
}

.value-text, .mission-text, .vision-text, .quality-text {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.value-icon, .mission-icon, .vision-icon, .quality-icon {
		font-size: 40px;
	}
	.value-title, .mission-title, .vision-title, .quality-title {
		font-size: 20px;
	}
	.value-text, .mission-text, .vision-text, .quality-text {
		font-size: 16px;
	}
}
/* what we do */

/* first services */

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.service-img:hover {
  cursor: pointer;
  transform: scale(1.03);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}
.service-title {
  font-weight: bold;
  font-size: 24px;
  color: #17A2B8;
  margin-bottom: 20px;
}
.service-text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .service-img {
    height: 300px;
  }
  .service-title {
    font-size: 20px;
  }
  .service-text {
    font-size: 16px;
  }
}
.service {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.service:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}
.service img {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}
.service h3 {
  font-weight: bold;
  margin-bottom: 10px;
}
.service p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
/* end services */