@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --main-color: #000000;
  --second-color: #F9A861;
  --third-color: #717174;

  --white-color: #ffffff;
  --black-color: #000000;
  --placeholder-color: #a1a1a1;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}


[dir="rtl"] body {
  font-family: "Cairo", sans-serif;
}

html,
body {
  scroll-behavior: auto !important;
  overflow-x: hidden;
  font-family: "PT Sans", sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
}

/* ::-webkit-scrollbar-track {
  background: transparent;
} */

::-webkit-scrollbar-thumb {
  background-color: var(--second-color);
  border-radius: 4px;
}




.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--second-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 10px 20px 10px 28px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;

  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  span {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
  }

  i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }



  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.5s ease;
  }

  &:hover {
    background: var(--second-color);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow:
      0 12px 40px 0 rgba(0, 0, 0, 0.5),
      inset 0 0 0 1px rgba(255, 255, 255, 0.3),
      0 0 30px rgba(255, 255, 255, 0.2);
    filter: brightness(1.1);

    &::before {
      left: 100%;
    }
  }

  &:active {
    transform: translateY(-1px);
  }
}

.btn-send-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  i {
    transition: transform 0.4s ease;
    transform: rotate(-45deg);
  }

  &:hover {
    background: var(--white-color);
    color: var(--second-color);
    border-color: var(--white-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);

    i {
      transform: rotate(0deg);
    }
  }

  &:active {
    transform: scale(1.05) translateY(-3px);
  }
}

.header-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;

    width: fit-content;
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--second-color);
  }

  h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--second-color);
  }

  p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    color: var(--black-color);
    opacity: 0.7;
  }
}

/* ================================
   SOCIAL ICONS
================================ */
.social-icon {
  inset-inline-start: 0 !important;
  margin-inline-start: 16px;
  margin-bottom: 50px;
  width: fit-content;
  height: fit-content;
  z-index: 999;

  a {
    background: var(--second-color) !important;
    color: var(--white-color);
    border-radius: 50px;
    margin: 0.3rem;
    text-decoration: none;
    width: 55px;
    height: 55px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    border: none;

    &:hover {
      background: var(--second-color) !important;
      filter: brightness(1.1);
      color: var(--white-color);
      transform: scale(1.05);

    }
  }
}

.back-to-top {
  position: fixed;
  bottom: 50px;
  inset-inline-end: 30px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background: var(--second-color) !important;
  color: var(--white-color);

  border-radius: 50px;
  font-size: 25px;
  text-decoration: none;
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  z-index: 998;
  cursor: pointer;

  &:hover {
    background: var(--second-color) !important;
    filter: brightness(1.1);
    color: var(--white-color);
    transform: translateY(-5px) scale(1.05);
  }
}

.back-to-top.show {
  display: flex !important;
}

/*  
##################################################
#                  LOADING                       #
##################################################
*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  .loader-container {
    position: relative;
    width: 300px;
    height: 300px;
  }

  .loading-text h1 {
    font-size: 4rem !important;
  }

  .pulse-circle img {
    width: 100%;
  }
}

/* ##################################################
   #                   NAVBAR                       #
   ################################################## */
.header {
  background: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

  .navbar-brand img {
    filter: brightness(1) invert(0);
  }

  .navbar-toggler i {
    color: var(--white-color) !important;
  }

  .navbar-nav .nav-link {
    color: var(--white-color);
    line-height: 40px;
  }

  .navbar-nav .nav-link:hover {
    color: var(--second-color);
  }

  .offcanvas-body {
    .nav-link {
      color: var(--second-color);
      line-height: 40px;
    }

    .list-contact {
      li {
        strong {
          color: var(--second-color);

        }

        a {
          color: var(--third-color);

        }
      }
    }

    .social-link {
      background: var(--second-color);
      color: var(--white-color);
      border-radius: 50px;
      width: 40px;
      height: 40px;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: all 0.3s ease;

      &:hover {
        color: var(--third-color);
      }
    }
  }

  .btn-lang {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white-color);
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent);
      transition: left 0.5s ease;
    }

    &:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
      box-shadow:
        0 12px 40px 0 rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);

      &::before {
        left: 100%;
      }
    }
  }
}

