@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --main-color: #3c9f4b;
  --second-color: #295f4a;
  --third-color: #aed149;
  --fourth-color: #ceedb4;
  --fifth-color: #f2f2f2;
  --background: linear-gradient(to right, #295f4a, #3c9f4b);
  --background-btn: linear-gradient(135deg, #295f4a, #3c9f4b);
  --background-btn-hover: linear-gradient(-135deg, #295f4a, #3c9f4b);
  --white-color: #ffffff;
  --black-color: #000000;
  --placeholder-color: #a1a1a1;
}

@font-face {
  font-family: "gesstwobold";
  src: url("../fonts/GE-SS-Two/GE_SS_Two_Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "gesstwolight";
  src: url("../fonts/GE-SS-Two/GE_SS_Two_Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "AllRoundGothic";
  src: url("../fonts/Demo_Fonts/Fontspring-DEMO-allroundgothic-lig.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AllRoundGothic";
  src: url("../fonts/Demo_Fonts/Fontspring-DEMO-allroundgothic-medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AllRoundGothic";
  src: url("../fonts/Demo_Fonts/Fontspring-DEMO-allroundgothic-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
  font-family: "gesstwobold", sans-serif !important;
}

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "AllRoundGothic", sans-serif !important;
}

.text-xl {
  font-size: 8rem;
}

.text-lg {
  font-size: 3rem;
}

.text-md {
  font-size: 2.2rem;
}

.text-sm {
  font-size: 1.5rem;
}

.text-main {
  color: var(--third-color);
}

.text-second {
  color: var(--fourth-color);
}

.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--background-btn);
  color: var(--white-color);
  border-radius: 10px;
  padding: 14px 20px 14px 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: 6px;
    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.15), transparent);
    transition: left 0.5s ease;
  }

  &:hover {
    background: var(--background-btn-hover);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(60, 159, 75, 0.3);

    &::before {
      left: 100%;
    }

    i {
      background: var(--white-color);
      color: var(--main-color);
      transform: translateX(5px) rotate(0deg);
    }
  }

  &: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;
    background: rgba(205, 237, 180, 0.661);
    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(--background-btn) !important;
    color: var(--white-color);
    border-radius: 8px;
    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(--background-btn-hover) !important;
      color: var(--white-color);
      transform: scale(1.05);
      filter: brightness(1.1);
    }
  }
}

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

  border-radius: 8px;
  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(--background-btn-hover) !important;
    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(--second-color) !important;
  }

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

  .navbar-nav .nav-link:hover {
    color: var(--main-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(--background-btn);
      color: var(--white-color);
      border-radius: 8px;
      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);
      }
    }
  }
}

.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);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

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

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

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


