@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* Start Global Rules */
:root {
  --main-color: #e11a23;
  --dark-color: #161616;
  --text-color: #2b2a2a;
  --white-color: #fff;
  --light-opacity-color: #e11a2411;

  --main-transition: all 0.3s ease-in-out;
}
body {
  direction: rtl;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fefdff;
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cairo", sans-serif !important;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 25px;
}
h4,
h5,
h6 {
  font-size: 22px;
}
p,
span,
li,
a {
  font-size: 18px;
}

.btn {
  font-size: 18px;
  border-radius: 100px;
  padding: 10px 30px;
  margin-top: 20px;
}
strong {
  font-weight: 600;
}
/* End Global Rules */

/* Start topbar */
.topbar {
  background-color: var(--main-color);
}
.topbar p {
  color: var(--white-color);
  margin: 0;
  font-family: "Cairo", sans-serif;
}
/* End topbar */

/* Start Navbar */
.navbar {
  background-color: #000000e5;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.navbar .navbar-nav .nav-link {
  color: var(--white-color);
  font-size: 18px;
  padding: 10px 15px;
  font-family: "Cairo", sans-serif;
  transition: var(--main-transition);
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--main-color);
}
.navbar .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--white-color) !important;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  color: var(--white-color) !important;
  font-size: 26px;
}
/* End Navbar */

.showcase {
  background-image: url("../img/showcase-img.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.showcase .inner {
  margin-left: 50%;
  background-color: #e11a24c2;
  padding: 20px;
}
.showcase h1 {
  color: var(--white-color);
  padding: 10px 0 20px 0;
  font-weight: bold;
  font-size: 40px;
}
.showcase p {
  color: var(--white-color);
}
@media (max-width: 992px) {
  .showcase {
    background-position: center right;
  }
  .showcase .inner {
    margin-left: 15%;
  }
  .showcase h1 {
    font-size: 35px;
  }
}
/* End Showcase */

/* Start Features */
.features {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 50px;
}
.features h2 {
  padding-bottom: 50px;
  color: var(--main-color);
  font-weight: bold;
  font-size: 45px;
  text-align: center;
}
.features .box {
  padding: 15px;
  background-color: var(--light-opacity-color);
  min-height: 250px;
  margin-bottom: 20px;
}
.features h3 {
  color: var(--main-color);
  padding-top: 20px;
}
@media (max-width: 992px) {
  .features h2 {
    font-size: 35px;
  }
}
/* End Features */

/* Start services */
.services {
  padding-top: 100px;
  padding-bottom: 100px;
}
.services img {
  height: 400px !important;
}
.services h2 {
  color: var(--main-color);
}
.services h3 {
  padding: 30px 0 20px 0;
  color: var(--main-color);
}
.services p {
  color: var(--text-color);
  text-align: justify;
}
.services .end-img-case {
  height: 100% !important;
}
@media (max-width: 992px) {
  .services img {
    height: 350px !important;
  }
}

/* End services */

/* Start Reviews */
.reviews {
  padding-top: 100px;
}
.reviews h2 {
  color: var(--main-color);
}
.reviews .grid-wrapper {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 25px;
}
.reviews .col {
  background-color: var(--light-opacity-color);
  padding: 10px;
  padding-top: 30px;
  border-radius: 5px;
  transition: var(--main-transition);
}
.reviews .col:hover {
  background-color: var(--main-color);
}
.reviews .col h4,
.reviews .col p {
  color: var(--dark-color);
}
.reviews .col:hover h4 {
  color: #fff;
}
.reviews .col:hover p {
  color: #fff;
}
.reviews .user-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews .user-icon img {
  width: 80px;
  position: absolute;
  top: -80px;
  transition: var(--main-transition);
}
.reviews .col:hover .user-icon img {
  top: -90px;
}
.reviews .rate-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews .rate-icon img {
  width: 150px;
}
.reviews h4 {
  text-align: center;
  padding-top: 20px;
}
.reviews p {
  font-size: 16px;
  text-align: center;
  padding: 10px;
}
@media (max-width: 992px) {
  .reviews h2 {
    font-size: 40px;
  }
  .reviews .grid-wrapper {
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
  }
  .reviews .col {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .reviews h2 {
    font-size: 40px;
  }
  .reviews .grid-wrapper {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }
  .reviews .col {
    margin-top: 50px;
  }
}
/* End Reviews */

/* Start Contact  */
.contact {
  padding: 100px 0;
  margin-top: 50px;
}
.contact h2 {
  color: var(--main-color);
}
.contact .box {
  border-top: solid 2px var(--main-color);
  background-color: var(--light-opacity-color);
  padding: 20px 15px 10px 15px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact .box > * {
  color: var(--dark-color);
}
@media (max-width: 992px) {
  .contact p {
    width: 100% !important;
  }
}
/* End Contact  */

/* Start footer */
footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 10px;
  text-align: center;
  font-size: 18px;
}
/* End footer */

/* Hotline & Whatsapp */
.hotline {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #008a00;
  color: var(--white-color);
  text-align: center;
  text-decoration: none;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cairo", sans-serif;
}
.hotline:hover {
  color: var(--white-color) s;
}
.whatsapp {
  position: fixed;
  bottom: 60px;
  right: 20px;
}
.whatsapp img {
  width: 65px;
}
