/* 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: #229231;
  --alt-color: #229231;
  --another-color: #22bd1c;
  --box-color: #0651dd0c;
  --dark-color: #0c182b;
  --alt-dark-color: #0c182bce;
}
body {
  font-family: "IBM Plex Sans Arabic", sans-serif;

  direction: rtl !important;
  color: var(--dark-color);
  background-image: url("../img/showcase/bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500 !important;
}
p {
  font-size: 16px !important;
}
/* End Global Rules */

/* Start Navbar */
.navbar {
  transition: background-color 0.4s ease, padding 0.4s ease;
}
.scrolled {
  background-color: #ffffffe5;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.navbar .navbar-brand {
  color: var(--main-color);
  font-size: 30px;
  font-family: sans-serif;
}
.navbar .navbar-brand img {
  width: 70px !important;
}
.navbar-toggler {
  box-shadow: none !important;
  border: none !important;
}
.navbar .navbar-nav .nav-link {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: normal;
  padding: 10px 20px;
}
.navbar .nav-link:hover {
  color: var(--main-color);
}
.navbar .call-btn {
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.navbar .call-btn:hover {
  background-color: var(--alt-color);
}
.navbar .dropdown-menu {
  border: none;
  padding: 10px 0;
}
.navbar .dropdown-menu .dropdown-item {
  padding: 10px 30px;
  font-size: 20px;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: var(--box-color);
}
/* End Navbar */

/* Start Showcase */
.showcase {
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.showcase .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.showcase h1 {
  color: var(--main-color);
}
.showcase p {
  color: var(--alt-dark-color);
  font-weight: normal;
  padding-top: 10px;
  text-align: justify;
}
.showcase .call-btn {
  background-color: var(--main-color);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.showcase .call-btn:hover {
  background-color: var(--alt-color);
}
@media (max-width: 992px) {
  .showcase h1 {
    padding-top: 30px;
  }
}
/* End Showcase */

/* Start Section A */
.section-a {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--box-color);
}
.section-a h2 {
  color: var(--main-color);
}
.section-a p {
  text-align: justify;
}
.section-a .material-icons-outlined {
  color: var(--main-color);
  font-size: 100px;
}
/* End Section A */

/* Start Section B */
.section-b {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-b h2 {
  color: var(--main-color);
}
.section-b strong {
  font-size: 30px;
  color: var(--main-color);
  font-weight: normal !important;
}
/* End Section B */

/* Start Section C */
.section-c {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-c h2 {
  text-align: center;
  color: var(--main-color);
}
/* End Section C */

/* Start Contact */
.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact h2 {
  color: var(--main-color);
}
.contact h3 {
  padding-top: 30px;
  color: var(--another-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact h3 span {
  font-size: 50px;
}
/* End Contact */

/* Start Footer */
footer {
  background-color: var(--dark-color);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 16px;
}
/* End Footer */

/* Start Content */
.content-device {
  padding: 100px 0;
}
.content-device h2 {
  color: var(--main-color);
}
/* End Content */

/* Phone Call */
.phone-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--another-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  padding: 15px 0;
}
.phone-button:hover {
  color: #fff;
}
.phone-button span {
  font-size: 30px;
}
