@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --main-color: #4b4a50;
  --second-color: #e1e1e1;
  --third-color: #d33516;
  --black-color: #000000;
  --white-color: #ffffff;
  --background-color: rgba(192, 192, 192, 0.2);
  --placeholder-color: #a1a1a1;
  --box-shadow: rgba(0, 0, 0, 0.2) 0px 9px 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul li {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: "Josefin Sans", sans-serif;
}
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
p,
li {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

/* ::-webkit-scrollbar-track {
  background: transparent;
} */

::-webkit-scrollbar-thumb {
  background-color: var(--black-color);
  border-radius: 0px;
}

.text-main {
  color: var(--black-color);
}

.bg-section {
  background-color: #f9f9f9;
}

.btn-send {
  background: var(--black-color);
  padding: 10px 10px 10px 24px;
  color: var(--white-color);
  border-radius: 0px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    /* height: 100%; */
    border-radius: 0px;
    background-color: var(--second-color);
    transition: all 0.4s ease;
    z-index: -1;
    overflow: hidden;
  }

  .btn-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    padding: 10px;
    color: var(--black-color);
    border-radius: 0px !important;
    font-size: 20px;

    i {
      transform: rotate(-45deg);
      transition: all 0.3s ease;
    }
  }
  &:hover {
    font-weight: bold;
    color: var(--black-color) !important;

    &::before {
      width: 100%;
    }

    .btn-icon {
      background-color: var(--white-color);
      i {
        transform: rotate(0deg) !important;
      }
    }
  }
}

.header-section {
  position: relative;
  display: flex;
  gap: 15px;
  h2 {
    font-weight: 800;
    font-size: 48px !important;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
  }

  span {
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    text-wrap: nowrap;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--third-color);
    z-index: 1;
    pointer-events: none;
  }
}

/*  
##################################################
#                  SOCIAL ICONS                  #
##################################################
*/
.social-icon {
  inset-inline-end: 0 !important;
  margin-inline-end: 16px;
  margin-bottom: 50px;
  width: fit-content;
  height: fit-content;

  a {
    background: var(--black-color) !important;
    color: var(--white-color);
    border: 2px solid var(--second-color);
    padding: 0.8rem;
    border-radius: 0px;
    margin: 0.5rem;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;

    &:hover {
      background: var(--black-color) !important;
      color: var(--second-color);
      border: 2px solid var(--second-color);
      transform: translateY(-5px) scale(1.05);
      filter: brightness(1.1);
    }
  }
}

.back-to-top {
  position: fixed;
  bottom: 50px;
  inset-inline-start: 16px;
  width: 20px;
  height: 140px;

  color: var(--third-color);
  display: none;
  cursor: pointer;
  z-index: 998;
  overflow: hidden;
  border-radius: 0px;
  transition: transform 0.3s ease, color 0.3s ease;

  &:hover {
    transform: translateY(-5px);
    color: var(--third-color);
  }

  .progress-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 0;
    background: var(--third-color);
    transition: height 0.2s ease;
    z-index: 1;
    border-radius: 0px;
  }

  span {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    text-align: center;

    z-index: 2;
  }
}

/*  
##################################################
#                  LOADING                       #
##################################################
*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  .loader-container {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    background: #f5f5f5;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .rotating-border {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 3px solid transparent;
    border-top-color: var(--black-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateBorder 1.4s linear infinite;
    z-index: 0;
  }

  .pulse-circle img {
    width: 140px;
    position: relative;
    z-index: 2;
    animation: pulse 1.8s infinite ease-in-out;
  }
}

@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/*  
##################################################
#                   Navbar                       #
##################################################
*/

