header.header {
  height: 100vh;
  background-color: var(--bg-section);
}

header .main-container {
  height: 100%;
}

.nav-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

nav {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  background-color: var(--bg-section);
}

nav {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.navbar-links {
  display: flex;
  gap: 10px;
}

.navbar-links li a {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links li a {
  text-decoration: none;
  position: relative;
  padding: 8px;
}

.navbar-links li a::before,
.navbar-links li a::after {
  content: "";
  position: absolute;
  display: block;
  border: 0 solid transparent;
  width: 0%;
  height: 0%;
  transition: all 0.3s ease;
}

.navbar-links li a::after {
  top: 0;
  left: 0;
  background-image: url("../assets/images/shape-title.webp");
  background-size: contain;
  transform: rotate(-90deg);
}

.navbar-links li a::before {
  right: 0;
  bottom: 0;
  background-image: url("../assets/images/shape-title.webp");
  background-size: contain;
  transform: rotate(90deg);
}


.navbar-links li.active a::before,
.navbar-links li.active a::after,
.navbar-links li a:hover::before,
.navbar-links li a:hover::after {
  width: 10px;
  height: 10px;
  border-color: var(--main-color);
}


.navbar-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  width: 270px;
  background-color: var(--white-color);
  border-radius: 0 0 60px 60px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-links li a::before,
.navbar-links li a::after {
  content: "";
  position: absolute;
  display: block;
  border: 0 solid transparent;
  width: 0%;
  height: 0%;
  transition: all 0.3s ease;
}



.navbar-links li.active a::before,
.navbar-links li.active a::after,
.navbar-links li a:hover::before,
.navbar-links li a:hover::after {
  width: 10px;
  height: 10px;
  border-color: var(--main-color);
}


.navbar-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  width: 270px;
  background-color: #FFFFFF;
  border-radius: 0 0 60px 60px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-logo img {
  height: 100%;
  object-fit: contain;
}

.navbar-actions {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}



/* ============= Hero Section ============= */

.hero {
  height: calc(100vh - 100px);
  padding-top: 10px;
  position: relative;
}


/* BG-Hero */
.grid-bg {
  position: absolute;
  inset: 0;
  display: grid;

  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, calc((100vh - 100px) / 5));
  height: 100%;
  z-index: 0;
}

/* مربع */
.grid-bg div {
  border: 1px solid rgb(138 214 231 / 10%);
  transition: 0.3s;
}

.grid-bg div:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


.hero-content {

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.hero .main-title {

  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

.hero .main-title h1 {
  font-size: clamp(25px, 4vw, 40px);
  font-weight: 700;
  background: linear-gradient(90deg, #FBAF2D, #008AA8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .main-title p {
  font-size: clamp(14px, 3vw, 19px);
}


.hero .image {
  position: relative;
  width: 100%;
}

.hero .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero .our-features .item {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, var(--main-color), var(--second-color));
  padding: 8px 15px;
  border-radius: 25px;
  color: #fff;
}

.hero .our-features .item img {}

.hero .our-features .img-container {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: flex;
}

.hero .our-features .img-container {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: float 4s ease-in-out infinite;
}

.hero .our-features .img-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1.5px;
  background: conic-gradient(from var(--angle, 0deg),
      transparent 0%,
      rgba(255, 255, 255, 0.9) 20%,
      rgba(255, 255, 255, 0.1) 40%,
      transparent 60%,
      rgba(255, 255, 255, 0.5) 80%,
      transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 3s linear infinite;

}

.hero .our-features .img-container::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 12%;
  width: 40%;
  height: 25%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50%;
  filter: blur(4px);
  transform: rotate(-20deg);
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin {
  to {
    --angle: 360deg;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-3px);
  }
}




.hero .our-features .feature-item1 {
  position: absolute;
  top: 10%;
  left: 18%;
}

.hero .our-features .feature-item2 {
  position: absolute;
  top: 65%;
  left: 14%;

}



.hero .our-features .feature-item3 {
  position: absolute;
  top: 20%;
  right: 22%;

}

.hero .our-features .feature-item4 {
  position: absolute;
  top: 75%;
  right: 22%;
}





/* ============= Our Sponsers  ============= */

.our-sponsers-section {
  position: relative;
  height: 95px;
}

.our-sponsers {

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px;
  background: rgba(230, 243, 247, 1);


  .sponser-item {
    max-width: 200px;
    height: 40px;
    object-fit: contain;
  }



  .sponser-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }



  .partners-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    height: 75px;
    width: 150px;
  }

  .partners-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
  }

  .partners-container {
    width: 100%;
  }

  .partners-container .owl-carousel.seconed .owl-stage {
    /* display: flex;
          flex-direction: row-reverse; */
    transition-timing-function: linear !important;
  }
}





/* ============= Cursor ============= */

