/* ===============================
   Fonts
   - Defines custom fonts used in the project.
   =============================== */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");
/* End Fonts */

/* ===============================
   Global Resets and Variables
   - Sets root variables for colors, gradients, and spacing.
   - Resets default styles for elements like body, links, and lists.
   - Includes base styles for typography and layout.
   =============================== */
:root {
  --main-color: #7338f0;
  --light-color: #fff;
  --dark-color: #090f30;
  --gray-500: #848798;
  --gray-200: #cecfd6;
  --gray-100: #e6e7ea;
}

body {
  padding: 0;
  margin: 0;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  direction: ltr;
  text-align: start;
}

/* Style the scrollbar width */
body::-webkit-scrollbar {
  width: 8px; /* Consistent width across devices */
}

/* Style the scrollbar track */

body::-webkit-scrollbar-track {
  background: rgba(57, 43, 108, 1);
  /* border-radius: 10px;  */
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Style the scrollbar thumb */
body::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 10px;
  border: 2px solid rgba(57, 43, 108, 1);
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s linear;
}

a:hover {
  text-decoration: none;
  color: var(--main-color) !important;
}

a:focus {
  text-decoration: none;
}

button,
button:hover {
  transition: all 0.3s linear;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 25px;
  overflow-wrap: anywhere;
}

ul {
  padding: 0;
  margin: 0;
  display: block;
  transition: all 0.3s linear;
}

li {
  display: block;
  list-style: none;
  transition: all 0.3s linear;
}

iframe {
  width: 100%;
  height: 100%;
}

.padding {
  padding: 0 !important;
}

img {
  max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
  outline: none !important;
}

textarea {
  resize: none;
}
.main-color {
  color: var(--main-color);
}
.gx-5 {
  --bs-gutter-x: 8rem !important;
}
/* End Resets */
/***************/
/* Start style */
.container {
  overflow: hidden;
}
.navbar-container {
  width: 100%;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 999;
}
.navbar-container ul {
  padding: 12px 24px;
  position: relative;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 255, 255, 0.4) 0%,
    rgb(255 255 255 / 50%) 100%
  );
}

.navbar-container ul::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px; /* سماكة البوردر */
  background: linear-gradient(
    to right,
    #cdcdcd,
    rgba(255, 255, 255, 0.1),
    #cdcdcd
  );

  /* حيلة لقص الداخل ويظهر كـ "بوردر" */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