.header-main {
  background: transparent;
  box-shadow: none;

  .nav-link {
    color: var(--white-color) !important;

    &:hover {
      color: var(--third-color) !important;
    }

  }

  .navbar-brand img {
    filter: brightness(0) invert(1);
  }

  .navbar-collapse {
    .navbar-nav:nth-child(1) {
      padding: 10px 20px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
  }

}

.header.fixed {
  background: var(--white-color) !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  .navbar {
    background: var(--white-color) !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
  }

  .nav-link {
    color: var(--main-color) !important;

    &:hover {
      color: var(--second-color) !important;
    }
  }

  .navbar-toggler {
    i {

      color: var(--second-color) !important;
    }
  }

  .navbar-brand img {
    filter: brightness(1) invert(0);
  }

  .btn-lang {
    background: var(--second-color);
    color: var(--white-color);
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent);
      transition: left 0.5s ease;
    }

    &:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
      box-shadow:
        0 12px 40px 0 rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);

      &::before {
        left: 100%;
      }
    }
  }
}




/* 
##################################################
#                  Hero                         #
##################################################
*/
.hero {
  position: relative;
  transition: all 0.3s;

  overflow: hidden;

  .swiper {
    display: flex;
    align-items: center;
    justify-content: center;

    .swiper-wrapper {
      .swiper-slide {
        height: 100vh;
        position: relative;
        transition: all 0.4s ease;
        cursor: pointer;
        overflow: hidden;

        &::before {
          content: "";
          position: absolute;
          inset: 0;
          z-index: 1;
          background: linear-gradient(10deg,
              rgba(0, 0, 0, 0.9) 0%,
              rgba(0, 0, 0, 0.5) 40%,
              rgba(255, 255, 255, 0.05) 100%);
          transition: all 0.5s ease;
          cursor: pointer;
        }

        &::after {
          content: "";
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: linear-gradient(45deg,
              transparent 30%,
              rgba(255, 255, 255, 0.1) 50%,
              transparent 70%);
          opacity: 0;
          transition: opacity 0.6s ease;
          z-index: 2;
          pointer-events: none;
        }

        &.swiper-slide-active::after {
          opacity: 1;
          animation: glassShine 3s ease-in-out infinite;
        }

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          cursor: pointer;
          transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
      }
    }

    @keyframes glassShine {

      0%,
      100% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
      }

      50% {
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 0.3;
      }
    }


  }

  .hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 50%;
    padding: 60px 50px;
    color: #fff;
    transition: all 0.4s ease;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(0, 0, 0, 0.25) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
      0 8px 32px 0 rgba(0, 0, 0, 0.4),
      inset 0 0 0 1px rgba(255, 255, 255, 0.15),
      0 0 60px rgba(255, 255, 255, 0.1);
    animation: glassPulse 4s ease-in-out infinite;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg,
          transparent 30%,
          rgba(255, 255, 255, 0.15) 50%,
          transparent 70%);
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
      animation: glassShineMove 3s ease-in-out infinite;
    }

    &:hover::before {
      opacity: 0.6;
    }

    @keyframes glassPulse {

      0%,
      100% {
        backdrop-filter: blur(15px) saturate(180%);
        box-shadow:
          0 8px 32px 0 rgba(0, 0, 0, 0.4),
          inset 0 0 0 1px rgba(255, 255, 255, 0.15),
          0 0 60px rgba(255, 255, 255, 0.1);
      }

      50% {
        backdrop-filter: blur(20px) saturate(200%);
        box-shadow:
          0 12px 40px 0 rgba(0, 0, 0, 0.5),
          inset 0 0 0 1px rgba(255, 255, 255, 0.2),
          0 0 80px rgba(255, 255, 255, 0.15);
      }
    }

    @keyframes glassShineMove {
      0% {
        transform: translateX(-100%) translateY(-100%);
      }

      100% {
        transform: translateX(100%) translateY(100%);
      }
    }

    >div {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    h2 {
      font-size: 4.5rem;
      font-weight: 800;
      margin-bottom: 25px;
      transition: all 0.4s ease;
      color: var(--white-color);

      letter-spacing: -1px;
      line-height: 1.2;
    }

    p {
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 35px;
      transition: all 0.4s ease;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.8;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .btn-send {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

      &::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
        transition: left 0.5s ease;
      }

      &:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
        box-shadow:
          0 12px 40px 0 rgba(0, 0, 0, 0.5),
          inset 0 0 0 1px rgba(255, 255, 255, 0.3),
          0 0 30px rgba(255, 255, 255, 0.2);

        &::before {
          left: 100%;
        }
      }

      &:active {
        transform: translateY(-1px);
      }
    }

    .hero-social {
      position: absolute;
      right: -80px;
      bottom: 30px;

      display: flex;

      gap: 20px;
      align-items: center;

      z-index: 3;
    }

    .hero-social-link {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      box-shadow:
        0 4px 15px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;

      &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
      }

      i {
        position: relative;
        z-index: 2;
        font-size: 1.1rem;
        transition: transform 0.3s ease;
      }

      &:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-5px) scale(1.1);
        box-shadow:
          0 8px 25px 0 rgba(0, 0, 0, 0.4),
          inset 0 0 0 1px rgba(255, 255, 255, 0.3),
          0 0 20px rgba(255, 255, 255, 0.3);

        &::before {
          width: 100%;
          height: 100%;
        }

        i {
          transform: scale(1.2) rotate(5deg);
        }
      }

      &:active {
        transform: translateY(-3px) scale(1.05);
      }
    }
  }
}