/* الكيرسور */
.cursor {
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor svg {
  width: 100%;
}

/* ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #1d9e75;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}




/* ============= menu_responsive ============= */


/* mune_respossive */



.navicon {
  color: var(--color-black);
  cursor: pointer;
  height: 18px;
  display: block;
  transform: rotate(0deg) scaleX(-1);
  transition: 0.2s ease-in-out;
  width: 35px;
}

.navicon__item {
  background: var(--main-color);
  border-radius: 70px;
  display: block;
  height: 2px;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  width: 100%;
}

.navicon__item:nth-child(1) {
  top: 0;
}

.navicon.is-active .navicon__item:nth-child(1) {
  left: 50%;
  top: 8px;
  width: 0;
}

.navicon:hover .navicon__item:nth-child(2),
.navicon:hover .navicon__item:nth-child(3) {
  width: 75%;
}

.navicon__item:nth-child(2) {
  top: 8px;
}

.navicon.is-active .navicon__item:nth-child(2) {
  transform: rotate(45deg);
  width: 100%;
}

.navicon__item:nth-child(3) {
  top: 8px;
}

.navicon.is-active .navicon__item:nth-child(3) {
  transform: rotate(-45deg);
  width: 100%;
}

.navicon__item:nth-child(4) {
  top: 16px;
}

.navicon.is-active .navicon__item:nth-child(4) {
  left: 50%;
  top: 8px;
  width: 0;
}

.menu-div {
  display: none;
}


.menu_responsive {
  position: fixed;
  box-shadow: 0 0 4px #23232359;
  z-index: 999;
  width: 310px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  height: 100%;

  overflow: auto;
  background: var(--bg-color);
  align-items: center;
  gap: 20px;
  overflow-x: hidden;
  top: 0;
  right: 0;
  transition: all 0.3s linear;
  padding: 25px 0;
  transform: translateX(102%);
}

.element_menu_responsive>ul {
  margin: 0 auto 0 0;
  text-align: center;
  padding: 30px 0px 0 0;
}

.element_menu_responsive {
  width: 100%;
}

.element_menu_responsive>ul>li {
  display: block;
  margin: 35px 0;
}

.element_menu_responsive>ul>li>a {
  font-size: 20px;
  font-family: "font_main";
  color: var(--color-black);
  display: flex;
  justify-content: center;
  gap: 15px;
}

.element_menu_responsive ul li:hover a {
  color: var(--color-main);
}

.menu_responsive.active {
  transform: translateX(0);
}






.menu_responsive .drop-menu {
  position: relative;
}

.drop-element-responsive {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 10px;
  z-index: 1000;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}


.menu_responsive .drop-menu:hover a {
  color: var(--color-Primary1) !important;

}



.drop-element-responsive.active {
  opacity: 1;
  visibility: visible;
  width: 90%;

}

.drop-element-responsive ul li {
  padding-bottom: 5px;
}

.drop-element-responsive ul li:hover {
  color: var(--color-Primary2) !important;
}

.remove-mune {
  position: absolute;
  top: 30px;
  left: 10px;
  background-color: var(--color-Primary5);
  border-radius: 10px;
  padding: 5px;
}

.remove-mune span {
  width: 30px;
  height: 30px;
  display: block;
  transition: all 0.2s linear;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);

  transition-delay: 0.8s;
}

.remove-mune span::after {
  content: "";
  height: 2px;
  background-color: #54595f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  transition: all 0.6s linear;
}

.remove-mune span::before {
  content: "";
  height: 2px;
  background-color: #54595f;
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  width: 100%;
  transition: all 0.2s linear;

  transition-delay: 0.6s;
}


.menu_responsive.active .remove-mune span::before {
  transform: rotate(90deg) translateY(0%);
}

.menu_responsive.active .remove-mune span {
  transform: rotate(45deg);
}

.element_menu_responsive ul li>a {
  color: var(--main-color);
  transform: translateY(100%);
  transition: all 0.2s linear;
  transition-delay: 0.4s;
  display: block;
  opacity: 0;
}



.menu_responsive {
  transition-delay: 1s;
}

.menu_responsive.active {
  transition-delay: 0.3s;
}

.menu_responsive.active .element_menu_responsive ul li>a {
  transform: translateY(0%);
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(1)>a {
  transition-delay: 0.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(2)>a {
  transition-delay: 0.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(3)>a {
  transition-delay: 0.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(4)>a {
  transition-delay: 1s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(5)>a {
  transition-delay: 1.2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(6)>a {
  transition-delay: 1.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(7)>a {
  transition-delay: 1.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(8)>a {
  transition-delay: 1.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(9)>a {
  transition-delay: 2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(10)>a {
  transition-delay: 2.2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(11)>a {
  transition-delay: 2.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(12)>a {
  transition-delay: 2.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(13)>a {
  transition-delay: 2.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(14)>a {
  transition-delay: 3s;
  opacity: 1;
}




.bg_menu {
  background-color: var(--color-white);
  width: 100%;
  z-index: -1;
}

.bg_menu {
  background-color: #23232338;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 27;
  top: 0;
  transition: all 0.3s linear;
  transform: translateX(-100%);
}

.bg_menu.active {
  transform: translateX(0%);
}