/* background-size: 300% 300%;
  animation: pendulum 6s ease-in-out infinite;
}

@keyframes pendulum {
  0% {
    background-position: left top;
  }
  25% {
    background-position: right top;
  }
  50% {
    background-position: right bottom;
  }
  75% {
    background-position: left bottom;
  }
  100% {
    background-position: left top;
  }
} */
.navbar {
  max-width: 100%;
  width: 100%;
  border-radius: 15px;
  opacity: 1;
  padding: 14px;
  max-width: 100vw;
}
.navbar-container .navbar-brand img {
  max-height: 4 0px;
}
.navbar-container .navbar-nav .nav-item .nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  transition: all ease-in-out 0.3s;
  color: #1d1f13;
  font-weight: 500;
  font-size: 16px;
}
.navbar-container .navbar-nav .nav-item .nav-link:hover {
  background-color: #fafafb;
  color: #000 !important;
}
.navbar-collapse {
  /* height: 100vh; */
}
.btn {
  border-radius: 50px;
}
.btn-primary {
  background-color: #7338f0;
  border-color: #7338f0;
}
.btn-primary:focus {
  background-color: #6832db;
  border-color: #6832db;
  opacity: 0.8;
}
.btn-primary:hover {
  background-color: #6832db;
  border-color: #6832db;
  opacity: 0.8;
}
button:focus {
  box-shadow: none !important;
}
.btn-outline {
  border: 1px solid var(--gray-200);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
/* End Navbar */

/***************/
/* Start Hero */
.hero-section {
  /* padding-top: 50px; */
  padding-bottom: 50px;
  background-color: #fff;
  position: relative;
}
.hero-section .hero-shape {
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  bottom: -50px;
  background: linear-gradient(180deg, #fefefe 0%, #f5f5f5 61.64%);
}
.hero-section .middle-content {
  padding-top: 300px;
}
.hero-section .hero-img {
  max-width: 250px;
  margin: auto;
  opacity: 0;
}
.hero-section h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
}
.hero-section p {
  color: var(--gray-500);
}
.hero-section p b {
  color: var(--dark-color);
}
.hero-section .btn-outline {
  padding: 12px 20px;
}
.hero-thumbs {
  max-width: 750px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.hero-thumbs .hero-notsh {
  position: absolute;
  width: 105px;
  height: 105px;
}
.hero-thumbs img:nth-child(2) {
  left: 0;
  top: 50px;
}
.hero-thumbs img:nth-child(3) {
  left: 0;
  bottom: 80px;
}

.hero-thumbs img:nth-child(4) {
  right: 0;
  top: 50px;
}
.hero-thumbs img:nth-child(5) {
  right: 0;
  bottom: 80px;
}
.hero-notsh {
  display: inline-block; /* عشان التحريك يشتغل مضبوط */
  animation: floatRotate 3s ease-in-out infinite;
}

.single-side-item > h5 {
  display: none;
}

@keyframes floatRotate {
  0% {
    transform: translateX(-5px) rotate(0deg);
  }
  50% {
    transform: translateX(5px) rotate(0deg);
  }
  100% {
    transform: translateX(-5px) rotate(-0deg);
  }
}
@keyframes floatRotate2 {
  0% {
    transform: translateX(5px) rotate(0deg);
  }
  50% {
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    transform: translateX(5px) rotate(-0deg);
  }
}
.svg-line {
  clip-path: inset(0 0% 0 0); /* مخفي من اليمين */
}
.hero-side-content {
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
.single-side-item {
  text-align: center;
}
.single-side-item.rtl {
  direction: rtl;
}
.single-side-item.rtl .in-line h5 {
  right: 40px;
  margin-inline-end: 30px;
}

.single-side-item.rtl .in-line h5.no-space {
  right: 0px;
  margin-inline-end: 30px;
}
.single-side-item img.daleel-product {
  max-width: 65px;
  margin-inline-start: 60px;
  /* animation: floatRotate 3s ease-in-out infinite;
  animation-delay: 2s; */
}

.single-side-item.bottom .in-line h5 {
  top: unset;
  bottom: 10px;
}
.single-side-item.bottom .circly-point {
  top: unset;
  bottom: -5px;
}
.circly-point {
  width: 10px;
  height: 10px;
  background-color: #000;
  box-shadow: 0 4px 13.4px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -5px;
  /* animation: floatRotate 3s ease-in-out infinite; */
}
.single-side-item.rtl .circly-point {
  /* animation: floatRotate2 3s ease-in-out infinite; */
}
.single-side-item.rtl img.daleel-product {
  /* animation: floatRotate2 3s ease-in-out infinite; */
}
.in-line {
  position: relative;
}
.in-line h5 {
  position: absolute;
  top: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-inline-start: 30px;
  /* animation: floatRotate2 3s ease-in-out infinite; */
}
.single-side-item.rtl .in-line h5 {
  /* animation: floatRotate 3s ease-in-out infinite; */
}
/***************/
/* Start Numbers */
.numbers-section {
  padding: 100px 0;
  background-image: url(../images/stat-bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.headding h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
}
.headding h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
}
.headding p {
  color: var(--gray-500);
}
.headding span {
  color: var(--gray-500);
}
.numbers-content {
  margin-top: 48px;
}
.single-number-box {
  padding: 24px;
  border-radius: 24px;
  background-color: var(--light-color);
}
.single-number-box h3 {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  justify-content: center;
}
.single-number-box h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0px;
  text-align: center;
}
.single-number-box p {
  font-size: 16px;
  font-style: normal;
  color: var(--gray-500);
}
.single-side-item.first .svg-lines .svg-line:last-child,
.single-side-item.second .svg-lines .svg-line:last-child {
  margin-top: -30px;
}
.single-side-item.third .svg-lines .svg-line:first-child,
.single-side-item.fourth .svg-lines .svg-line:first-child {
  margin-bottom: -30px;
}
/* End Partners */
/***************/
/* Start Partners */
.partners {
  padding: 100px 0;
}
.single-partner-catigorey {
  margin-top: 48px;
}
.single-partner-catigorey h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  color: var(--gray-500);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-color);
  transition: all ease-in-out 0.3s;
}
.partners .partners-items {
  /* gap: 50px; */
  margin-top: 32px;
  flex-wrap: wrap;
}
.single-logo-item {
  flex: 0 0 25%;
  margin-bottom: 32px;
  padding: 0px 12px;
}
.partners .partners-items .single-logo-item img {
  filter: grayscale(1);
  transition: all ease-in-out 0.3s;
  max-height: 28px;
  opacity: 0.8;
}
.single-partner-catigorey:hover h4 {
  color: var(--main-color);
}
.single-partner-catigorey:hover .partners-items .single-logo-item img {
  filter: unset;
  opacity: 1;
}
/* End Method */
/***************/
/* Start Method */
.method {
  background-image: url(../images/stat-bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.method .container {
  padding: 100px 0 0 0;
}
.method .headding h2 {
  font-size: 28px;
}
.mask-text {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  width: max-content;
  border: 1px solid var(--light-color);
  transform: rotate(-20deg);
}
.mask-text h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}
.mask-text p {
  max-width: 260px;
  font-size: 13px;
}

.shape-text h5 {
  font-family: "Caveat", cursive;
  font-size: 27.411px;
  font-style: normal;
  font-weight: 700;
}
.max-content {
  width: max-content;
}
.group-app-img {
  margin-top: -150px;
}
.love-box span:nth-child(1) {
  width: 35px;
  height: 35px;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0 1.445px 5.42px 3.613px rgba(0, 0, 0, 0.03);
  opacity: 0.6;
}
.love-box span:nth-child(2) {
  width: 55px;
  height: 55px;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0 1.445px 5.42px 3.613px rgba(0, 0, 0, 0.03);
  margin-inline-start: 30px;
}
.method .single-number-box h4 {
  text-align: start;
}

/* End values */
/***************/
/* Start values */

.daleel-values {
  padding: 100px 0;
  background-image: url(../images/stat-bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.daleel-values .container {
  overflow: unset;
}
.daleel-values .headding {
  margin-bottom: 48px;
}

.single-value-item {
  padding: 10px 16px;
  border-radius: 20px;
  box-shadow: 0 6.848px 13.696px 0 rgba(0, 0, 0, 0.05);
  background-color: #facda4;
  height: 100%;
  /* transform: translateY(80px) rotate(0deg); */
}
.single-value-item h3 {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  margin: 12px 0 8px 0;
}
.single-value-item p {
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
.single-value-item:nth-child(2) {
  background: rgba(202, 237, 209, 0.4);
}
.value-card-box {
  /* margin-top: 200px; */
  /* padding-bottom: 100px; */
}

/*****************/
.Products {
  padding: 100px 0;
}
.single-solution {
  padding: 40px 24px 30px;
  border: 1px solid #e6e7ea;
  border-radius: 14px;
  box-shadow: inset 2px 0px 30px 2px rgb(0 0 0 / 4%);
}
.single-solution img {
  max-width: 80px;
}
.single-solution h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}
.single-solution p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.single-solution a {
  padding: 8px 16px;
}
.single-solution a:hover {
  color: #fff !important;
}
.Products .headding {
  margin-bottom: 48px;
}
.sol-item {
  transition: all ease-in-out 0.55s;
}
.single-solution:hover .sol-item {
  transform: translateY(-55px);
}
/****************************************
****************************************
******************benchmark*************/
.benchmark {
  padding: 100px 0;
}
.single-benchmark-item {
  padding: 32px;
  border-radius: 24px;
  background-image: url(../images/stat-bg.svg);
  display: grid;
  align-items: end;
}
.single-benchmark-item.strong {
  height: 300px;
}
.single-benchmark-item h2 {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
}
.single-benchmark-item p {
  color: var(--gray-500);
}
/****************************************
****************************************
******************about-daleel*************/
.about-daleel {
  padding: 100px 0;
  background-image: url(../images/stat-bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.daleel-id {
  padding: 200px 50px 50px 50px;
  background-image: url(../images/id.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  margin-bottom: 170px;
}
/* .about-daleel .row:first-child {
  padding-bottom: 170px;
} */
.about-daleel .about-image {
  padding: 0px 0px 40px;
}
.about-daleel .about-image img {
  border-radius: 14px;
  border: 12px solid #fafafa;
  box-shadow: 0 10.573px 20px 0 rgba(0, 0, 0, 0.09);
}
.about-daleel .single-number-box h4 {
  text-align: start;
}

/****************************************
****************************************
******************solution*************/
.solution {
  padding: 10px 0 100px;
  background-image: url(../images/Colors.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* visibility: hidden; */
}
.solution .container {
  padding: 100px 0 100px;
}
.solution .single-sl-item {
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  background: #fff;
  position: relative;
  z-index: 2;
  box-shadow: inset 2px 0px 30px 2px rgb(0 0 0 / 4%);
}
.single-sl-item::after {
  right: 0;
  top: -20px;
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: var(--main-color);
}
.single-sl-item.no-after::after {
  display: none;
}

.center .single-sl-item::after {
  left: 0;
  right: unset;
}
.solution .single-sl-item h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.solution .single-sl-item p {
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
}
.solution .col-lg-4 {
  min-height: 650px;
}
.daleel-logo-cyrcle {
  width: 260px;
  height: 260px;
  border-radius: 1000px;
  border: 1px solid var(--gray-100);
  margin: auto;
  margin-top: 32px;
  box-shadow: 0 17.219px 34.438px 0 rgba(0, 0, 0, 0.12);
  position: relative;
}
.daleel-logo-cyrcle img {
  animation: pulseScale 3s ease-in-out infinite;
}
/* .daleel-logo-cyrcle::before {
  position: absolute;
  width: 180%;
  height: 180%;
  content: "";
  border-radius: 1000px;
  background: linear-gradient(
    to right,
    #7338f0,
    rgba(215, 185, 252, 0.199),
    #7338f0
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
} */

.grid-item {
  display: grid;
  align-items: end;
  justify-content: center;
  height: 100%;
}
.grid-item.center {
  display: grid;
  align-items: end;
  justify-content: center;
  height: 100%;
}
.grid-item.center .single-sl-item {
  margin-bottom: 150px;
}

.daleel-logo-cyrcle .circle-border {
  width: 200%;
  height: 200%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* عشان يفضل متمركز */
  animation: spin 8s linear infinite; /* دوران */
}

.daleel-logo-cyrcle .circle-border.second {
  width: 270%;
  height: 270%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* عشان يفضل متمركز */
  animation: spinx 8s linear infinite; /* دوران */
}
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinx {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes pulseScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07); /* يكبر 10% */
  }
}

/******************
*******EARTH**********
*********************/
.earth {
  padding: 100px 0;
  background-image: url(../images/grid\ lines.svg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.earth-container {
  margin-top: 80px;
  position: relative;
  padding-bottom: 20px;
}
.single-earth-count {
  border-radius: 15.445px;
  background: #fff;
  box-shadow: 0 12.356px 24.711px 0 rgba(0, 0, 0, 0.12);
  padding: 12px 14px;
  display: block;
  text-align: start;
  width: fit-content;
  position: absolute;
  z-index: 2;
}
.single-earth-count h3 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  color: #269420;
}
.single-earth-count h5 {
  font-size: 14px;
  font-weight: 600;
}
.single-earth-count:nth-of-type(1) {
  margin: auto;
  position: relative;
}
.single-earth-count:nth-of-type(2) {
  left: 200px;
  bottom: 30%;
}
.single-earth-count:nth-of-type(3) {
  right: 100px;
  bottom: 0;
  top: 0;
  margin: auto;
  height: max-content;
}
.single-earth-count:nth-of-type(4) {
  bottom: 30px;
  right: 25%;
}

.earth-base {
  position: absolute;
}

/******************
*******units**********
*********************/
.units {
  padding: 100px 0 60px;
  background-image: url(../images/stat-bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.units .headding {
  margin-bottom: 48px;
}
.single-unit {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  width: max-content;
  margin-bottom: 48px;
  width: 26%;
}
.single-unit h2 span {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
}
.single-unit p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: var(--gray-500);
}
/******************
*******growth**********
*********************/
.growth {
  padding: 100px 0;
  background-image: url(../images/stat-bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-growth-item {
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 20px 0 rgba(15, 34, 67, 0.06),
    0 0 1px 0 rgba(15, 34, 67, 0.08);
  background: #fff;
  position: relative;
}
.single-growth-item h2 {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  color: #2fb128;
  display: flex;
}
.single-growth-item h4 {
  font-size: 24px;
  font-weight: 700;
}
.single-growth-item p {
  font-size: 17px;
  font-weight: 450;
  color: var(--gray-500);
}
.single-line .line {
  height: 1px;
  width: 100%;
  background-color: #f4f4f4;
}
.single-line {
  padding-bottom: 60px;
}
.chart-items {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 22px;
  padding-inline-start: 40px;
}
.single-col {
  text-align: center;
}
.single-col span {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  color: var(--gray-500);
}
.single-col h6 {
  font-size: 12px;
  margin-top: 8px;
}
.single-col .col-chart {
  width: 40px;
  height: 90px;
  background-color: var(--gray-200);
  border-radius: 4px 4px 0px 0;
}
.single-col:nth-of-type(2) .col-chart {
  height: 115px;
  background-color: #b5b7c1;
}
.single-col:nth-of-type(3) .col-chart {
  height: 130px;
  background-color: #9d9fac;
}

.single-col:nth-of-type(4) .col-chart {
  height: 180px;
  background-color: #848798;
}

.single-col:nth-of-type(5) .col-chart {
  height: 240px;
  background-color: #6b6f83;
}

.single-col:nth-of-type(6) .col-chart {
  height: 300px;
  background-color: #53576e;
}

.single-growth-item svg {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
}
.line-chart {
  clip-path: inset(0 0% 0 0); /* مخفي من اليمين */
}

/***********************
******team-section******
***********************/
.team-section {
  padding: 100px 0;
}
.single-team {
  border: 1px solid #eaecf0;
  background: #fff;
}
.single-team .t-image {
  width: 100%;
  height: 230px;
}
.single-team .t-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100);
  transition: ease-in-out 0.3s;
}
.single-team:hover .t-image img {
  filter: grayscale(0);
}
.t-info {
  padding: 16px;
}
.t-info h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}
.t-info h6 {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.t-info p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.teams {
  margin-top: 48px;
}

/*****************/
.g-container {
  margin: 0;
  background: radial-gradient(
    circle at center,
    #3b1c6e 0%,
    #1a0b2e 40%,
    #0b0015 100%
  );
  padding: 170px 0;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  position: relative;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  grid-auto-rows: 60px;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.grid-item-box {
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.4;
  transition: 1.2s ease, opacity 1.2s ease;
  margin: 0.8px;
}

.grid-item-box.active {
  background: rgba(255, 255, 255, 0.03);
  opacity: 1;
}

.grid-item-box:hover {
  background: rgba(255, 255, 255, 0.2);
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  padding: 20px;
  pointer-events: none;
}

.content h2 {
  font-size: 64px;
  font-weight: bold;
  background: linear-gradient(180deg, #fff 0%, #ebdcfe 20%, #d7b9fc 100%);
  -webkit-background-clip: text; /* لتطبيق الخلفية على النص */
  -webkit-text-fill-color: transparent; /* يجعل النص شفاف ليظهر التدرج */
  background-clip: text; /* دعم إضافي للمتصفحات الحديثة */
  color: transparent;
}

.content p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
  color: #dde0ff;
}

.g-container .btn {
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  margin-top: 20px;
  transition: all 0.3s ease;
  pointer-events: all;
}
.g-container .btn:hover {
  color: #fff !important;
}
/*************/
footer {
  padding: 64px 0;
  background-image: url(../images/stat-bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(255 255 255 / 60%);
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.footer-content {
  padding: 64px;
  border-radius: 24px;
  background-color: #f4f4f4;
  position: relative;
  z-index: 2;
}

.footer-single-item h2 {
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 80px;
}
.footer-links ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links ul li {
  width: 50%;
  margin-bottom: 10px;
}
.footer-content p {
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
}
.llc {
  position: relative;
  z-index: 8;
}
/*  */
#page-loader {
  position: fixed;
  inset: 0;
  background: #fff; /* غيّر اللون حسب الهوية */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

#page-loader .loader-logo img {
  width: 100px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}
.lazyload,
.lazyloading,
.lazyloaded {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}