.fixed {
  .navbar {
    box-shadow: var(--box-shadow);
    background: var(--white-color) !important;

    .nav-link {
      position: relative;
      /* display: inline-block; */
      padding: 10px 24px;

      font-size: 0.95rem;
      color: var(--black-color) !important;
      border-radius: 0px;
      text-decoration: none;
      transition: color 0.3s ease, font-weight 0.3s ease;
      z-index: 1;
      overflow: hidden;

      &::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;

        background: var(--black-color) !important;

        transition: width 0.4s ease;
        z-index: -1;
      }

      &:hover {
        color: var(--black-color) !important;
        &::before {
          width: 100%;
        }
      }

      &.active {
        color: var(--black-color) !important;
        &::before {
          width: 100%;
          transition: width 0.25s ease-in-out;
        }
      }
    }

    .navbar-brand img {
      filter: brightness(1) invert(0);
    }

    .navbar-toggler {
      color: var(--black-color);

      i {
        color: var(--black-color);
      }
    }
  }
}

.fixed-top {
  .navbar-brand {
    width: 100%;
  }
  .navbar-brand img {
    filter: brightness(0) invert(1);
  }

  .navbar-toggler i {
    color: var(--white-color);
  }
}

.navbar {
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease;

  .navbar-nav {
    margin-inline-start: auto;

    .nav-item {
      position: relative;
      width: 100%;
      text-wrap: nowrap;

      .nav-link {
        position: relative;
        /* display: inline-block; */
        padding: 10px 24px;
        width: fit-content;
        font-size: 0.95rem;
        color: var(--white-color);
        border-radius: 0px;
        text-decoration: none;
        transition: color 0.3s ease, font-weight 0.3s ease;
        z-index: 1;
        overflow: hidden;

        &::before {
          content: "";
          position: absolute;
          left: 0;
          bottom: 0;
          width: 0%;
          height: 2px;

          background: var(--white-color);

          transition: width 0.4s ease;
          z-index: -1;
        }

        &:hover {
          color: var(--white-color);
          &::before {
            width: 100%;
          }
        }

        &.active {
          color: var(--white-color);
          &::before {
            width: 100%;
            transition: width 0.25s ease-in-out;
          }
        }
      }
    }
  }

  /* Social icons inside navbar */
  .footer-social {
    .contact-social {
      margin-top: 30px;

      h5 {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        margin-bottom: 20px;
      }

      .social-links {
        display: flex;
        gap: 12px;

        .social-link {
          width: 45px;
          height: 45px;
          background: #f8f8f8;
          border: 2px solid #f0f0f0;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 0px !important;
          color: #000;
          font-size: 18px;
          position: relative;
          overflow: hidden;
          transition: all 0.4s ease;

          &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: #000;
            border-radius: 0px !important;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
          }

          &:hover {
            border-color: #000;
            transform: translateY(-5px);

            &::before {
              width: 100%;
              height: 100%;
            }

            i {
              color: #fff;
              z-index: 1;
            }
          }
        }
      }
    }
  }
}

.btn-lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 30px;
  border: none;
  border-radius: 0px;
  background-color: var(--black-color) !important;
  color: var(--second-color);
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--second-color);

    transition: width 0.4s ease;
    z-index: -1;
  }

  &:hover {
    font-weight: bold;
    color: var(--black-color) !important;

    &::before {
      width: 100%;
    }
  }
}

.offcanvas {
  .offcanvas-header {
    .navbar-brand img {
      filter: invert(0) brightness(1) !important;
    }
  }

  .offcanvas-body {
    .nav-item {
      position: relative;
      width: 100%;
      text-wrap: nowrap;

      .nav-link {
        position: relative;
        /* display: inline-block; */
        padding: 10px 24px;
        width: fit-content;
        font-size: 0.95rem;
        color: var(--black-color);
        border-radius: 0px;
        text-decoration: none;
        transition: color 0.3s ease, font-weight 0.3s ease;
        z-index: 1;
        overflow: hidden;

        &::before {
          content: "";
          position: absolute;
          left: 0;
          bottom: 0;
          width: 0%;
          height: 2px;

          background: var(--black-color);

          transition: width 0.4s ease;
          z-index: -1;
        }

        &:hover {
          color: var(--black-color);
          &::before {
            width: 100%;
          }
        }

        &.active {
          color: var(--black-color);
          &::before {
            width: 100%;
            transition: width 0.25s ease-in-out;
          }
        }
      }
    }
  }
  .list-contact {
    a {
      transition: all 0.3s ease;
      color: var(--main-color) !important;
      display: block;

      &:hover {
        font-weight: bold;
      }
    }
    i,
    h3 {
      color: var(--main-color) !important;
    }
  }
}

