@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* Start Global Rules */
:root {
  --main-color: #eb2f06;
  --hover-color: #e55039;
  --dark-color: #000;
  --text-color: #555;
  --light-color: #f5f6fa;
}
body {
  font-family: "Cairo", sans-serif;
  color: var(--dark-color);
}
.lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .lead {
    font-size: 16px;
  }
}

section {
  padding: 80px 0;
}

.section-1 .btn-main,
.section-2 .btn-main,
.section-3 .btn-main {
  background-color: var(--main-color);
  color: var(--light-color);
  padding: 15px 50px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
}

.section-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 50px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70%;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 200px;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .section-title {
    width: 100%;
    font-size: 35px;
  }
}

.read-more {
  color: var(--main-color);
  font-weight: bold;
  text-decoration: none;
}
/* End Global Rules */

/* Start Navbar */
.navbar {
  background-color: var(--dark-color);
}
.navbar .navbar-brand {
  /* font-family: "Lalezar", sans-serif; */
  font-weight: 900;
  font-size: 18px;
  color: var(--light-color);
}
.navbar .navbar-brand img {
  width: 250px;
}
.navbar .navbar-toggler {
  outline: none !important;
  box-shadow: none !important;
  border: solid 1px var(--light-color);
  border-radius: 50%;
  padding: 10px;
}
.navbar .navbar-nav .nav-link {
  color: var(--light-color);
  padding: 10px 25px;
  margin-right: 10px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 100px;
}
.navbar .navbar-nav .nav-link:hover {
  background-color: var(--main-color);
  color: var(--light-color);
}
.navbar .navbar-nav .blog {
  border: solid 1px var(--light-color);
  color: var(--light-color);
  font-weight: 500 !important;
}
.navbar .navbar-nav .blog:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 200px;
  }
  .navbar .navbar-nav .blog {
    text-align: center;
    margin: 20px 0 10px 0;
  }
}
/* End Navbar */

/* Start Hero Section */
.hero-section {
  background-color: var(--main-color);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
  overflow: hidden;
  padding: 120px 0 0px !important;
  position: relative;
  overflow: hidden;
}
.hero-section img {
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.hero-section h1 {
  font-size: 80px;
  font-weight: bold;
  color: var(--light-color);
}
.hero-section .divider {
  width: 100px;
  height: 2px;
  background-color: var(--light-color);
}
.hero-section h2 {
  font-size: 30px;
  color: var(--light-color);
  padding-top: 20px;
  font-weight: bold;
}
.hero-section h3 {
  color: var(--light-color);
}
.hero-section p {
  color: var(--light-color);
  padding-top: 15px;
  font-weight: 400;
  font-size: 18px;
}
.hero-section .btn-main {
  background-color: var(--dark-color);
  color: white;
  font-weight: 600 !important;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: none;
}
.hero-section .btn-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background-color: var(--dark-color);
  color: white;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0 0 !important;
  }
  .hero-section h1 {
    font-size: 40px;
  }
  .hero-section .btn-mobile-reset {
    padding: 10px 20px !important;
    font-weight: 600;
  }
}
/* End Hero Section */

/* Start brands */
.brands {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.brands a {
  background-color: var(--main-color);
  padding: 10px;
  height: 100%;
  text-decoration: none;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brands a:hover {
  background-color: var(--dark-color);
}
.brands h3 {
  color: var(--light-color);
  text-align: center;
  font-size: 20px;
}
/* End brands */

/* Start Services */
.services .box {
  background-color: #e550390e;
  border-right: solid 5px var(--main-color);
  padding: 15px;
  height: 100%;
}
.services .box h3 {
  color: var(--dark-color);
  font-size: 25px;
  font-weight: 700;
}
/* End Services */

/* Start Why Choose Us */
.why-choose-us {
  background-color: var(--dark-color);
}
.why-choose-us .section-title {
  color: var(--light-color);
}
.why-choose-us p {
  color: var(--light-color);
}
.why-choose-us h3 {
  color: var(--main-color);
  font-weight: bold;
}
.why-choose-us .box {
  background-color: #030303;
  padding: 20px;
  height: 100%;
}
/* End Why Choose Us */

/* Start Contact */
.contact .btn-main {
  background-color: var(--main-color);
  color: var(--light-color);
  padding: 15px 50px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 18px;
}
/* End Contact */

/* Start Footer */
footer {
  background-color: #ffd5ce2d;
  padding-top: 20px;
}
/* End Footer */

/* Sticky Buttons */
.sticky-tools {
  position: fixed;
  bottom: 20px;
  left: 20px; /* تظهر على اليسار لتكون مريحة للإبهام */
  z-index: 9999;
  display: flex;
  flex-direction: column; /* الأزرار فوق بعضها */
  gap: 15px; /* مسافة بين الزرين */
}
.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.sticky-btn:hover {
  color: white;
  transform: scale(1.1); /* تكبير بسيط عند الوقوف عليها */
}

/* لون الواتساب */
.btn-whatsapp {
  background-color: #25d366;
}

/* لون الاتصال */
.btn-phone {
  background-color: #3742fa; /* نفس لون هوية الموقع الأزرق */
  animation: pulse-blue 2s infinite; /* نبض مستمر لجذب الانتباه */
}

/* Tooltip (نص توضيحي يظهر بجوار الزر) */
.tooltip-text {
  position: absolute;
  left: 70px; /* يظهر يمين الزر */
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  font-weight: bold;
}

.sticky-btn:hover .tooltip-text {
  opacity: 1;
}

/* Start Section 3 */
.section-3 {
  background-color: var(--dark-color);
}
.section-3 h2 {
  color: var(--light-color);
}
.section-3 p {
  color: var(--light-color);
  padding: 10px 0 !important;
}
/* End Section 3 */

/* Start Section 4 */
.section-4 h3 {
  color: var(--main-color);
  font-weight: bold;
}
/* End Section 4 */

/* FAQ */
/* تنسيق قسم الأسئلة الشائعة */
.faq-section {
  background-color: #fcfcfc; /* لون خلفية مريح جداً للعين */
}

.faq-title {
  font-weight: 800;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 15px;
}

/* خط تجميلي تحت العنوان */
.faq-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background-color: var(
    --dark-color
  ); /* لون أزرق جذاب - تقدر تغيره للون موقعك */
  border-radius: 2px;
}

/* تنسيق كارت السؤال */
.custom-accordion .accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* تأثير عند مرور الماوس (Hover) */
.custom-accordion .accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* تنسيق زر السؤال نفسه */
.custom-accordion .accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  color: #34495e;
  background-color: #ffffff;
  padding: 1.3rem 1.5rem;
  border-radius: 12px !important;
}

