/* Start Global Rules */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

:root {
  --main-color: #ff3838;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;

  --main-transition: all 0.4s;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--dark-color);
}
.lead {
  font-weight: 400 !important;
  color: #778ca3;
}
.btn-call {
  background-color: var(--main-color);
  color: var(--light-color);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
}
/* End Global Rules */

/* Start Navbar */
.navbar {
  background-color: var(--light-color);
}
.navbar .navbar-brand {
  font-size: 15px;
}
.navbar .navbar-nav .nav-link {
  padding: 10px 20px;
  color: var(--dark-color);
  border-radius: 100px;
}
.navbar .navbar-nav .nav-link:hover {
  background-color: var(--main-color);
  color: var(--light-color);
}

@media (max-width: 768px) {
  .navbar .navbar-brand {
    font-size: 14px;
  }
  .navbar .navbar-toggler {
    display: none;
  }
  .navbar .navbar-nav {
    display: none;
  }
  .btn-call {
    font-weight: 700;
  }
}
/* End Navbar */

/* Start Hero Section */
.hero-section {
  background-color: var(--light-color);
  padding: 50px 0;
  min-height: 85vh;
}
.hero-section img {
  border-radius: 30px;
}
.hero-section h1 span {
  color: var(--main-color);
}
@media (max-width: 768px) {
  .hero-section {
    padding-bottom: 100px;
  }
  .hero-section img {
    margin-top: 50px;
  }
}
/* End Hero Section */

/* Start Intro */
.intro {
  padding: 50px 0;
  background-color: var(--main-color);
  border-top: solid 10px var(--dark-color);
}
.intro p {
  color: var(--light-color);
}
.intro .arrows {
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro i {
  font-size: 80px;
  color: var(--light-color);
}
@media (max-width: 768px) {
}
/* End Intro */

/* Start About */
.about {
  padding: 100px 0;
}
.about img {
  border-radius: 30px;
}
/* End About */

/* Start Services */
.services {
  padding: 100px 0;
}
.services .box {
  background-color: var(--light-color);
  padding: 20px 15px;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services .box img {
  border-radius: 30px;
}
.services h3 {
  padding-top: 30px;
}
.services .btn-call {
  background-color: transparent;
  padding: 15px 25px;
  color: var(--main-color);
  border: solid 1px var(--main-color);
  font-size: 20px;
}
/* End Services */

/* Start Testimonials */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-color);
}
.testimonials .card {
  transition: var(--main-transition);
  border-radius: 12px;
}
.testimonials .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.testimonials h2 {
  letter-spacing: 1px;
}
.testimonials .user {
  display: flex;
  align-items: center;
}
.testimonials i {
  font-size: 40px;
  color: var(--main-color);
  margin-left: 10px;
}
/* End Testimonials */

/* Start Contact */
.contact {
  padding: 100px 0;
}
.contact .hotline {
  color: var(--main-color);
}
/* End Contact */

/* Start Footer */
footer {
  background-color: var(--dark-color);
  padding: 20px 0;
  text-align: center;
}
/* End Footer */

/* Bottom Btns */
.bottom-btns {
  display: flex;
  position: fixed;
  bottom: 15px;
  left: 15px;
  flex-direction: column;
  z-index: 1000;
}
.bottom-btns .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 5px 0;
  border-radius: 50%;
  padding: 0;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.bottom-btns .btn img {
  width: 30px;
  height: 30px;
  margin: 0;
}
.bottom-btns .hotline-btn {
  background-color: #3742fa;
  animation: 2s infinite pulse;
}
.bottom-btns .whatsapp-btn {
  background-color: #25d366;
}
.bottom-btns .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