/*  
##################################################
#                     Home                       #
##################################################
*/

.hero {
  position: relative;
  transition: all 0.3s;
  /* padding: 0 60px; */
  overflow: hidden;
  &-pages {
    .overlay {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: hsla(0, 0%, 0%, 0.6);
    }
  }

  .swiper {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 25px; */
    .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.8) 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;
        }
      }
    }
    .swiper-pagination {
      bottom: 130px !important;

      .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
        width: 12px;
        height: 12px;
        margin: 0 10px !important;
        transition: all 0.3s ease;
        border-radius: 0px !important;
        position: relative;

        &::before {
          content: "";
          position: absolute;
          border: 2.5px solid var(--second-color);
          width: 100%;
          height: 100%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          border-radius: 0px !important;
          padding: 10px;
        }
      }

      .swiper-pagination-bullet-active {
        background: var(--second-color);
        height: 14px;
        width: 14px;
        border-radius: 0px !important;
      }
    }
  }

  .text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    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;
        }
      }
    }
  }

  .swiper-pagination {
    bottom: 30px !important;

    .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.5);
      opacity: 1;
      width: 12px;
      height: 12px;
      margin: 0 10px !important;
      transition: all 0.3s ease;
      border-radius: 0px !important;
      position: relative;

      &::before {
        content: "";
        position: absolute;
        border: 2.5px solid var(--second-color);
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 0px !important;
        padding: 10px;
      }
    }

    .swiper-pagination-bullet-active {
      background: var(--second-color);
      height: 14px;
      width: 14px;
      border-radius: 0px !important;
    }
  }

  .text-box {
    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;
    }
  }
}