.btn-lang {
  background: var(--background-btn);
  color: var(--white-color);
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 1rem;
  transition: all 0.3s ease;

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

/* 
##################################################
#                  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;
        transition: transform 5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

        &::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;
        }

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          cursor: pointer;
        }
      }
    }


  }

  .hero-content {
    position: absolute;
    bottom: 0;
    left: 100px;
    width: 100%;
    padding: 40px 20px;
    color: #fff;
    transition: all 0.4s ease;
    z-index: 5;
    transform: translateY(-30px) !important;

    h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      transition: all 0.4s ease;
    }

    p {
      font-size: 1.2rem;
    }
  }
}

.hero-mobile {
  .swiper {
    .swiper-wrapper {
      .swiper-slide {
        height: 60vh;
        position: relative;
        transition: all 0.4s ease;
        cursor: pointer;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          cursor: pointer;
        }
      }
    }
  }



  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    color: #fff;
    transition: all 0.4s ease;
    z-index: 5;
    background: linear-gradient(10deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(255, 255, 255, 0.05) 100%);

    h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 15px 0;
      transition: all 0.4s ease;
    }
  }
}


/* ##################################################
   #                   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,
.mission-section,
.vision-section {
  .header-section {
    display: flex;
    justify-content: start !important;
    align-items: start !important;

    h2 {
      font-size: 1.2rem !important;
      font-weight: 500 !important;
    }
  }

  .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;

    img {
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.4s ease;
      object-fit: cover;
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          transparent 0%,
          rgba(41, 95, 74, 0) 60%,
          rgba(41, 95, 74, 0.3) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
      border-radius: 16px;
    }

    &:hover {
      img {
        transform: scale(1.08) !important;
        filter: brightness(1.05) saturate(1.1) !important;
      }

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

  .about-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    background: rgba(205, 237, 180, 0.4);
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    margin-top: 30px;

    .counter {
      font-size: 2rem;
      font-weight: 700;
      color: var(--second-color);
      transition: all 0.3s ease;
      display: flex !important;
      align-items: center;
      gap: 10px;
    }

    .title-text-counter {
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--second-color);
      transition: all 0.3s ease;


    }
  }
}

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


.services-section {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(205, 237, 180, 0.2));

  .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);
      }
    }

  }

}
/* ##################################################
   #                   SERVICE DETAILS               #
   ################################################## */
   .service-details-section {
    img {
      height: 500px;
      object-fit: cover;
      border-radius: 16px;
    }
  
    .service-info {
      h2 {
        color: var(--second-color);
        font-weight: 700;
      }
  
      .service-features {
        ul {
          li {
            color: var(--black-color);
            line-height: 1.8;
          }
        }
      }
    }
  
    .service-description {
  
      h3,
      h2 {
        color: var(--second-color);
        font-weight: 600;
      }
  
      p {
        line-height: 1.8;
        color: var(--black-color);
      }
  
      .service-features {
        list-style: none;
        padding: 0;
        margin: 0;
  
        li {
          padding: 10px 0;
          color: var(--black-color);
          line-height: 1.8;
          font-size: 15px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
  
          i {
            color: var(--main-color);
          }
  
          &:last-child {
            border-bottom: none;
          }
  
          &:hover {
            padding-left: 10px;
            color: var(--second-color);
          }
  
          i {
            font-size: 14px;
          }
        }
      }
  
      .process-step {
        display: flex;
        align-items: flex-start;
  
        .step-content {
          h5 {
            color: var(--second-color);
            font-weight: 600;
          }
  
          p {
            color: var(--placeholder-color);
          }
        }
      }
    }
  
    .service-types-sidebar {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  
      h4 {
        color: var(--second-color);
        font-weight: 600;
      }
  
      ul {
        li {
          margin-bottom: 1rem;
          background: rgba(205, 237, 180, 0.329);
          padding: 12px 24px;
          border-radius: 8px;
          color: var(--second-color);
          transition: all 0.3s ease;
  
          &.active {
            background: var(--background-btn);
            color: var(--white-color);
          }
  
          &:hover {
            background: var(--background-btn-hover);
            color: var(--white-color);
          }
  
        }
      }
    }
  
    /* Service Sidebar Form Styles */
    .service-sidebar {
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
  
      h4 {
        color: var(--second-color);
        font-size: 1.5rem;
      }
    }
  
    .contact-quick-form {
      .form-input-wrapper {
        position: relative;
  
        i {
          position: absolute;
          left: 15px;
          top: 50%;
          transform: translateY(-50%);
          color: var(--main-color);
          font-size: 14px;
          z-index: 2;
          transition: all 0.3s ease;
        }
  
        &:has(.form-textarea) i {
          top: 18px;
          transform: translateY(0);
        }
  
        &:focus-within i {
          color: var(--second-color);
          transform: translateY(-50%) scale(1.1);
  
          &:has(.form-textarea) {
            transform: scale(1.1);
          }
        }
      }
  
      .form-control-custom {
        width: 100%;
        padding: 12px 15px 12px 45px;
        border: 2px solid rgba(60, 159, 75, 0.1);
        border-radius: 10px;
        background: var(--white-color);
        color: var(--black-color);
        font-size: 14px;
        transition: all 0.3s ease;
        outline: none;
  
        &::placeholder {
          color: var(--placeholder-color);
          font-size: 14px;
        }
  
        &:focus {
          border-color: var(--main-color);
          background: var(--white-color);
          box-shadow: 0 0 0 3px rgba(60, 159, 75, 0.1);
        }
  
        &:hover:not(:focus) {
          border-color: rgba(60, 159, 75, 0.3);
        }
      }
  
      .form-textarea {
        padding-top: 12px;
        resize: vertical;
        min-height: 100px;
      }
    }
  }
  
/* ##################################################
   #                   Projects                      #
   ################################################## */
.projects-section {
  .project-tabs {
    gap: 10px;
    flex-wrap: wrap;
  }

  .project-tabs {
    .nav-link {

      padding: 12px 30px;
      font-size: 18px;
      font-weight: 500;
      color: var(--second-color);
      background-color: transparent;
      position: relative;
      transition: all 0.3s ease;
      font-family: "AllRoundGothic", sans-serif !important;

      &::before {
        content: '/';
        position: absolute;
        right: -5px;
        color: #eee;
        transition: all 0.3s ease-in-out;
        height: 100%;
        font-size: 20px;

      }
    }

    .nav-item:last-child {
      .nav-link::before {
        display: none;
      }
    }
  }


  .project-tabs .nav-link:hover {

    color: var(--main-color);
  }

  .project-tabs .nav-link.active {

    color: var(--third-color);

    &::before {
      color: var(--third-color);

    }
  }

  .tab-content {
    margin-top: 30px;
  }

  .tab-pane {
    animation: fadeIn 0.5s ease;
  }

  .project-card {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border-radius: 16px;

    img {
      height: 500px;
      width: 100%;
      object-fit: cover;
      border-radius: 10px;
      transition: all 0.3s ease;
      filter: brightness(0.8);

      &:hover {
        filter: brightness(1);
        transform: scale(1.05);
      }
    }


    .content-card {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      width: 95%;

      padding: 20px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 10px;

      transition: all 0.3s ease;

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

    }
  }


}

/* ##################################################
   #                   CONTACT US                    #
   ################################################## */
.bg-contact-footer {
  position: relative;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;

  }
}