/* لون السؤال لما يكون مفتوح */
.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--dark-color); /* لون النص وقت الفتح */
  background-color: #f4f9ff; /* خلفية خفيفة وقت الفتح */
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

/* تعديل سهم البوتستراب ليناسب الاتجاه العربي (RTL) */
.custom-accordion .accordion-button::after {
  margin-left: 0;
  margin-right: auto;
}

/* تنسيق الإجابة */
.custom-accordion .accordion-body {
  background-color: #ffffff;
  color: #555;
  line-height: 1.8;
  padding: 1.5rem;
  font-size: 0.95rem;
}

/* Brands */

/* Start Hero Clage */
/* Start Hero Section */
.hero-clage {
  background-color: #4ab34e;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
  overflow: hidden;
  padding: 120px 0 0px !important;
  position: relative;
  overflow: hidden;
}
.hero-clage .logo-brand {
  background-color: var(--light-color);
  border-radius: 100px;
}
.hero-clage img {
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.hero-clage h1 {
  font-size: 45px;
  font-weight: bold;
  color: var(--light-color);
}
.hero-clage .divider {
  width: 100px;
  height: 2px;
  background-color: var(--light-color);
}
.hero-clage h2 {
  font-size: 30px;
  color: var(--light-color);
  padding-top: 20px;
  font-weight: bold;
}
.hero-clage h3 {
  color: var(--light-color);
}
.hero-clage p {
  color: var(--light-color);
  padding-top: 15px;
  font-weight: 400;
  font-size: 18px;
}
.hero-clage .btn-main {
  background-color: var(--dark-color);
  color: white;
  font-weight: 600 !important;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: none;
}
.hero-clage .btn-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background-color: var(--dark-color);
  color: white;
}
@media (max-width: 768px) {
  .hero-clage {
    padding: 50px 0 0 !important;
  }
  .hero-clage h1 {
    font-size: 40px;
  }
  .hero-clage .btn-mobile-reset {
    padding: 10px 20px !important;
    font-weight: 600;
  }
}
/* End Hero Clage */

/* Start Section Brand */
.section-clage-1 .btn-main,
.section-clage-2 .btn-main,
.section-clage-3 .btn-main,
.section-clage-4 .btn-main,
.clage-why-choose-us .btn-main,
.contact-clage .btn-main {
  background-color: #4ab34e;
  color: var(--light-color);
  padding: 15px 50px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
}
/* End Section Brand */

/* Start section-clage */
.section-clage-1 .section-title::after,
.section-clage-2 .section-title::after,
.section-clage-3 .section-title::after,
.section-clage-4 .section-title::after,
.clage-why-choose-us .section-title::after,
.contact-clage .section-title::after {
  background-color: #4ab34e !important;
}
.section-clage-1 h3,
.section-clage-2 h3,
.section-clage-3 h3,
.section-clage-4 h3,
.clage-why-choose-us h3,
.contact-clage h3 {
  padding-top: 10px;
  margin-top: 15px;
  font-size: 22px;
  font-weight: bold;
}

.section-clage-3 {
  background-color: var(--dark-color);
}
.section-clage-3 h2,
.section-clage-3 h3,
.section-clage-3 p {
  color: var(--light-color);
}
.section-clage-3 p a {
  color: #0055ff;
  font-size: 14px;
  text-decoration: none;
}
.section-clage-3 p a:hover {
  text-decoration: underline;
}

.clage-why-choose-us .box {
  background-color: #4ab34d0c;
  height: 100%;
  padding: 15px;
}
/* End section-clage */