.hero-pages .overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: hsla(0, 0%, 0%, 0.4);
}
.hero-pages .contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/*  
##################################################
#                    About Us                    #
##################################################
*/
.about-section {
  position: relative;
  .bg {
    opacity: 0.3;
  }
  &::before {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .img-one {
    overflow: hidden;
    border-radius: 0px;
    height: 780px;

    img {
      width: 100%;
      transition: transform 0.5s ease;
      &:hover {
        transform: scale(1.05);
      }
    }
  }

  .about-list {
    list-style: none;
    padding-left: 0;

    .content-list {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px;
      border-radius: 0px;
      background: #f8f9fa;
      width: 100%;
      transition: 0.3s;
      box-shadow: var(--box-shadow);
      &:hover {
        background: var(--white-color);
        transform: translateY(-3px);
      }
      .icon-box {
        width: 55px;
        height: 55px;
        border-radius: 0px;
        background: linear-gradient(135deg, #f8f9fa, #ececec);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
      }
      &:hover .icon-box {
        transform: scale(1.1);
      }
      img {
        width: 40px;
        height: 40px;
      }
      span {
        font-size: 17px;
        font-weight: 600;
        color: #333;
      }
    }
  }
}
.about {
  .header {
    padding: 100px 0;
    .nav-link {
      color: var(--black-color) !important;
      &::before {
        background: var(--black-color) !important;
      }
    }
    .navbar-brand img {
      filter: brightness(0);
    }
    .navbar-toggler i {
      color: var(--black-color) !important;
    }
  }
}
.section-title {
  text-align: center;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: var(--main-color) !important;
}

.section-text {
  max-width: 900px;
  margin: 0 auto 20px auto;

  font-size: 16px;
  color: var(--black-color) !important;
  line-height: 1.8;
}

.value-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.value-box h3 {
  align-content: flex-start;
  font-size: 18px;
  width: 60%;
  position: relative;
  letter-spacing: 1px;
}

.value-box .big-number {
  font-size: 150px;
  position: absolute;
  top: 10px;
  left: 50px;
  transform: translate(-50%, -50%);
  color: var(--third-color);
  opacity: 0.5;
  font-weight: bold;
  z-index: -1;
}
.value-box p {
  margin-top: 70px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.founder-box {
  position: relative;
  overflow: hidden;

  img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
  }

  .content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    overflow: hidden;
  }

  &:hover .content-box {
    height: 100%;
    opacity: 1;
  }
}

/*  
##################################################
#                    Counter                     #
##################################################
*/

/*  
##################################################
#                  Projects                      #
##################################################
*/
.projects-section {
height: 100vh;
overflow: hidden;
  .tab-content {
    position: absolute;
    width: 100vw;

    z-index: 2;
  }

  .project-card {
    position: relative;

    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

    img {
      width: 100%;
      height: 550px;
      object-fit: cover;
      display: block;
      border-radius: 0px;
      transition: transform 0.5s ease;
    }

    .content-card {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 25px;
      background: rgba(0, 0, 0, 0.9);
      color: #fff;
      transform: translateY(100%);
      transition: transform 0.5s ease, opacity 0.5s ease;

      h5 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 5px;
      }

      p {
        font-size: 0.95rem;
        margin-bottom: 10px;
      }

      .project-category {
        font-size: 0.8rem;
        font-weight: 500;
        background: var(--second-color);
        color: var(--black-color);
        padding: 4px 10px;
        border-radius: 0px;
        display: inline-block;
      }
    }

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);

      img {
        transform: scale(1.08);
      }

      .content-card {
        transform: translateY(0);
      }
    }
    .btn-bg {
      position: absolute;
      inset-inline-end: 0;
      bottom: 0;
      /* background-color: var(--second-color); */
      padding: 5px;

      > a {
        background-color: var(--white-color);
        width: 55px;
        height: 55px;
        border: none;
        border-radius: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 3 !important;

        &:hover {
          background-color: var(--main-color) !important;
          transform: scale(1.05);
        }
      }

      i {
        position: relative;
        font-size: 20px;
        transform: rotate(-45deg);
        color: var(--black-color);
        z-index: 2;
        transition: color 0.3s ease;

        a:hover & {
          color: var(--white-color);
        }
      }
    }
  }
  .swiper-button-lock {
    display: block !important;
  }
  /* Swiper Navigation */
  .swiper-navigation {
    position: absolute !important;
    left: 64%;
    top: 40%;
    transform: translate(-50%, -50%);

    z-index: 4;
    .swiper-button-prev,
    .swiper-button-next {
      position: static;
      margin: 0;
      width: 60px;
      height: 60px;
      opacity: 1;
      color: var(--black-color);
      background: rgba(255, 255, 255);
      padding: 10px;
      border-radius: 0px !important;
      transition: all 0.3s ease;

      &.swiper-button-disabled {
        cursor: auto;
        opacity: 0.7;
        pointer-events: none;
        background: rgba(255, 255, 255, 0.8);
      }
      &:hover {
        background: var(--black-color);
        color: #fff;
      }
    }
  }

  /* Tabs */
  .nav-pills {
    .nav-link {
      background-color: transparent;
      color: var(--black-color);
      font-size: 22px;

      transition: all 0.3s ease;
      width: 100%;

      &:hover {
        background-color: rgba(255, 255, 255, 0.05);
        transform: translateX(5px);
      }

      &.active {
        color: var(--black-color) !important;
        background-color: transparent;

        span:nth-child(1) {
          padding-bottom: 8px;
          border-bottom: 2px solid #6e6e6e !important;
        }
      }

      .num {
        color: var(--third-color) !important;
        font-size: 16px;
      }
    }
  }
}

