@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* Start Global Rules */
:root {
  --main-color: #3363af;
  --dark-color: #081218;
  --text-color: #010101;
  --white-color: #fff;

  --main-transition: all 0.4s;
}
body {
  font-family: "Cairo", sans-serif !important;
}

.call-btn {
  background-color: var(--main-color);
  color: var(--white-color);
  font-weight: 500 !important;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 18px !important;
}
.call-btn:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

p {
  color: var(--text-color) !important;
  font-weight: 500 !important;
  font-size: 18px !important;
}
.lead {
  font-weight: 500 !important;
}
/* End Global Rules */

/* Start Top Bar */
.top-bar {
  background-color: var(--main-color);
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-bar p {
  color: var(--white-color) !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* End Top Bar */

/* Start Navbar */
.navbar {
  background-color: var(--main-color);
}
.navbar .navbar-toggler {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  font-size: 30px;
}
.navbar .navbar-nav .nav-link {
  padding: 10px 20px;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: normal;
  border: solid 1px transparent;
  border-radius: 100px;
}
.navbar .navbar-nav .nav-link:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
@media (max-width: 768px) {
  .call-btn {
    margin-top: 20px;
  }
}
/* End Navbar */

/* Start Showcase */
.showcase {
  padding: 30px 0;
  background-color: var(--dark-color);
}
.showcase h1 {
  color: var(--white-color);
  font-size: 3em;
  font-weight: 600;
  padding: 10px 0;
}
.showcase h1 span {
  color: var(--main-color);
}
.showcase p {
  color: var(--white-color) !important;
}
.showcase img {
  border-radius: 30px;
}
/* .showcase .call-btn {
  padding: 10px 50px;
} */
@media (max-width: 768px) {
  .showcase h1 {
    font-size: 1.7em;
    text-align: center;
  }
  .showcase p {
    font-size: 18px;
    text-align: center;
  }
  .showcase img {
    margin-top: 40px;
  }
}
/* End Showcase */

/* Start About */
.about {
  padding: 100px 0;
  background-color: #fafafa;
}
.about h2 {
  color: var(--main-color);
  font-weight: 600;
}
.about h3 {
  color: var(--main-color);
  font-size: 25px;
  font-weight: normal;
  padding-top: 30px;
}
.about h4 {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 600;
  padding-top: 30px;
}
.about p {
  font-weight: 300;
}
.about .box {
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 15px 20px;
  box-shadow: 0 1px 20px #eee;
  min-height: 300px;
  margin-top: 30px;
  transition: var(--main-transition);
}
.about .box:hover {
  box-shadow: 0 1px 30px #c4262623;
}
.about i {
  color: var(--main-color);
  font-size: 50px;
}
@media (max-width: 768px) {
  .about h2 {
    color: var(--dark-color);
    font-size: 30px;
    font-weight: normal;
  }
}
/* End About */

/* Start Services */
.services {
  padding: 100px 0;
}
.services h2 {
  font-size: 45px;
  font-weight: 600;
  color: var(--main-color);
  padding: 10px 0;
}
.services .box {
  background-color: var(--white-color);
  border-radius: 15px;
  box-shadow: 0 -1px 15px #eee;
  padding-bottom: 30px;
  margin-bottom: 50px;
  margin-top: 50px;
}
.services .box h3 {
  color: var(--main-color);
  font-size: 25px;
  font-weight: 600 !important;
  padding: 15px;
  padding-top: 30px;
}
.services .box p {
  padding: 15px;
}
.services .box img {
  width: 100%;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
/* End Services */

/* Start Services Area */
.services-area {
  background-color: var(--dark-color);
  padding: 100px 0;
}
.services-area > * {
  color: var(--white-color) !important;
}
.services-area p {
  color: var(--white-color) !important;
  font-size: 18px !important;
}
.services-area h2 {
  font-size: 3em;
  font-weight: 500;
  padding: 20px 0;
  color: var(--main-color);
}
.services-area img {
  border-radius: 30px;
}
/* End Services Area */

/* Start Contact */
.contact {
  padding: 100px 0;
}
.contact h2 {
  color: var(--main-color);
  font-weight: 600;
}
.info-box {
  background-color: var(--main-color);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.info-box h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--white-color);
}
.info-box p {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white-color) !important;
}
.info-box .hotline {
  font-size: 35px !important;
  font-weight: bolder;
}
.info-box small {
  color: var(--white-color);
}
.contact-section {
  padding: 40px 0;
}
.contact-image img {
  border-radius: 30px;
  width: 100%;
}
.small .icon {
  color: #fff;
  margin-left: 10px;
}
/* End Contact */

/* Start Footer */
footer {
  background-color: var(--dark-color);
  padding: 20px 15px;
  color: var(--white-color);
}
/* End Footer */

/* Start Buttons */
/* 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;
}
@media (max-width: 768px) {
  .bottom-call-btn {
    display: flex;
  }
}
/* End Buttons */
