@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");

*,
body {
  margin: 0;
}
body {
  overflow-x: hidden;
  font-family: ping, sans-serif;
}
html {
  --mainColor: #ff881b;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--mainColor);
  opacity: 0.8;
}
::-webkit-scrollbar-corner {
  background-color: transparent;
}
/* ping font */
@font-face {
  font-family: "ping";
  font-style: normal;
  font-weight: 100;
  src: url("./fonts/PingAR+LT-Thin.otf");
  src: local(""),
    /* Modern Browsers */ url("./fonts/PingAR+LT-Thin.otf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "ping";
  font-style: normal;
  font-weight: 200;
  src: url("./fonts/PingAR+LT-ExtraLight.otf");
  src: local(""),
    /* Modern Browsers */ url("./fonts/PingAR+LT-ExtraLight.otf")
      format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "ping";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/PingAR+LT-Light.otf");
  src: local(""),
    /* Modern Browsers */ url("./fonts/PingAR+LT-Light.otf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "ping";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/PingAR+LT-Regular.otf");
  src: local(""),
    /* Modern Browsers */ url("./fonts/PingAR+LT-Regular.otf")
      format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "ping";
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/PingAR+LT-Medium.otf");
  src: local(""),
    /* Modern Browsers */ url("./fonts/PingAR+LT-Medium.otf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "ping";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/PingAR+LT-Bold.otf");
  src: local(""),
    /* Modern Browsers */ url("./fonts/PingAR+LT-Bold.otf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "ping";
  font-style: normal;
  font-weight: 800;
  src: url("./fonts/PingAR+LT-Heavy.otf");
  src: local(""),
    /* Modern Browsers */ url("./fonts/PingAR+LT-Heavy.otf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "ping";
  font-style: normal;
  font-weight: 900;
  src: url("./fonts/PingAR+LT-Black.otf");
  src: local(""),
    /* Modern Browsers */ url("./fonts/PingAR+LT-Black.otf") format("truetype");
  font-display: swap;
}
/* ping font */
.custom-container {
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
}
/* .custom-container {
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
}
@media (min-width: 400px) {
  .custom-container {
    width: 95%;
  }
}
@media (min-width: 640px) {
  .custom-container {
    width: 600px;
  }
}
@media (min-width: 768px) {
  .custom-container {
    width: 740px;
  }
}
@media (min-width: 1024px) {
  .custom-container {
    width: 900px;
  }
}
@media (min-width: 1280px) {
  .custom-container {
    width: 1150px;
  }
}
@media (min-width: 1536px) {
  .custom-container {
    max-width: 80%;
  }
} */
/* General Styles */
.bg-section {
  background-image: url("images/landing.webp");
  background-size: cover;
  background-position: center;
  min-height: 196px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.5rem 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .bg-section {
    height: 550px;
  }
}
@media (min-width: 1024px) {
  .bg-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    height: 100vh;
  }
}

.bg-section img {
  height: 5rem;
  width: 5rem;
}
@media (min-width: 768px) {
  .bg-section img {
    width: 7rem;
    height: 7rem;
  }
}
@media (min-width: 1024px) {
  .bg-section img {
    width: 10rem;
    height: 10rem;
  }
}

.section1-content {
  transform: translateY(10%);
}
@media (min-width: 768px) {
  .section1-content {
    transform: translateY(-20%);
    /* width: 90%; */
  }
}
.layer_dark_blue {
  position: relative;
  z-index: 2;
  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #262f6acf;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
}

.text-4xl-5xl {
  font-size: 2.25rem; /* Tailwind's text-4xl */
  line-height: 2.5rem;
}

@media (min-width: 1024px) {
  .text-4xl-5xl {
    font-size: 3rem; /* Tailwind's text-5xl */
    line-height: 1;
  }
}

@media (min-width: 1536px) {
  .text-4xl-5xl {
    font-size: 3.5rem; /* 2xl:text-[3.5rem] */
    line-height: 1;
  }
}

.text-3xl-4xl {
  font-size: 1.875rem; /* Tailwind's text-3xl */
  line-height: 2.25rem;
}

@media (min-width: 1024px) {
  .text-3xl-4xl {
    font-size: 2.25rem; /* Tailwind's text-4xl */
    line-height: 2.5rem;
  }
}

@media (min-width: 1536px) {
  .text-3xl-4xl {
    font-size: 3rem; /* 2xl:text-5xl */
    line-height: 1;
  }
}

.text-2xl-3xl {
  font-size: 1.5rem; /* Tailwind's text-2xl */
  line-height: 2rem;
}

@media (min-width: 1024px) {
  .text-2xl-3xl {
    font-size: 1.875rem; /* Tailwind's text-3xl */
    line-height: 2.25rem;
  }
}

@media (min-width: 1536px) {
  .text-2xl-3xl {
    font-size: 2.25rem; /* 2xl:text-4xl */
    line-height: 2.5rem;
  }
}

.text-xl-2xl {
  font-size: 1.25rem; /* Tailwind's text-xl */
  line-height: 1.75rem;
}

@media (min-width: 1024px) {
  .text-xl-2xl {
    font-size: 1.5rem; /* Tailwind's text-2xl */
    line-height: 2rem;
  }
}

@media (min-width: 1536px) {
  .text-xl-2xl {
    font-size: 1.875rem; /* 2xl:text-3xl */
    line-height: 2.25rem;
  }
}

.text-l-xl {
  font-size: 1.125rem; /* Tailwind's text-lg */
  line-height: 1.75rem;
}

@media (min-width: 1024px) {
  .text-l-xl {
    font-size: 1.25rem; /* Tailwind's text-xl */
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px) {
  .text-l-xl {
    font-size: 1.5rem; /* 2xl:text-2xl */
    line-height: 2rem;
  }
}

.text-base-l {
  font-size: 1rem; /* Tailwind's text-base */
  line-height: 1.5rem;
}

@media (min-width: 1024px) {
  .text-base-l {
    font-size: 1.125rem; /* Tailwind's text-lg */
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px) {
  .text-base-l {
    font-size: 1.25rem; /* 2xl:text-xl */
    line-height: 1.75rem;
  }
}

.text-sm-base {
  font-size: 0.875rem; /* Tailwind's text-sm */
  line-height: 1.25rem;
}

@media (min-width: 1024px) {
  .text-sm-base {
    font-size: 1rem; /* Tailwind's text-base */
    line-height: 1.5rem;
  }
}

@media (min-width: 1536px) {
  .text-sm-base {
    font-size: 1.125rem; /* 2xl:text-lg */
    line-height: 1.75rem;
  }
}

.text-xs-sm {
  font-size: 0.75rem; /* Tailwind's text-xs */
  line-height: 1rem;
}

@media (min-width: 1024px) {
  .text-xs-sm {
    font-size: 0.875rem; /* Tailwind's text-sm */
    line-height: 1.25rem;
  }
}

@media (min-width: 1536px) {
  .text-xs-sm {
    font-size: 1rem; /* 2xl:text-base */
    line-height: 1.5rem;
  }
}

.section-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.bg-color1 {
  background-color: rgb(255 136 27 / 0.05);
}
.bg-color2 {
  background-color: rgb(245 245 245);
}

.bg-white {
  background-color: #fff;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.text-center {
  text-align: center;
}

.text-primary {
  font-weight: 600;
}

.text-secondary {
  color: #6c757d;
  margin-top: 0.5rem;
}

.translate-center {
  transform: translateY(-20%);
}

.logo {
  width: 6rem;
  height: 6rem;
}

.heading {
  color: #fff;
  margin-top: 0.25rem;
  font-weight: bold;
}

/* Buttons Group */
.buttons-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

@media (min-width: 768px) {
  .buttons-group {
    gap: 1rem;
  }
}

.store-img {
  height: 40px;
  transition: transform 0.3s ease;
}

.store-img:hover {
  transform: translateY(-5px);
}
@media (min-width: 768px) {
  .store-img {
    height: 55px;
  }
}

/* Contact Section */
@media (max-width: 600px) {
  .contact-content {
    text-align: start;
  }
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  /* background: #f8f9fa; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: scale(1.05);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
}

@media (min-width: 768px) {
  .contact-icon {
    width: 2rem;
    height: 2rem;
  }
}

.contact-info {
  flex: 1;
}
@media (min-width: 400px) {
  .contact-info {
    padding-inline-end: 2rem;
  }
}
@media (min-width: 768px) {
  .contact-info {
    padding-inline-end: 4rem;
  }
}
@media (min-width: 1024px) {
  .contact-info {
    padding-inline-end: 5rem;
  }
}

.contact-text {
  text-align: start;
  font-size: 0.875rem;
  color: #000;
}

.contact-action {
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  padding: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
}
@media (min-width: 768px) {
  .contact-action {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.25rem;
  }
}
/* .contact-action {
  span {
    height: 100%;
  }
} */
/* Social Icons */
.social-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .social-group {
    gap: 1rem;
  }
}

.social-icon {
  width: 2rem;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .social-icon {
    width: 2.5rem;
  }
}
@media (min-width: 1536px) {
  .social-icon {
    width: 3rem;
  }
}

.social-icon:hover {
  transform: translateY(-5px);
}
.text-small {
  font-size: 13px; /* يمكنك تعديل الحجم حسب الرغبة */
  font-weight: normal; /* الخط غير عريض */
  line-height: 1.5; /* لضبط المسافة بين الأسطر */

}