/*  
##################################################
#                  Projects  Page                #
##################################################
*/
.projects {
  .project-card {
    position: relative;

    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

    img {
      width: 100%;
      height: 550px;
      object-fit: cover;
      display: block;
      border-radius: 0px;
      transition: transform 0.5s ease;
    }

    .content-card {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 25px;
      background: rgba(0, 0, 0, 0.9);
      color: #fff;
      transform: translateY(100%);
      transition: transform 0.5s ease, opacity 0.5s ease;

      h5 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 5px;
      }

      p {
        font-size: 0.95rem;
        margin-bottom: 10px;
      }

      .project-category {
        font-size: 0.8rem;
        font-weight: 500;
        background: var(--second-color);
        color: var(--black-color);
        padding: 4px 10px;
        border-radius: 0px;
        display: inline-block;
      }
    }

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);

      img {
        transform: scale(1.08);
      }

      .content-card {
        transform: translateY(0);
      }
    }
    .btn-bg {
      position: absolute;
      inset-inline-end: 0;
      bottom: 0;
      /* background-color: var(--second-color); */
      padding: 5px;

      > a {
        background-color: var(--white-color);
        width: 55px;
        height: 55px;
        border: none;
        border-radius: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 3 !important;

        &:hover {
          background-color: var(--main-color) !important;
          transform: scale(1.05);
        }
      }

      i {
        position: relative;
        font-size: 20px;
        transform: rotate(-45deg);
        color: var(--black-color);
        z-index: 2;
        transition: color 0.3s ease;

        a:hover & {
          color: var(--white-color);
        }
      }
    }
  }
  /* Tabs */
  .nav-pills {
    .nav-link {
      background-color: transparent;
      color: var(--black-color);
      font-size: 22px;
      transition: all 0.3s ease;
      font-weight: bold;
      width: 100%;

      &:hover {
        background-color: rgba(255, 255, 255, 0.05);
        transform: translateX(5px);
      }

      &.active {
        color: var(--black-color) !important;
        background-color: transparent;

        span:nth-child(1) {
          padding-bottom: 10px;
          border-bottom: 3px solid #6e6e6e !important;
        }
      }

      .num {
        color: var(--third-color) !important;
        font-size: 16px;
      }
    }
  }
}
/*  
##################################################
#                Projects Details                #
##################################################
*/
.projects-details {
  position: relative;
  .project-card {
    position: relative;

    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

    img {
      width: 100%;
      height: 550px;
      object-fit: cover;
      display: block;
      border-radius: 0px;
      transition: transform 0.5s ease;
    }
  }
  .swiper-navigation {
    position: absolute !important;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);

    z-index: 4;
    .swiper-button-prev,
    .swiper-button-next {
      margin: 0;
      width: 50px;
      height: 50px;
      opacity: 1;
      color: var(--black-color);
      background: rgba(255, 255, 255);
      padding: 10px;
      border-radius: 0px !important;
      transition: all 0.3s ease;

      &:hover {
        background: var(--black-color);
        color: #fff;
      }
    }
  }
}
.content-area {
  .btns {
    display: flex;
    justify-content: space-between;
    padding: 20px 120px;
    .Whatsapp-btn,
    .Call-btn {
      padding: 15px 30px;
      background: var(--black-color);
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      a {
        color: var(--white-color);
      }
      &:hover {
        background-color: var(--second-color);
        a {
          color: var(--black-color);
        }
      }
    }
    i {
      margin: 0 5px;
    }
  }
}

/*  
##################################################
#                  Contact                       #
##################################################
*/