.contact-section {
  position: relative;



  .glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;

    &:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
  }

  .contact-info-card {
    .icon-box {
      width: 60px;
      height: 60px;
      min-width: 60px;
      background: var(--background);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;

      i {
        font-size: 24px;
        color: var(--white-color);
      }
    }

    .info-content {
      h5 {
        color: var(--white-color);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
      }

      p {
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
        font-size: 15px;

        a {
          color: rgba(255, 255, 255, 0.8);
          text-decoration: none;
          transition: all 0.3s ease;

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

  .contact-form-card {
    padding: 40px;

    .form-title {
      color: var(--white-color);
      font-size: 28px;
      font-weight: 600;
    }
  }

  .glass-input-group {
    position: relative;

    i {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, 0.6);
      font-size: 16px;
      z-index: 2;
      transition: all 0.3s ease;
    }

    &:has(.glass-textarea) i {
      top: 25px;
      transform: translateY(0);
    }
  }

  .glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px 16px 50px;
    color: var(--white-color);
    font-size: 15px;
    transition: all 0.3s ease;

    &::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    &:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--second-color);
      box-shadow: 0 0 20px rgba(var(--second-color-rgb), 0.2);
    }

    &:focus+i,
    &:focus~i {
      color: var(--second-color);
    }
  }

  .glass-input-group:focus-within i {
    color: var(--second-color);
  }

  .glass-select {
    cursor: pointer;
    appearance: none;

    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    padding-right: 50px;

    option {
      background: #333;
      color: var(--white-color);
    }
  }

  .glass-textarea {
    resize: none;
    min-height: 150px;
  }

  .btn-send {
    padding: 16px 30px;
    font-size: 18px;
    justify-content: center;
    border: none;
  }
}

/* ##################################################
   #                   FOOTER                       #
   ################################################## */