.hero-mobile {
  position: relative;
  overflow: hidden;

  .swiper {
    display: flex;
    align-items: center;
    justify-content: center;

    .swiper-wrapper {
      .swiper-slide {
        height: 60vh !important;
        min-height: 450px !important;
      }



    }
  }

  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 25px 50px;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg,
          transparent 30%,
          rgba(255, 255, 255, 0.05) 50%,
          transparent 70%);
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    &:hover::before {
      opacity: 1;
    }

    >div {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    h2 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 15px;
      transition: all 0.4s ease;
      color: var(--white-color);
      letter-spacing: -0.5px;
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    p {
      font-size: 1rem;
      font-weight: 400;
      margin-bottom: 25px;
      transition: all 0.4s ease;
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.7;
      text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    }

    .btn-send {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      box-shadow:
        0 6px 25px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      padding: 12px 24px;
      font-size: 0.95rem;
      border-radius: 8px;

      &::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
        transition: left 0.5s ease;
      }

      &:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        box-shadow:
          0 8px 30px 0 rgba(0, 0, 0, 0.4),
          inset 0 0 0 1px rgba(255, 255, 255, 0.3),
          0 0 20px rgba(255, 255, 255, 0.2);

        &::before {
          left: 100%;
        }
      }

      &:active {
        transform: translateY(0);
      }
    }


  }
}


/* ##################################################
   #                   PAGE HEADER                   #
   ################################################## */
.page-header {
  background: linear-gradient(135deg, #ffffff 0%, rgba(60, 159, 75, 0.1) 100%);
  position: relative;
  height: 20vh !important;

  .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 1rem;
  }

  .breadcrumb {
    background: transparent;
    padding: 0;

    .breadcrumb-item {
      a {
        color: var(--main-color);
        text-decoration: none;
        transition: all 0.3s ease;

        &:hover {
          color: var(--second-color);
        }
      }

      &.active {
        color: var(--second-color);
      }

      +.breadcrumb-item::before {
        content: "/";
        color: var(--main-color);
        padding: 0 0.5rem;
      }
    }
  }
}


/*  
##################################################
#                  About Us                      #
##################################################
*/
.about-section {
  background: #f8f9fa;
  position: relative;

}

.about-content {
  position: relative;

  .about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .about-description {
    font-size: 1.1rem;
    color: var(--third-color);
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .about-features {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    gap: 1.5rem;

    .feature-card {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
      padding: 1.5rem;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(249, 168, 97, 0.1);

      &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--second-color), #ff8c42);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.3s ease;
      }

      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(249, 168, 97, 0.15);
        border-color: rgba(249, 168, 97, 0.3);

        &::before {
          transform: scaleY(1);
        }

        .feature-icon-wrapper {
          transform: scale(1.1) rotate(5deg);
          box-shadow: 0 6px 20px rgba(249, 168, 97, 0.35);

          i {
            transform: scale(1.1);
          }
        }

        .feature-content {
          h4 {
            color: var(--second-color);
          }
        }
      }

      .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        min-width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--second-color), #ff8c42);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(249, 168, 97, 0.25);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;

        i {
          color: #ffffff;
          font-size: 1.5rem;
          transition: transform 0.3s ease;
        }
      }

      .feature-content {
        flex: 1;
        position: relative;
        z-index: 1;

        h4 {
          font-size: 1.25rem;
          font-weight: 700;
          color: var(--main-color);
          margin-bottom: 0.75rem;
          transition: color 0.3s ease;
        }

        p {
          font-size: 0.95rem;
          color: var(--third-color);
          line-height: 1.8;
          margin: 0;
        }
      }
    }
  }


}