.contact-section {

  position: relative;
  .bg {
    opacity: 0.3;
  }
  &::before {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .contact-info-wrapper {
    position: relative;
    z-index: 1;
    .contact-info-card {
      transition: all 0.4s ease;
    }

    .contact-icon {
      transition: all 0.4s ease;

      i {
        color: var(--third-color);
        font-size: 28px;

        transition: transform 0.4s ease;
        font-weight: 600;
      }
    }

    .contact-content {
      h4 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin-bottom: 8px;
      }

      p {
        font-size: 14px;
        color: #888;
        margin-bottom: 12px;
      }

      a {
        color: var(--black-color);
        display: block;
        text-decoration: none;
        font-size: 15px;
        margin-bottom: 5px;
        transition: all 0.3s ease;

        &:hover {
          color: var(--main-color) !important;
          font-weight: bolder;
        }
      }

      .location-link {
        line-height: 1.8;
      }
    }
  }
  .img-contact {
    height: 100%;
    img {
      filter: grayscale(1);
      transition: all 0.3s ease;
      cursor: pointer;
      object-fit: cover;
      &:hover {
        filter: grayscale(0);
      }
    }
  }
}

.contact {
  position: relative;
  overflow: hidden;

  /* Decorative Elements */
  .contact-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* Section Header */
  .section-header {
    position: relative;
    z-index: 1;

    .section-subtitle {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #666;
      margin-bottom: 15px;
      display: inline-block;
    }

    .section-title {
      font-size: 42px;
      font-weight: 700;
      color: #000;
      margin-bottom: 20px;
      line-height: 1.3;

      span {
        font-style: italic;
        font-weight: 300;
      }
    }

    .section-description {
      font-size: 16px;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
    }
  }

  /* Contact Info Cards */
  .contact-info-wrapper {
    position: relative;
    z-index: 1;

    .contact-info-card {
      background: #fff;
      border: 2px solid #f0f0f0;
      border-radius: 0px;
      padding: 30px;
      margin-bottom: 20px;
      display: flex;
      gap: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      &:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }
    }

    .contact-icon {
      width: 60px;
      height: 60px;
      background: #f8f8f8;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.4s ease;
    }

    .contact-icon i {
      font-size: 24px;
      color: var(--third-color);
      transition: transform 0.4s ease;
    }

    .contact-info-card:hover .contact-icon {
      background: #000;
      transform: scale(1.1);
    }

    .contact-info-card:hover .contact-icon i {
      color: #fff;
      transform: rotate(10deg);
    }
  }

  /* Social Media */
  .contact-social {
    margin-top: 30px;

    h5 {
      font-size: 18px;
      font-weight: 700;
      color: #000;
      margin-bottom: 20px;
    }

    .social-links {
      display: flex;
      gap: 12px;

      .social-link {
        width: 45px;
        height: 45px;
        background: #f8f8f8;
        border: 2px solid #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0px !important;

        font-size: 18px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;

        &::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          width: 0;
          height: 0;
          background: #000;
          border-radius: 0px !important;
          transform: translate(-50%, -50%);
          transition: all 0.4s ease;
        }

        &:hover {
          border-color: #000;
          transform: translateY(-5px);

          &::before {
            width: 100%;
            height: 100%;
          }

          i {
            color: #fff;
            z-index: 1;
          }
        }
      }
    }
  }

  /* Contact Form */
  .contact-form-wrapper {
    height: 100%;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 0px;
    padding: 40px;
    position: relative;
    z-index: 1;

    .form-header {
      margin-bottom: 35px;

      h3 {
        font-size: 28px;
        font-weight: 700;
        color: #000;
      }

      p {
        font-size: 15px;
        color: #666;
      }
    }

    .form-group {
      margin-bottom: 25px;

      label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;

        i {
          font-size: 16px;
          color: var(--third-color);
        }
      }

      .form-control {
        width: 100%;
        padding: 15px 20px;
        font-size: 15px;

        border: 2px solid #f0f0f0;
        border-radius: 0px;
        color: #333;
        transition: all 0.3s ease;

        &:focus {
          background: #fff;
          border-color: #000;
          box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
          outline: none;
        }

        &::placeholder {
          color: #aaa;
        }
      }

      textarea.form-control {
        resize: vertical;
        min-height: 150px;
      }

      select.form-control {
        cursor: pointer;
        appearance: none;
        padding-right: 45px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
      }
    }

    /* Form Message */
    .form-message {
      display: none;
      margin-top: 20px;
      padding: 20px;
      border-radius: 0px;
      align-items: center;
      gap: 15px;

      &.show {
        display: flex;
      }

      i {
        font-size: 24px;
      }

      p {
        margin: 0;
        font-size: 15px;
      }
    }
  }

  /* Map Section */
  .contact-map {
    position: relative;
    z-index: 1;

    .map-header {
      h3 {
        font-size: 32px;
        font-weight: 700;
        color: #000;
        margin-bottom: 10px;
      }

      p {
        font-size: 16px;
        color: #666;
      }
    }

    .map-container {
      overflow: hidden;
      border: 2px solid #f0f0f0;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

      iframe {
        display: block;
        filter: grayscale(100%);
        transition: filter 0.4s ease;

        &:hover {
          filter: grayscale(0%);
        }
      }
    }
  }
}
/*  
##################################################
#                    Clients                     #
##################################################
*/
.client-card {
  position: relative;
  overflow: hidden;
  height: 100px;

  img {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
  }

  img:nth-child(1) {
    top: 0;
  }

  img:nth-child(2) {
    top: 100px;
  }

  &:hover img:nth-child(1) {
    transform: translateY(-100px);
  }

  &:hover img:nth-child(2) {
    transform: translateY(-100px);
  }
}

