@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap");

:root {
  --main-color: #61714D;
  --dark-color: #111;

  --main-transition: all 0.4s;
}
body {
  font-family: "Noto Kufi Arabic", sans-serif;
  line-height: 1.5;
}
.text-main {
  color: var(--main-color);
}
.call-btn {
  background-color: var(--main-color) !important;
  color: white;
  padding: 10px 30px;
  font-size: 18px !important;
}
.call-btn:hover {
  color: var(--main-color);
  background-color: #fff;
}

/* Start Navbar */
.navbar .navbar-nav .nav-link {
  padding: 10px 20px;
}
/* End Navbar */
.hero {
  background: #fff; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to top,
    #eaeaea,
    #f1f1f1,
    #f2f2f2,
    #fff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to top,
    #eaeaea,
    #f1f1f1,
    #f2f2f2,
    #fff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.hero h1 {
  line-height: 1.5;
  font-weight: 500;
}
.hero h1 a {
  text-decoration: underline;
  color: var(--main-color);
}
.hero h1,
.hero p {
  color: var(--dark-color);
}
.hero img {
  border-radius: 30px;
}
.hero .number-phones a {
  font-weight: 500;
  color: var(--main-color);
  text-decoration: none;
}
.hero .call-btn {
  background-color: var(--dark-color);
  border-radius: 100px;
}
/* End Hero */

/* Start About */
#about {
  padding: 50px 0;
}
#about img {
  border-radius: 30px;
  margin-bottom: 30px;
}
#about h3 {
  color: var(--main-color);
  margin-top: 50px;
}
/* End About */

/* Start Services */
#services .service-box {
  margin-top: 30px;
}
#services .image-heading h2 {
  color: var(--main-color);
}
#services img {
  border-radius: 30px;
}
/* End Services */

/* Start Contact */
#contact {
  background-color: var(--main-color);
}
#contact > * {
  color: white;
}
/* End Contact  */

/* bottom call btn */
.bottom-call-btn {
  background-color: green;
  color: white;
  width: 100%;
  padding: 15px 10px;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: none;
  justify-content: center;
  align-items: center;
}
.bottom-call-btn img {
  width: 35px;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .bottom-call-btn {
    display: flex;
  }
}