/* Image with Glass Shine Effect */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 600px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

  .about-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    object-fit: cover;
  }

  .glass-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    transform: skewX(-25deg);
    z-index: 2;
    animation: glassShine 3s infinite;
    pointer-events: none;
  }
}

/*  
##################################################
#                  Services                      #
##################################################
*/


.services-section {
  position: relative;


  .service-card {
    overflow: hidden;

    img {
      width: 100%;
      height: 600px;
      object-fit: cover;
      transition: all 0.5s ease;
    }

    .service-content {
      position: absolute;
      bottom: -100px;
      left: 0;
      width: 100%;
      padding: 40px 20px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 8px;
      opacity: 0;
      transition: all 0.3s ease;

      h4 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white-color);
        transition: all 0.3s ease;
      }


    }

    &:hover {
      img {
        transform: scale(1.08) rotate(3deg) !important;
      }

      .service-content {
        opacity: 1;
        transform: translateY(-100px);
      }
    }
  }

  .swiper-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;

    .swiper-button-prev,
    .swiper-button-next {
      width: 60px;
      height: 60px;
      background: var(--white-color);
      color: var(--second-color);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      padding: 10px;
      transition: all 0.4s ease;

      & svg {
        width: 25px;
        height: 25px;
      }

      &:hover {
        background: var(--background-btn-hover);
        color: var(--white-color);
      }
    }

  }

}



/* ##################################################
   #                   PROJECTS SECTION               #
   ################################################## */
.projects-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;




  /* Project Card */
  .project-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

      .project-image {
        transform: scale(1.1);
      }

      .project-overlay {
        opacity: 1;
      }

      .project-icon {
        transform: translate(-50%, -50%) scale(1);
      }

      .project-category {
        background: var(--second-color);
        color: #ffffff;
        transform: translateY(-2px);
      }

      .project-title {
        color: var(--second-color);
      }

      .project-description {
        color: #444;
      }
    }

    /* Project Link */
    .project-link {
      display: block;
      height: 100%;
      text-decoration: none;
      color: inherit;
    }

    /* Image Wrapper */
    .project-image-wrapper {
      position: relative;
      width: 100%;
      height: 350px;
      overflow: hidden;
      background: #f5f5f5;

      .project-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
      }

      .project-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.6) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
      }

      .project-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

        i {
          font-size: 1.2rem;
          color: var(--second-color);
          transition: transform 0.3s ease;
        }
      }
    }

    /* Project Content */
    .project-content {
      padding: 2rem;
      background: #ffffff;
      transition: all 0.3s ease;

      .project-category {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--second-color);
        background: rgba(249, 168, 97, 0.1);
        padding: 0.4rem 1rem;
        border-radius: 20px;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
      }

      .project-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--third-color);
        margin-bottom: 0.75rem;
        line-height: 1.3;
        transition: color 0.3s ease;
      }

      .project-description {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.7;
        margin: 0;
        transition: color 0.3s ease;
      }
    }
  }
}




/* ##################################################
   #                   FOOTER                       #
   ################################################## */
footer {
  background: linear-gradient(135deg, var(--third-color) 0%, var(--main-color) 100%);
  position: relative;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
  }

  z-index: 2;



  .footer-title {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
  }

  .footer-text {
    line-height: 1.8;
    color: var(--white-color);
  }

  .footer-list,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-list {
    li {
      margin-bottom: 12px;
    }
  }

  .footer-link {
    color: var(--white-color);
    text-decoration: none;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;



    &:hover {
      color: var(--second-color);
      padding-left: 6px;


    }
  }

  .footer-contact {
    li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: var(--white-color);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;

      &:hover {
        color: var(--second-color);
      }
    }
  }

  .footer-social {
    margin-top: 16px;
    display: flex;
    gap: 12px;

    width: fit-content;

    a {
      width: 38px;
      height: 38px;
      border-radius: 6px;
      background: var(--second-color);
      color: var(--white-color);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;

      &:hover {
        background: var(--second-color);
        color: var(--white-color);
        transform: scale(1.1);
      }
    }
  }

  .footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 40px 0 20px;
  }

  .copyright {
    p {
      margin: 0;
      font-size: 18px;
      color: var(--white-color);
    }

    a {
      color: var(--second-color);
      text-decoration: none;

      &:hover {
        color: var(--main-color);
      }
    }
  }
}