/*  
##################################################
#                    Footer                      #
##################################################
*/

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  color: #fff;
  position: relative;
  overflow: hidden;

  /* Decorative Elements */
  .footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.05;

    .decoration-circle {
      position: absolute;
      border: 2px solid #fff;
      border-radius: 0 !important;

      &.circle-1 {
        width: 400px;
        height: 400px;
        top: -200px;
        right: -100px;
      }

      &.circle-2 {
        width: 300px;
        height: 300px;
        bottom: -150px;
        left: -50px;
      }
    }

    .decoration-line {
      position: absolute;
      height: 2px;
      background: #fff;
      transform: rotate(-45deg);

      &.line-1 {
        width: 300px;
        top: 30%;
        left: -100px;
      }

      &.line-2 {
        width: 200px;
        bottom: 20%;
        right: -50px;
      }
    }
  }
  .footer-social {
    gap: 15px;

    .social-link {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0 !important;
      color: #fff;
      font-size: 18px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;

      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: #fff;
        border-radius: 0 !important;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
      }

      &:hover {
        border-color: #fff;
        transform: translateY(-5px);

        &::before {
          width: 100%;
          height: 100%;
        }

        i {
          color: #000;
          position: relative;
          z-index: 1;
        }
      }
    }
  }

  /* Footer Top */
  .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;

    .footer-logo {
      h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
      }

      span {
        color: #fff;
        font-weight: 300;
        font-style: italic;
      }
    }
    .contact-list {
      list-style: none;

      li {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        color: #b0b0b0;
        font-size: 14px;

        i {
          font-size: 20px;
          color: #fff;
          width: 25px;
          flex-shrink: 0;
          margin-top: 3px;
        }

        strong {
          color: #fff;
          display: block;
          margin-bottom: 5px;
          font-size: 15px;
        }

        p {
          margin: 0;
          line-height: 1.6;
        }
      }
    }
    .footer-description {
      color: #b0b0b0;
      line-height: 1.8;
      margin-bottom: 30px;
      font-size: 15px;
    }

    /* Footer Title */
    .footer-title {
      font-size: 20px;
      transform: translateX(-45px);
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;

      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: #fff;
      }
    }
  }
}
