/* Start Global Rules */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap");

:root {
  --main-color: #a50034;
  --lg-red-color: #fd312e;
  --warm-color: #f0ece4;
  --light-color: #ffffff;
  --dark-color: #000000;

  --main-trans: all 0.4s ease-in-out;
}
body {
  background-color: var(--warm-color);
  color: var(--dark-color);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5 !important;
  direction: rtl !important;
}

p.lead,
li {
  color: var(--dark-color);
}

/* call-btn */
.call-btn {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 40px;
  color: var(--light-color);
  background-color: var(--lg-red-color);
  border-radius: 100px;
  text-align: center;
  font-weight: normal !important;
  transition: var(--main-trans);
  font-size: 20px;
}
.call-btn:hover {
  background-color: var(--dark-color);
}
.call-btn img {
  width: 25px;
  margin-right: 5px;
}

/* End Global Rules */

/* Start Navbar */
.navbar {
  background-color: var(--warm-color);
  backdrop-filter: blur(8px);
  border-bottom: solid 1px #ccc;
}
.navbar .navbar-brand img {
  width: 120px !important;
}
.navbar .navbar-toggler {
  box-shadow: none !important;
  border: none !important;
}
.navbar .navbar-nav .nav-link {
  font-weight: normal;
  font-size: 20px;
  color: var(--dark-color);
  margin: 10px 25px;
  padding: 0;
  border-bottom: solid 2px transparent;
}
.navbar .navbar-nav a:hover {
  color: var(--dark-color);
  border-bottom: solid 2px var(--lg-red-color);
}
/* End Navbar */

/* Start Hero Section */
.hero-section {
  padding: 30px 0;
}
.hero-section h1 {
  font-weight: 400;
  font-size: 50px;
  padding: 10px 0;
}
.hero-section h2 {
  font-weight: 400;
  font-size: 40px;
  padding: 10px 0;
}
.hero-section .inner-box {
  background-color: var(--light-color);
  backdrop-filter: blur(10px);
  padding: 30px 15px;
  border-radius: 30px;
}
.hero-section .inner-box .showcase-img {
  border-radius: 30px;
  margin-bottom: 30px;
}
.hero-section .hotline {
  color: var(--main-color);
}

.hero-section .inner-box-2 {
  background-color: var(--light-color);
  backdrop-filter: blur(10px);
  padding: 30px 15px;
  border-radius: 30px;
}
.hero-section .inner-box-2 .showcase-img {
  border-radius: 30px;
  margin-bottom: 30px;
}
/* End Hero Section */

/* Start About */
.about {
  padding: 40px 0;
}
.about .box {
  background-color: var(--light-color);
  padding: 20px 15px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* End About */

/* 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: var(--lg-red-color);
  animation: 2s infinite pulse;
}
.bottom-btns .whatsapp-btn {
  background-color: #25d366;
}
.bottom-btns .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 49, 46, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(253, 49, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 49, 46, 0);
  }
}