footer {

  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-logo {
    filter: brightness(0) invert(1);
  }

  .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(--third-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(--third-color);
      }
    }
  }

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

    width: fit-content;

    a {
      width: 38px;
      height: 38px;
      border-radius: 6px;
      background: var(--background);
      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(--main-color);
      text-decoration: none;

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

/* ##################################################
   #                   GALLERY SECTION               #
   ################################################## */
.gallery-section {
  img {
    transition: all 0.3s ease;
    cursor: pointer;
    height: 500px;
    object-fit: cover;

    &:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
  }
}

.video-card {
  background: var(--white-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .video-thumbnail {
    position: relative;
    overflow: hidden;

    img {
      transition: all 0.3s ease;
    }

    .play-button {
      opacity: 0.9;
      transition: all 0.3s ease;
    }

    &:hover {
      img {
        transform: scale(1.1);
      }

      .play-button {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
      }
    }
  }

  .video-info {
    h5 {
      color: var(--second-color);
      font-weight: 600;
    }

    p {
      color: var(--placeholder-color);
      font-size: 0.9rem;
    }
  }
}

/* ##################################################
   #                   PROJECT DETAILS               #
   ################################################## */
.project-details-section {
  .project-main-image {
    position: relative;
  
    border-radius: 16px;

    img {
      height: 500px;
      object-fit: cover;
      border-radius: 16px;
      transition: transform 0.3s ease;
      cursor: pointer;

      &:hover {
        transform: scale(1.05);
      }
    }

    .projectMainSwiper {
      position: relative;
      border-radius: 16px;
      

      .swiper-slide {
    
        a {
          display: block;
          width: 100%;
          height: 100%;
        }
      }

      .swiper-button-next,
      .swiper-button-prev {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: var(--white-color);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;

        & svg{
          
          width: 35px;
          height: 35px;
          font-weight: 700;
        }

        &:hover {
          background: var(--second-color);
          color: var(--white-color);
          transform: scale(1.1);
          box-shadow: 0 6px 20px rgba(41, 95, 74, 0.3);
        }
      }

      .swiper-button-next {
        right: 20px;
      }

      .swiper-button-prev {
        left: 20px;
      }

      .swiper-pagination {
        background: rgba(255, 255, 255, 0.376);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 5px;
       
        bottom: 20px !important;

        

        .swiper-pagination-bullet {
          width: 12px;
          height: 12px;
          background: rgba(255, 255, 255, 0.5);
          border: 2px solid rgba(255, 255, 255, 0.8);
          opacity: 1;
          transition: all 0.3s ease;

          &.swiper-pagination-bullet-active {
            background: var(--white-color);
            border-color: var(--second-color);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(41, 95, 74, 0.5);
          }

          &:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
          }
        }
      }
    }
  }

  .project-info-card {
    background: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;

    &:hover {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
    }

    .project-header {
      h2 {
        color: var(--second-color);
        font-size: 1.75rem;
        font-weight: 700;
        line-height: 1.3;
      }

      .project-subtitle {
        color: var(--placeholder-color);
        font-size: 14px;
        line-height: 1.6;
      }
    }



    .details-list {
      .detail-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;

        &:last-child {
          border-bottom: none;
        }

        &:hover {
          padding-left: 5px;
        }

        .detail-icon {
          width: 40px;
          height: 40px;
          min-width: 40px;
          background: linear-gradient(135deg, var(--second-color), var(--main-color));
          border-radius: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--white-color);
          font-size: 16px;
          box-shadow: 0 4px 10px rgba(60, 159, 75, 0.2);
        }

        .detail-content {
          display: flex;
          flex-direction: column;
          gap: 3px;
          flex: 1;

          .detail-label {
            font-size: 12px;
            color: var(--placeholder-color);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
          }

          .detail-value {
            font-size: 15px;
            color: var(--black-color);
            font-weight: 600;
          }
        }
      }
    }


  }

  .project-description {
    h3 {
      color: var(--second-color);
      font-weight: 600;
    }

    p {
      line-height: 1.8;
      color: var(--black-color);
    }
  }

  .project-sidebar {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;

    h4 {
      color: var(--second-color);
      font-size: 1.5rem;
    }
  }

  .contact-quick-form {
    .form-input-wrapper {
      position: relative;

      i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--main-color);
        font-size: 14px;
        z-index: 2;
        transition: all 0.3s ease;
      }

      &:has(.form-textarea) i {
        top: 18px;
        transform: translateY(0);
      }

      &:focus-within i {
        color: var(--second-color);
        transform: translateY(-50%) scale(1.1);

        &:has(.form-textarea) {
          transform: scale(1.1);
        }
      }
    }

    .form-control-custom {
      width: 100%;
      padding: 12px 15px 12px 45px;
      border: 2px solid rgba(60, 159, 75, 0.1);
      border-radius: 10px;
      background: var(--white-color);
      color: var(--black-color);
      font-size: 14px;
      transition: all 0.3s ease;
      outline: none;

      &::placeholder {
        color: var(--placeholder-color);
        font-size: 14px;
      }

      &:focus {
        border-color: var(--main-color);
        background: var(--white-color);
        box-shadow: 0 0 0 3px rgba(60, 159, 75, 0.1);
      }

      &:hover:not(:focus) {
        border-color: rgba(60, 159, 75, 0.3);
      }
    }

    .form-textarea {
      padding-top: 12px;
      resize: vertical;
      min-height: 100px;
    }
  }

  .section-title {
    color: var(--second-color);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;

    i {
      color: var(--main-color);
      font-size: 1rem;
    }
  }

  .features-grid {
    display: grid;

    gap: 10px;

    .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 15px;
      background: rgba(60, 159, 75, 0.05);
      border-radius: 8px;
      border-left: 3px solid var(--main-color);
      transition: all 0.3s ease;

      &:hover {
        background: rgba(60, 159, 75, 0.1);
        transform: translateX(5px);
      }

      i {
        color: var(--main-color);
        font-size: 16px;
        min-width: 20px;
      }

      span {
        color: var(--black-color);
        font-size: 14px;
        font-weight: 500;
      }
    }
  }
}


/* ##################################################
   #                   FEATURE CARDS                  #
   ################################################## */
.feature-card {
  background: var(--white-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  &:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .feature-icon {
    color: var(--main-color);
  }

  h4 {
    color: var(--second-color);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  p {
    color: var(--placeholder-color);
    line-height: 1.8;
  }
}

.mission-card {
  background: var(--fifth-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  h3 {
    color: var(--second-color);
    font-weight: 600;

    i {
      color: var(--main-color);
    }
  }

  p {
    line-height: 1.8;
    color: var(--black-color);
  }
}