@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");

/* Global Rules */
:root {
  --main-color: #000099;
  --dark-color: #1b1b1b !important;
  --light-color: #f0f0f0;
  --border-color: #e5f2ff;
  --main-transition: all 0.4s;
}
body {
  direction: rtl !important;
  font-family: "Almarai", sans-serif !important;
  line-height: 1.5;
  color: var(--dark-color);
  background-color: #f9faff !important;
  height: 4000px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold !important;
}
.call-btn {
  background-color: var(--main-color) !important;
  padding: 10px 30px;
  color: #fff;
  font-weight: bold;
  border-radius: 100px !important;
  font-size: 15px;
  text-decoration: none;
  transition: var(--main-transition);
}
.call-btn:hover {
  background-color: var(--dark-color) !important;
  color: var(--main-color) !important;
}

.content-container {
  width: 60%;
  margin: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 768px) {
  .content-container {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .call-btn {
    margin-top: 20px;
  }
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--dark-color);
}

img {
  border-radius: 4px;
}
/* End Global Rules */

/* Start Navbar */
.navbar .navbar-nav .nav-link {
  padding: 10px 20px;
  font-weight: 500;
  font-size: 18px;
  color: var(--light-color);
  transition: var(--main-transition);
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--main-color);
}
/* End Navbar */

/* Start Showcase */
.showcase {
  padding-top: 50px;
  background-color: var(--dark-color);
  padding-bottom: 20px;
}
.showcase p {
  font-size: 20px !important;
  font-weight: normal !important;
}
@media (max-width: 768px) {
  .showcase {
    padding-top: 20px;
  }
  .showcase h1 {
    padding-top: 20px;
  }
  .showcase p {
    font-size: 18px !important;
  }
}
/* End Showcase */

/* Start About */
.about {
  margin-top: 100px;
}
.about h2,
.about h3 {
  color: var(--main-color);
}
.about p {
  font-weight: normal !important;
}
/* End About */

/* Start Services */
.services {
  margin-top: 100px;
}
.services h2,
.services h3 {
  color: var(--main-color);
}
.services p {
  font-weight: normal;
}
/* End Services */

/* Start Contact */
.contact h2 {
  color: var(--main-color);
}
.contact h3 {
  color: #fff;
  font-size: 24px;
}
.contact p {
  font-weight: normal !important;
  color: var(--light-color);
}
.contact .sub-section {
  margin-top: 20px;
  background-image: url("../img/contact-sub-section-img.png");
  min-height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact .sub-section .overlay {
  padding: 30px 0;
  background-color: #1b1b1bdc;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .sub-section h2 {
  color: var(--main-color);
}
/* End Contact */

/* Start Footer */
footer {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
/* End Footer */

/* Sticky Hotline */
.sticky-hotline {
  background-color: darkgreen;
  color: #fff;
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  padding: 20px;
}
@media (max-width: 768px) {
  .sticky-hotline {
    font-size: 16px;
  }
}
