/* Start Global Rules */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");

:root {
  --main-color: #498fd3;
  --dark-color: #090618;
  --white-color: #fffff1;
  --light-color: #6b777c;
  --bg-transprent: #f3f4fb;

  --m-transition: all 0.4s;
}
body {
  font-family: "Arial", sans-serif;
  color: var(--dark-color);
}
.call .call-btn {
  background-color: #ffcc00 !important;
  color: var(--dark-color);
  padding: 10px 30px;
  border-radius: 100px;
  font-weight: bold;
}
img {
  border-radius: 0 !important;
}
/* End Global Rules */

/* Start Navbar */
.navbar {
  background-color: var(--bg-transprent);
}
.navbar .navbar-nav .nav-link {
  color: var(--dark-color);
  padding: 10px 20px;
  font-weight: 400;
  font-size: 17px;
  border-radius: 100px;
  transition: var(--m-transition);
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}
/* End Navbar */

/* Start Showcase */
.showcase {
  background-color: var(--main-color);
  min-height: 500px;
}
.showcase .overlay {
  background-image: url("../img/bg-transparent.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}
.showcase h1 {
  color: var(--white-color);
  font-weight: bolder;
  font-size: 50px;
}
.showcase .call-btn {
  background-color: var(--dark-color);
}
@media (max-width: 768px) {
  .showcase h1 {
    font-size: 35px;
  }
  .showcase img {
    margin-top: 20px;
  }
}
/* End Showcase */

/* Start About */
.about {
  background: #f3fbfb; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffffff,
    #f3fbfb
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #f3fbfb
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 100px 0;
}
.about img {
  border-radius: 10px;
}
@media (max-width: 768px) {
  .about img {
    width: 100% !important;
  }
}
/* End About */

/* Start Services */
.services {
  padding: 100px 0;
}
.services h3 {
  color: var(--main-color);
}
.services .box-content {
  background-color: var(--bg-transprent);
  padding: 30px 15px;
  margin-bottom: 30px;
}
.services .box-content h2 {
  color: var(--main-color);
  font-size: 25px;
}
/* End Services */

/* Start Testimonials */
.testimonials {
  padding: 100px 0;
  background: #f3fbfb; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffffff,
    #f3fbfb
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #f3fbfb
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.testimonials h2 {
  font-size: 3em;
  font-weight: 500;
  color: var(--dark-color);
  padding: 10px 0;
}
.testimonial-container {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.testimonial {
  display: none;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial.active {
  display: block;
}

.customer-name {
  font-weight: bold;
  color: #03466e;
  margin-top: 10px;
}

.buttons {
  margin-top: 15px;
}

.btn-testimonials {
  cursor: pointer;
  padding: 8px 15px;
  margin: 5px;
  border: none;
  background: var(--main-color);
  color: white;
  font-size: 16px;
  border-radius: 5px;
}

.btn-testimonials:hover {
  opacity: 0.8;
}
/* End Testimonials */

/* Start Contact */
.contact {
  padding: 50px 0;
  background: var(--dark-color); /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    var(--main-color),
    var(--dark-color)
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    var(--main-color),
    var(--dark-color)
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.contact > * {
  color: var(--white-color);
}
/* End Contact */

/* Start Footer */
footer {
  background-color: var(--dark-color);
  padding: 20px 10px;
  color: var(--white-color);
}
/* End Footer */

/* Start Buttons */
.phone-call-btn {
  background-color: green;
  color: var(--white-color);
  padding: 15px 15px;
  font-size: 20px;
  font-weight: bold;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  display: none;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 768px) {
  .phone-call-btn {
    display: flex;
  }
}
/* End Buttons */