/* ##################################################
   #                   ABOUT SECTION               #
   ################################################## */
.about-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;

}

.label-line {
  width: 40px;
  height: 2px;
  background: var(--second-color);
  display: block;
}

.label-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--third-color);
}

/* About Content */
.about-content {
  padding: 1rem 0;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-description {
  font-size: 1rem;
  color: var(--third-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Features List */
.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--main-color);
}

.feature-list-item i {
  color: var(--second-color);
  font-size: 0.875rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 168, 97, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Image Wrapper */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  height: 500px;
}

.about-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 15px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Glass Shine Animation */
.glass-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: skewX(-25deg);
  z-index: 2;
  animation: glassShine 3s infinite;
  pointer-events: none;
}

@keyframes glassShine {
  0% {
    left: -100%;
  }

  50% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}



/* Horizontal Feature Cards */
.feature-card-horizontal {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon-line {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.feature-icon-line i {
  font-size: 2rem;
  color: var(--second-color);
  position: relative;
  z-index: 1;
}

.feature-icon-line::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--second-color);
  border-radius: 8px;
  opacity: 0.2;
  transform: rotate(45deg);
}

.feature-card-horizontal h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.feature-card-horizontal p {
  font-size: 0.95rem;
  color: var(--third-color);
  line-height: 1.7;
  margin: 0;
}

/* Button with Arrow */
.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-send i {
  transition: transform 0.3s ease;
}

.btn-send:hover i {
  transform: translateX(5px);
}

/* ##################################################
   #                   SERVICES SECTION               #
   ################################################## */
.services-section {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--main-color);
  margin: 1rem 0 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: var(--third-color);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 168, 97, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--second-color), #ff8c42);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(249, 168, 97, 0.2);
  border-color: rgba(249, 168, 97, 0.3);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--second-color), #ff8c42);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(249, 168, 97, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(249, 168, 97, 0.4);
}

.service-icon-wrapper i {
  font-size: 2rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrapper i {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--second-color);
}

.service-description {
  font-size: 1rem;
  color: var(--third-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--second-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--main-color);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ##################################################
   #                   PROCESS SECTION               #
   ################################################## */
.process-section {

  position: relative;
  overflow: hidden;

  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    

    z-index: 0;
  }

  .process-sticky {

    position: relative;
    z-index: 100;
  }




  /* ================= Section Header ================= */
  .section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    z-index: 4;

    .label-line {
      width: 40px;
      height: 2px;
      background: var(--second-color);
    }

    .label-text {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white-color) !important;
    }
  }

  .section-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
  }

  .section-description {
    font-size: 1rem;
    color: var(--white-color) !important;
    line-height: 1.7;
  }

  /* ================= Timeline Wrapper ================= */
  .process-timeline-wrapper {
    position: relative;

  }

  /* ================= Step Item ================= */
  .process-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    position: relative;
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    width: 100%;

    &:not(:last-child) {
      margin-bottom: 2rem;
    }
  }

  /* ================= Process Card ================= */
  .process-step {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    &:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);

      .process-dark-overlay {
        background: rgba(0, 0, 0, 0.25);
      }

      .process-number {
        color: rgba(255, 255, 255, 0.18);
        transform: scale(1.05);
      }

      .process-title {
        color: var(--second-color);
        transform: translateY(-3px);
      }

      .process-description {
        color: #ffffff;
      }
    }

    img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      will-change: transform;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }
  }

  /* ================= Overlay ================= */
  .process-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: background 0.5s ease;
  }

  /* ================= Process Number ================= */
  .process-number {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -5px;
    color: rgba(255, 255, 255, 0.12);
    z-index: 2;
    transition: all 0.4s ease;
  }

  /* ================= Content ================= */
  .process-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 2.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 0 0 20px 20px;
  }

  .process-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
  }

  .process-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
  }
}